Documentation ¶
Overview ¶
Package graphite provides a Graphite backend for metrics. Metrics are batched and emitted in the plaintext protocol. For more information, see http://graphite.readthedocs.io/en/latest/feeding-carbon.html#the-plaintext-protocol
Graphite does not have a native understanding of metric parameterization, so label values not supported. Use distinct metrics for each unique combination of label values.
Index ¶
- type Counter
- type Gauge
- type Graphite
- func (g *Graphite) NewCounter(name string) *Counter
- func (g *Graphite) NewGauge(name string) *Gauge
- func (g *Graphite) NewHistogram(name string, buckets int) *Histogram
- func (g *Graphite) SendLoop(c <-chan time.Time, network, address string)
- func (g *Graphite) WriteLoop(c <-chan time.Time, w io.Writer)
- func (g *Graphite) WriteTo(w io.Writer) (count int64, err error)
- type Histogram
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Counter ¶
type Counter struct {
// contains filtered or unexported fields
}
Counter is a Graphite counter metric.
func NewCounter ¶
NewCounter returns a new usable counter metric.
type Gauge ¶
type Gauge struct {
// contains filtered or unexported fields
}
Gauge is a Graphite gauge metric.
type Graphite ¶
type Graphite struct {
// contains filtered or unexported fields
}
Graphite receives metrics observations and forwards them to a Graphite server. Create a Graphite object, use it to create metrics, and pass those metrics as dependencies to the components that will use them.
All metrics are buffered until WriteTo is called. Counters and gauges are aggregated into a single observation per timeseries per write. Histograms are exploded into per-quantile gauges and reported once per write.
To regularly report metrics to an io.Writer, use the WriteLoop helper method. To send to a Graphite server, use the SendLoop helper method.
func New ¶
New returns a Statsd object that may be used to create metrics. Prefix is applied to all created metrics. Callers must ensure that regular calls to WriteTo are performed, either manually or with one of the helper methods.
func (*Graphite) NewCounter ¶
NewCounter returns a counter. Observations are aggregated and emitted once per write invocation.
func (*Graphite) NewGauge ¶
NewGauge returns a gauge. Observations are aggregated and emitted once per write invocation.
func (*Graphite) NewHistogram ¶
NewHistogram returns a histogram. Observations are aggregated and emitted as per-quantile gauges, once per write invocation. 50 is a good default value for buckets.
func (*Graphite) SendLoop ¶
SendLoop is a helper method that wraps WriteLoop, passing a managed connection to the network and address. Like WriteLoop, this method blocks until the channel is closed, so clients probably want to start it in its own goroutine. For typical usage, create a time.Ticker and pass its C channel to this method.
func (*Graphite) WriteLoop ¶
WriteLoop is a helper method that invokes WriteTo to the passed writer every time the passed channel fires. This method blocks until the channel is closed, so clients probably want to run it in its own goroutine. For typical usage, create a time.Ticker and pass its C channel to this method.
func (*Graphite) WriteTo ¶
WriteTo flushes the buffered content of the metrics to the writer, in Graphite plaintext format. WriteTo abides best-effort semantics, so observations are lost if there is a problem with the write. Clients should be sure to call WriteTo regularly, ideally through the WriteLoop or SendLoop helper methods.
type Histogram ¶
type Histogram struct {
// contains filtered or unexported fields
}
Histogram is a Graphite histogram metric. Observations are bucketed into per-quantile gauges.
func NewHistogram ¶
NewHistogram returns a new usable Histogram metric.