Documentation ¶
Index ¶
Constants ¶
View Source
const ( // Counter is single additive value. New values are simply added to the current one. Counter MetricType = "counter" // Histogram is a set of numerical values that quantify a distribution of values. New values are added to the distribution. Histogram = "histogram" // Gauge is a single non-additive value. New value replaces the previous one. Gauge = "gauge" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Metric ¶
type Metric struct { Title string Type MetricType }
type MetricType ¶
type MetricType string
Click to show internal directories.
Click to hide internal directories.