Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CounterVec ¶
type CounterVec interface { // Inc increments labels. Inc(labels ...string) // Add adds labels with v. Add(v float64, labels ...string) // contains filtered or unexported methods }
CounterVec interface represents a counter vector.
func NewCounterVec ¶
func NewCounterVec(cfg *CounterVecOpts) CounterVec
NewCounterVec returns a CounterVec.
type GaugeVec ¶
type GaugeVec interface { // Set sets v to labels. Set(v float64, labels ...string) // Inc increments labels. Inc(labels ...string) // Add adds v to labels. Add(v float64, labels ...string) // contains filtered or unexported methods }
GaugeVec represents a gauge vector.
type HistogramVec ¶
type HistogramVec interface { // Observe adds observation v to labels. Observe(v int64, labels ...string) // contains filtered or unexported methods }
A HistogramVec interface represents a histogram vector.
func NewHistogramVec ¶
func NewHistogramVec(cfg *HistogramVecOpts) HistogramVec
NewHistogramVec returns a HistogramVec.
Click to show internal directories.
Click to hide internal directories.