import "gopkg.in/alexcesaro/statsd.v2"
Package statsd is a simple and efficient StatsD client.
Use options to configure the Client: target host/port, sampling rate, tags, etc.
Whenever you want to use different options (e.g. other tags, different sampling rate), you should use the Clone() method of the Client.
Because when cloning a Client, the same connection is reused so this is way cheaper and more efficient than creating another Client using New().
Client's methods buffer metrics. The buffer is flushed when either:
- the background goroutine flushes the buffer (every 100ms by default) - the buffer is full (1440 bytes by default so that IP packets are not fragmented)
The background goroutine can be disabled using the FlushPeriod(0) option.
Buffering can be disabled using the MaxPacketSize(0) option.
StatsD homepage: https://github.com/etsy/statsd
Code:
c, err := statsd.New() // Connect to the UDP port 8125 by default. if err != nil { // If nothing is listening on the target port, an error is returned and // the returned client does nothing but is still usable. So we can // just log the error and go on. log.Print(err) } defer c.Close() // Increment a counter. c.Increment("foo.counter") // Gauge something. c.Gauge("num_goroutine", runtime.NumGoroutine()) // Time something. t := c.NewTiming() ping("http://example.com/") t.Send("homepage.response_time") // It can also be used as a one-liner to easily time a function. pingHomepage := func() { defer c.NewTiming().Send("homepage.response_time") ping("http://example.com/") } pingHomepage() // Cloning a Client allows using different parameters while still using the // same connection. // This is way cheaper and more efficient than using New(). stat := c.Clone(statsd.Prefix("http"), statsd.SampleRate(0.2)) stat.Increment("view") // Increments http.view
conn.go doc.go options.go statsd.go
type Client struct {
// contains filtered or unexported fields
}
A Client represents a StatsD client.
New returns a new Client.
Clone returns a clone of the Client. The cloned Client inherits its configuration from its parent.
All cloned Clients share the same connection, so cloning a Client is a cheap operation.
Code:
c, err := statsd.New(statsd.Prefix("my_app"))
if err != nil {
log.Print(err)
}
httpStats := c.Clone(statsd.Prefix("http"))
httpStats.Increment("foo.bar") // Increments: my_app.http.foo.bar
Close flushes the Client's buffer and releases the associated ressources. The Client and all the cloned Clients must not be used afterward.
Count adds n to bucket.
Flush flushes the Client's buffer.
Gauge records an absolute value for the given bucket.
Histogram sends an histogram value to a bucket.
Increment increment the given bucket. It is equivalent to Count(bucket, 1).
NewTiming creates a new Timing.
Code:
// Send a timing metric each time the function is run.
defer c.NewTiming().Send("homepage.response_time")
ping("http://example.com/")
Timing sends a timing value to a bucket.
Unique sends the given value to a set bucket.
type Option func(*config)
An Option represents an option for a Client. It must be used as an argument to New() or Client.Clone().
Address sets the address of the StatsD daemon.
By default, ":8125" is used. This option is ignored in Client.Clone().
Code:
c, err = statsd.New(statsd.Address("192.168.0.5:8126"))
ErrorHandler sets the function called when an error happens when sending metrics (e.g. the StatsD daemon is not listening anymore).
By default, these errors are ignored. This option is ignored in Client.Clone().
Code:
c, err = statsd.New(statsd.ErrorHandler(func(err error) { log.Print(err) }))
FlushPeriod sets how often the Client's buffer is flushed. If p is 0, the goroutine that periodically flush the buffer is not lauched and the buffer is only flushed when it is full.
By default, the flush period is 100 ms. This option is ignored in Client.Clone().
Code:
c, err = statsd.New(statsd.FlushPeriod(10 * time.Millisecond))
MaxPacketSize sets the maximum packet size in bytes sent by the Client.
By default, it is 1440 to avoid IP fragmentation. This option is ignored in Client.Clone().
Code:
c, err = statsd.New(statsd.MaxPacketSize(512))
Mute sets whether the Client is muted. All methods of a muted Client do nothing and return immedialtly.
This option can be used in Client.Clone() only if the parent Client is not muted. The clones of a muted Client are always muted.
Code:
c, err := statsd.New(statsd.Mute(true))
if err != nil {
log.Print(err)
}
c.Increment("foo.bar") // Does nothing.
Network sets the network (udp, tcp, etc) used by the client. See the net.Dial documentation (https://golang.org/pkg/net/#Dial) for the available network options.
By default, network is udp. This option is ignored in Client.Clone().
Code:
// Send metrics using a TCP connection.
c, err = statsd.New(statsd.Network("tcp"))
Prefix appends the prefix that will be used in every bucket name.
Note that when used in cloned, the prefix of the parent Client is not replaced but is prepended to the given prefix.
Code:
c, err := statsd.New(statsd.Prefix("my_app"))
if err != nil {
log.Print(err)
}
c.Increment("foo.bar") // Increments: my_app.foo.bar
SampleRate sets the sample rate of the Client. It allows sending the metrics less often which can be useful for performance intensive code paths.
Code:
c, err = statsd.New(statsd.SampleRate(0.2)) // Send metrics 20% of the time.
Tags appends the given tags to the tags sent with every metrics. If a tag already exists, it is replaced.
The tags must be set as key-value pairs. If the number of tags is not even, Tags panics.
If the format of tags have not been set using the TagsFormat option, the tags will be ignored.
Code:
c, err = statsd.New( statsd.TagsFormat(statsd.InfluxDB), statsd.Tags("region", "us", "app", "my_app"), )
TagsFormat sets the format of tags.
Code:
c, err = statsd.New(statsd.TagsFormat(statsd.InfluxDB))
TagFormat represents the format of tags sent by a Client.
const ( // InfluxDB tag format. // See https://influxdb.com/blog/2015/11/03/getting_started_with_influx_statsd.html InfluxDB TagFormat = iota + 1 // Datadog tag format. // See http://docs.datadoghq.com/guides/metrics/#tags Datadog )
type Timing struct {
// contains filtered or unexported fields
}
A Timing is an helper object that eases sending timing values.
Duration returns the time elapsed since the creation of the Timing.
Send sends the time elapsed since the creation of the Timing.
Package statsd imports 8 packages (graph) and is imported by 75 packages. Updated 2020-05-24. Refresh now. Tools for package owners.