This repository is currently being migrated. It's locked while the migration is in progress.
forked from quipo/statsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
195 lines (170 loc) · 5.44 KB
/
client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
package statsd
import (
"fmt"
"log"
"net"
"os"
"strings"
"time"
"github.com/quipo/statsd/event"
)
// Logger interface compatible with log.Logger
type Logger interface {
Println(v ...interface{})
}
// Hostname is exported so clients can set it to something different than the default
var Hostname string
func init() {
host, err := os.Hostname()
if nil == err {
Hostname = host
}
}
// StatsdClient is a client library to send events to StatsD
type StatsdClient struct {
conn net.Conn
addr string
prefix string
eventStringTpl string
Logger Logger
}
// NewStatsdClient - Factory
func NewStatsdClient(addr string, prefix string) *StatsdClient {
// allow %HOST% in the prefix string
prefix = strings.Replace(prefix, "%HOST%", Hostname, 1)
return &StatsdClient{
addr: addr,
prefix: prefix,
Logger: log.New(os.Stdout, "[StatsdClient] ", log.Ldate|log.Ltime),
eventStringTpl: "%s%s:%s",
}
}
// String returns the StatsD server address
func (c *StatsdClient) String() string {
return c.addr
}
// CreateSocket creates a UDP connection to a StatsD server
func (c *StatsdClient) CreateSocket() error {
conn, err := net.DialTimeout("udp", c.addr, 5*time.Second)
if err != nil {
return err
}
c.conn = conn
return nil
}
// CreateTCPSocket creates a TCP connection to a StatsD server
func (c *StatsdClient) CreateTCPSocket() error {
conn, err := net.DialTimeout("tcp", c.addr, 5*time.Second)
if err != nil {
return err
}
c.conn = conn
c.eventStringTpl = "%s%s:%s\n"
return nil
}
// Close the UDP connection
func (c *StatsdClient) Close() error {
if nil == c.conn {
return nil
}
return c.conn.Close()
}
// See statsd data types here: http://statsd.readthedocs.org/en/latest/types.html
// or also https://github.com/b/statsd_spec
// Incr - Increment a counter metric. Often used to note a particular event
func (c *StatsdClient) Incr(stat string, count int64) error {
if 0 != count {
return c.send(stat, "%d|c", count)
}
return nil
}
// Decr - Decrement a counter metric. Often used to note a particular event
func (c *StatsdClient) Decr(stat string, count int64) error {
if 0 != count {
return c.send(stat, "%d|c", -count)
}
return nil
}
// Timing - Track a duration event
// the time delta must be given in milliseconds
func (c *StatsdClient) Timing(stat string, delta int64) error {
return c.send(stat, "%d|ms", delta)
}
// PrecisionTiming - Track a duration event
// the time delta has to be a duration
func (c *StatsdClient) PrecisionTiming(stat string, delta time.Duration) error {
return c.send(stat, fmt.Sprintf("%.6f%s|ms", float64(delta)/float64(time.Millisecond), "%d"), 0)
}
// Gauge - Gauges are a constant data type. They are not subject to averaging,
// and they don’t change unless you change them. That is, once you set a gauge value,
// it will be a flat line on the graph until you change it again. If you specify
// delta to be true, that specifies that the gauge should be updated, not set. Due to the
// underlying protocol, you can't explicitly set a gauge to a negative number without
// first setting it to zero.
func (c *StatsdClient) Gauge(stat string, value int64) error {
if value < 0 {
c.send(stat, "%d|g", 0)
return c.send(stat, "%d|g", value)
}
return c.send(stat, "%d|g", value)
}
// GaugeDelta -- Send a change for a gauge
func (c *StatsdClient) GaugeDelta(stat string, value int64) error {
// Gauge Deltas are always sent with a leading '+' or '-'. The '-' takes care of itself but the '+' must added by hand
if value < 0 {
return c.send(stat, "%d|g", value)
}
return c.send(stat, "+%d|g", value)
}
// FGauge -- Send a floating point value for a gauge
func (c *StatsdClient) FGauge(stat string, value float64) error {
if value < 0 {
c.send(stat, "%d|g", 0)
return c.send(stat, "%g|g", value)
}
return c.send(stat, "%g|g", value)
}
// FGaugeDelta -- Send a floating point change for a gauge
func (c *StatsdClient) FGaugeDelta(stat string, value float64) error {
if value < 0 {
return c.send(stat, "%g|g", value)
}
return c.send(stat, "+%g|g", value)
}
// Absolute - Send absolute-valued metric (not averaged/aggregated)
func (c *StatsdClient) Absolute(stat string, value int64) error {
return c.send(stat, "%d|a", value)
}
// FAbsolute - Send absolute-valued floating point metric (not averaged/aggregated)
func (c *StatsdClient) FAbsolute(stat string, value float64) error {
return c.send(stat, "%g|a", value)
}
// Total - Send a metric that is continously increasing, e.g. read operations since boot
func (c *StatsdClient) Total(stat string, value int64) error {
return c.send(stat, "%d|t", value)
}
// write a UDP packet with the statsd event
func (c *StatsdClient) send(stat string, format string, value interface{}) error {
if c.conn == nil {
return fmt.Errorf("not connected")
}
stat = strings.Replace(stat, "%HOST%", Hostname, 1)
// if sending tcp append a newline
format = fmt.Sprintf(c.eventStringTpl, c.prefix, stat, format)
_, err := fmt.Fprintf(c.conn, format, value)
return err
}
// SendEvent - Sends stats from an event object
func (c *StatsdClient) SendEvent(e event.Event) error {
if c.conn == nil {
return fmt.Errorf("cannot send stats, not connected to StatsD server")
}
for _, stat := range e.Stats() {
//fmt.Printf("SENDING EVENT %s%s\n", c.prefix, strings.Replace(stat, "%HOST%", Hostname, 1))
_, err := fmt.Fprintf(c.conn, "%s%s", c.prefix, strings.Replace(stat, "%HOST%", Hostname, 1))
if nil != err {
return err
}
}
return nil
}