Histogram adds a sample to a metric of type histogram. A histogram samples observations and counts them in different 'buckets' in order to track and show the statistical distribution of a set of values.
(name string, value float64)
| 40 | // samples observations and counts them in different 'buckets' in order |
| 41 | // to track and show the statistical distribution of a set of values. |
| 42 | Histogram(name string, value float64) |
| 43 | |
| 44 | // HistogramWithTags adds a sample to an histogram and associates that |
| 45 | // sample with a set of tags. |
no outgoing calls