You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Requirement - what kind of business use case are you trying to solve?
We've had situations where it would be useful to report histograms of non-timer values, e.g. a distribution of queue lengths, or the span sizes. Backends like Prometheus do support them.
Problem - what in Jaeger blocks you from solving the requirement?
The current metrics.Factory only allows timers that are internally implemented as histograms.
Proposal - what do you suggest to solve the problem or improve the existing situation?
Replace Factory.Timer() with Factory.Histogram(HistogramOptions{Name, Tags, Description, Buckets})
Requirement - what kind of business use case are you trying to solve?
We've had situations where it would be useful to report histograms of non-timer values, e.g. a distribution of queue lengths, or the span sizes. Backends like Prometheus do support them.
Problem - what in Jaeger blocks you from solving the requirement?
The current
metrics.Factory
only allows timers that are internally implemented as histograms.Proposal - what do you suggest to solve the problem or improve the existing situation?
Factory.Timer()
withFactory.Histogram(HistogramOptions{Name, Tags, Description, Buckets})
metrics.Timer(TimeOptions{HistogramOptions, Factory})
Any open questions to address
The text was updated successfully, but these errors were encountered: