package graphite
import "github.com/go-kit/kit/metrics/graphite"
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
- func NewCounter(name string) *Counter
- func (c *Counter) Add(delta float64)
- func (c *Counter) With(...string) metrics.Counter
- type Gauge
- func NewGauge(name string) *Gauge
- func (g *Gauge) Add(delta float64)
- func (g *Gauge) Set(value float64)
- func (g *Gauge) With(...string) metrics.Gauge
- type Graphite
- func New(prefix string, logger log.Logger) *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(ctx context.Context, c <-chan time.Time, network, address string)
- func (g *Graphite) WriteLoop(ctx context.Context, c <-chan time.Time, w io.Writer)
- func (g *Graphite) WriteTo(w io.Writer) (count int64, err error)
- type Histogram
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.
func (*Counter) Add ¶
Add implements counter.
func (*Counter) With ¶
With is a no-op.
type Gauge ¶
type Gauge struct {
// contains filtered or unexported fields
}
Gauge is a Graphite gauge metric.
func NewGauge ¶
NewGauge returns a new usable Gauge metric.
func (*Gauge) Add ¶
Add implements metrics.Gauge.
func (*Gauge) Set ¶
Set implements gauge.
func (*Gauge) With ¶
With is a no-op.
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 Graphite 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 ctx is canceled, 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 ctx is canceled, 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.
func (*Histogram) Observe ¶
Observe implements histogram.
func (*Histogram) With ¶
With is a no-op.
Source Files ¶
- Version
- v0.13.0 (latest)
- Published
- May 29, 2023
- Platform
- linux/amd64
- Imports
- 9 packages
- Last checked
- 4 hours ago –
Tools for package owners.