package
2.3.0+incompatible
Repository: https://github.com/jaegertracing/jaeger.git
Documentation: pkg.go.dev
# Functions
Init does the same as MustInit, but returns an error instead of panicking.
MustInit initializes the passed in metrics and initializes its fields using the passed in factory.
StartStopwatch begins recording the executing time of an event, returning a Stopwatch that should be used to stop the recording the time for that event.
# Variables
NullCounter counter that does nothing.
NullFactory is a metrics factory that returns NullCounter, NullTimer, and NullGauge.
NullGauge gauge that does nothing.
NullHistogram that does nothing.
NullTimer timer that does nothing.
# Structs
HistogramOptions defines the information associated with a metric.
NSOptions defines the name and tags map associated with a factory namespace.
Options defines the information associated with a metric.
A Stopwatch tracks the execution time of a specific event.
TimerOptions defines the information associated with a metric.
# Interfaces
Counter tracks the number of times an event has occurred.
Factory creates new metrics.
Gauge returns instantaneous measurements of something as an int64 value.
Histogram that keeps track of a distribution of values.
Timer accumulates observations about how long some operation took, and also maintains a historgam of percentiles.