SYMBOL INDEX (306 symbols across 30 files) FILE: bufferedclient.go type closeRequest (line 12) | type closeRequest struct type StatsdBuffer (line 19) | type StatsdBuffer struct method CreateSocket (line 45) | func (sb *StatsdBuffer) CreateSocket() error { method CreateTCPSocket (line 50) | func (sb *StatsdBuffer) CreateTCPSocket() error { method Incr (line 55) | func (sb *StatsdBuffer) Incr(stat string, count int64) error { method Decr (line 63) | func (sb *StatsdBuffer) Decr(stat string, count int64) error { method Timing (line 71) | func (sb *StatsdBuffer) Timing(stat string, delta int64) error { method PrecisionTiming (line 78) | func (sb *StatsdBuffer) PrecisionTiming(stat string, delta time.Durati... method Gauge (line 86) | func (sb *StatsdBuffer) Gauge(stat string, value int64) error { method GaugeDelta (line 92) | func (sb *StatsdBuffer) GaugeDelta(stat string, value int64) error { method FGauge (line 98) | func (sb *StatsdBuffer) FGauge(stat string, value float64) error { method FGaugeDelta (line 104) | func (sb *StatsdBuffer) FGaugeDelta(stat string, value float64) error { method Absolute (line 110) | func (sb *StatsdBuffer) Absolute(stat string, value int64) error { method FAbsolute (line 116) | func (sb *StatsdBuffer) FAbsolute(stat string, value float64) error { method Total (line 122) | func (sb *StatsdBuffer) Total(stat string, value int64) error { method SendEvents (line 128) | func (sb *StatsdBuffer) SendEvents(events map[string]event.Event) error { method collector (line 153) | func (sb *StatsdBuffer) collector() { method Close (line 205) | func (sb *StatsdBuffer) Close() (err error) { method flush (line 222) | func (sb *StatsdBuffer) flush() (err error) { function NewStatsdBuffer (line 30) | func NewStatsdBuffer(interval time.Duration, client Statsd) *StatsdBuffer { function initMemoisedKeyMap (line 137) | func initMemoisedKeyMap() func(typ string, key string) string { FILE: bufferedclient_test.go type KVint64 (line 17) | type KVint64 struct type KVfloat64 (line 21) | type KVfloat64 struct type KVint64Sorter (line 26) | type KVint64Sorter method Len (line 29) | func (a KVint64Sorter) Len() int { return len(a) } method Swap (line 30) | func (a KVint64Sorter) Swap(i, j int) { a[i], a[j] = a[j], a[i] } method Less (line 31) | func (a KVint64Sorter) Less(i, j int) bool { type KVfloat64Sorter (line 27) | type KVfloat64Sorter method Len (line 38) | func (a KVfloat64Sorter) Len() int { return len(a) } method Swap (line 39) | func (a KVfloat64Sorter) Swap(i, j int) { a[i], a[j] = a[j], a[i] } method Less (line 40) | func (a KVfloat64Sorter) Less(i, j int) bool { method Normalise (line 48) | func (a KVfloat64Sorter) Normalise(precision int) { function round (line 55) | func round(num float64) int { function toFixed (line 59) | func toFixed(num float64, precision int) float64 { function TestBufferedInt64 (line 66) | func TestBufferedInt64(t *testing.T) { function TestBufferedFloat64 (line 242) | func TestBufferedFloat64(t *testing.T) { function TestBufferedAbsolute (line 374) | func TestBufferedAbsolute(t *testing.T) { function TestBufferedFAbsolute (line 481) | func TestBufferedFAbsolute(t *testing.T) { FILE: client.go type Logger (line 17) | type Logger interface function init (line 42) | func init() { type socketType (line 48) | type socketType constant udpSocket (line 51) | udpSocket socketType = "udp" constant tcpSocket (line 52) | tcpSocket socketType = "tcp" type StatsdClient (line 56) | type StatsdClient struct method String (line 76) | func (c *StatsdClient) String() string { method CreateSocket (line 81) | func (c *StatsdClient) CreateSocket() error { method CreateTCPSocket (line 92) | func (c *StatsdClient) CreateTCPSocket() error { method Close (line 103) | func (c *StatsdClient) Close() error { method Incr (line 114) | func (c *StatsdClient) Incr(stat string, count int64) error { method IncrWithSampling (line 119) | func (c *StatsdClient) IncrWithSampling(stat string, count int64, samp... method Decr (line 136) | func (c *StatsdClient) Decr(stat string, count int64) error { method DecrWithSampling (line 141) | func (c *StatsdClient) DecrWithSampling(stat string, count int64, samp... method Timing (line 159) | func (c *StatsdClient) Timing(stat string, delta int64) error { method TimingWithSampling (line 164) | func (c *StatsdClient) TimingWithSampling(stat string, delta int64, sa... method PrecisionTiming (line 178) | func (c *StatsdClient) PrecisionTiming(stat string, delta time.Duratio... method Gauge (line 188) | func (c *StatsdClient) Gauge(stat string, value int64) error { method GaugeWithSampling (line 193) | func (c *StatsdClient) GaugeWithSampling(stat string, value int64, sam... method GaugeDelta (line 213) | func (c *StatsdClient) GaugeDelta(stat string, value int64) error { method FGauge (line 222) | func (c *StatsdClient) FGauge(stat string, value float64) error { method FGaugeWithSampling (line 227) | func (c *StatsdClient) FGaugeWithSampling(stat string, value float64, ... method FGaugeDelta (line 247) | func (c *StatsdClient) FGaugeDelta(stat string, value float64) error { method Absolute (line 255) | func (c *StatsdClient) Absolute(stat string, value int64) error { method FAbsolute (line 260) | func (c *StatsdClient) FAbsolute(stat string, value float64) error { method Total (line 265) | func (c *StatsdClient) Total(stat string, value int64) error { method send (line 270) | func (c *StatsdClient) send(stat string, format string, value interfac... method SendEvent (line 292) | func (c *StatsdClient) SendEvent(e event.Event) error { method SendEvents (line 308) | func (c *StatsdClient) SendEvents(events map[string]event.Event) error { function NewStatsdClient (line 65) | func NewStatsdClient(addr string, prefix string) *StatsdClient { function checkCount (line 348) | func checkCount(c int64) error { function checkSampleRate (line 356) | func checkSampleRate(r float32) error { function shouldFire (line 364) | func shouldFire(sampleRate float32) bool { FILE: client_test.go type MockNetConn (line 22) | type MockNetConn struct method Read (line 26) | func (mock *MockNetConn) Read(b []byte) (n int, err error) { method Write (line 29) | func (mock *MockNetConn) Write(b []byte) (n int, err error) { method Close (line 32) | func (mock MockNetConn) Close() error { method LocalAddr (line 36) | func (mock MockNetConn) LocalAddr() net.Addr { method RemoteAddr (line 39) | func (mock MockNetConn) RemoteAddr() net.Addr { method SetDeadline (line 42) | func (mock MockNetConn) SetDeadline(t time.Time) error { method SetReadDeadline (line 45) | func (mock MockNetConn) SetReadDeadline(t time.Time) error { method SetWriteDeadline (line 48) | func (mock MockNetConn) SetWriteDeadline(t time.Time) error { function TestClientInt64 (line 77) | func TestClientInt64(t *testing.T) { function TestClientFloat64 (line 255) | func TestClientFloat64(t *testing.T) { function TestClientAbsolute (line 390) | func TestClientAbsolute(t *testing.T) { function TestClientFAbsolute (line 496) | func TestClientFAbsolute(t *testing.T) { function newLocalListenerUDP (line 602) | func newLocalListenerUDP(t *testing.T) (*net.UDPConn, *net.UDPAddr) { function doListenUDP (line 618) | func doListenUDP(t *testing.T, conn *net.UDPConn, ch chan string, n int) { function doListenTCP (line 646) | func doListenTCP(t *testing.T, conn net.Listener, ch chan string, n int) { function newLocalListenerTCP (line 676) | func newLocalListenerTCP(t *testing.T) (string, net.Listener) { function TestTCP (line 685) | func TestTCP(t *testing.T) { function TestSendEvents (line 772) | func TestSendEvents(t *testing.T) { function getFreePort (line 810) | func getFreePort() int { FILE: event/absolute.go type Absolute (line 7) | type Absolute struct method Update (line 13) | func (e *Absolute) Update(e2 Event) error { method Payload (line 22) | func (e Absolute) Payload() interface{} { method Stats (line 27) | func (e Absolute) Stats() []string { method Key (line 36) | func (e Absolute) Key() string { method SetKey (line 41) | func (e *Absolute) SetKey(key string) { method Type (line 46) | func (e Absolute) Type() int { method TypeString (line 51) | func (e Absolute) TypeString() string { method String (line 56) | func (e Absolute) String() string { FILE: event/absolute_test.go function TestAbsoluteUpdate (line 8) | func TestAbsoluteUpdate(t *testing.T) { FILE: event/fabsolute.go type FAbsolute (line 7) | type FAbsolute struct method Update (line 13) | func (e *FAbsolute) Update(e2 Event) error { method Payload (line 22) | func (e FAbsolute) Payload() interface{} { method Stats (line 27) | func (e FAbsolute) Stats() []string { method Key (line 36) | func (e FAbsolute) Key() string { method SetKey (line 41) | func (e *FAbsolute) SetKey(key string) { method Type (line 46) | func (e FAbsolute) Type() int { method TypeString (line 51) | func (e FAbsolute) TypeString() string { method String (line 56) | func (e FAbsolute) String() string { FILE: event/fabsolute_test.go function TestFAbsoluteUpdate (line 8) | func TestFAbsoluteUpdate(t *testing.T) { FILE: event/fgauge.go type FGauge (line 8) | type FGauge struct method Update (line 14) | func (e *FGauge) Update(e2 Event) error { method Payload (line 23) | func (e FGauge) Payload() interface{} { method Stats (line 28) | func (e FGauge) Stats() []string { method Key (line 42) | func (e FGauge) Key() string { method SetKey (line 47) | func (e *FGauge) SetKey(key string) { method Type (line 52) | func (e FGauge) Type() int { method TypeString (line 57) | func (e FGauge) TypeString() string { method String (line 62) | func (e FGauge) String() string { FILE: event/fgauge_test.go function TestFGaugeUpdate (line 8) | func TestFGaugeUpdate(t *testing.T) { function TestFGaugeUpdateNegative (line 28) | func TestFGaugeUpdateNegative(t *testing.T) { FILE: event/fgaugedelta.go type FGaugeDelta (line 8) | type FGaugeDelta struct method Update (line 14) | func (e *FGaugeDelta) Update(e2 Event) error { method Payload (line 23) | func (e FGaugeDelta) Payload() interface{} { method Stats (line 28) | func (e FGaugeDelta) Stats() []string { method Key (line 33) | func (e FGaugeDelta) Key() string { method SetKey (line 38) | func (e *FGaugeDelta) SetKey(key string) { method Type (line 43) | func (e FGaugeDelta) Type() int { method TypeString (line 48) | func (e FGaugeDelta) TypeString() string { method String (line 53) | func (e FGaugeDelta) String() string { FILE: event/fgaugedelta_test.go function TestFGaugeDeltaUpdate (line 8) | func TestFGaugeDeltaUpdate(t *testing.T) { function TestFGaugeDeltaUpdateNegative (line 28) | func TestFGaugeDeltaUpdateNegative(t *testing.T) { FILE: event/gauge.go type Gauge (line 8) | type Gauge struct method Update (line 14) | func (e *Gauge) Update(e2 Event) error { method Payload (line 23) | func (e Gauge) Payload() interface{} { method Stats (line 28) | func (e Gauge) Stats() []string { method Key (line 42) | func (e Gauge) Key() string { method SetKey (line 47) | func (e *Gauge) SetKey(key string) { method Type (line 52) | func (e Gauge) Type() int { method TypeString (line 57) | func (e Gauge) TypeString() string { method String (line 62) | func (e Gauge) String() string { FILE: event/gauge_test.go function TestGaugeUpdate (line 8) | func TestGaugeUpdate(t *testing.T) { function TestGaugeUpdateNegative (line 28) | func TestGaugeUpdateNegative(t *testing.T) { FILE: event/gaugedelta.go type GaugeDelta (line 8) | type GaugeDelta struct method Update (line 14) | func (e *GaugeDelta) Update(e2 Event) error { method Payload (line 23) | func (e GaugeDelta) Payload() interface{} { method Stats (line 28) | func (e GaugeDelta) Stats() []string { method Key (line 33) | func (e GaugeDelta) Key() string { method SetKey (line 38) | func (e *GaugeDelta) SetKey(key string) { method Type (line 43) | func (e GaugeDelta) Type() int { method TypeString (line 48) | func (e GaugeDelta) TypeString() string { method String (line 53) | func (e GaugeDelta) String() string { FILE: event/gaugedelta_test.go function TestGaugeDeltaUpdate (line 8) | func TestGaugeDeltaUpdate(t *testing.T) { function TestGaugeDeltaUpdateNegative (line 28) | func TestGaugeDeltaUpdateNegative(t *testing.T) { FILE: event/increment.go type Increment (line 6) | type Increment struct method Update (line 12) | func (e *Increment) Update(e2 Event) error { method Payload (line 21) | func (e Increment) Payload() interface{} { method Stats (line 26) | func (e Increment) Stats() []string { method Key (line 31) | func (e Increment) Key() string { method SetKey (line 36) | func (e *Increment) SetKey(key string) { method Type (line 41) | func (e Increment) Type() int { method TypeString (line 46) | func (e Increment) TypeString() string { method String (line 51) | func (e Increment) String() string { FILE: event/increment_test.go function TestIncrementUpdate (line 8) | func TestIncrementUpdate(t *testing.T) { FILE: event/interface.go constant EventIncr (line 5) | EventIncr = iota constant EventTiming (line 6) | EventTiming constant EventAbsolute (line 7) | EventAbsolute constant EventTotal (line 8) | EventTotal constant EventGauge (line 9) | EventGauge constant EventGaugeDelta (line 10) | EventGaugeDelta constant EventFGauge (line 11) | EventFGauge constant EventFGaugeDelta (line 12) | EventFGaugeDelta constant EventFAbsolute (line 13) | EventFAbsolute constant EventPrecisionTiming (line 14) | EventPrecisionTiming type Event (line 18) | type Event interface function _ (line 30) | func _() { FILE: event/precisiontiming.go type PrecisionTiming (line 9) | type PrecisionTiming struct method Update (line 23) | func (e *PrecisionTiming) Update(e2 Event) error { method Payload (line 36) | func (e PrecisionTiming) Payload() interface{} { method Stats (line 41) | func (e PrecisionTiming) Stats() []string { method durationToMs (line 51) | func (e PrecisionTiming) durationToMs(x time.Duration) float64 { method Key (line 56) | func (e PrecisionTiming) Key() string { method SetKey (line 61) | func (e *PrecisionTiming) SetKey(key string) { method Type (line 66) | func (e PrecisionTiming) Type() int { method TypeString (line 71) | func (e PrecisionTiming) TypeString() string { method String (line 76) | func (e PrecisionTiming) String() string { function NewPrecisionTiming (line 18) | func NewPrecisionTiming(k string, delta time.Duration) *PrecisionTiming { FILE: event/precisiontiming_test.go function TestPrecisionTimingUpdate (line 9) | func TestPrecisionTimingUpdate(t *testing.T) { FILE: event/timing.go type Timing (line 6) | type Timing struct method Update (line 20) | func (e *Timing) Update(e2 Event) error { method Payload (line 33) | func (e Timing) Payload() interface{} { method Stats (line 43) | func (e Timing) Stats() []string { method Key (line 53) | func (e Timing) Key() string { method SetKey (line 58) | func (e *Timing) SetKey(key string) { method Type (line 63) | func (e Timing) Type() int { method TypeString (line 68) | func (e Timing) TypeString() string { method String (line 73) | func (e Timing) String() string { function NewTiming (line 15) | func NewTiming(k string, delta int64) *Timing { function minInt64 (line 77) | func minInt64(v1, v2 int64) int64 { function maxInt64 (line 83) | func maxInt64(v1, v2 int64) int64 { FILE: event/timing_test.go function TestTimingUpdate (line 8) | func TestTimingUpdate(t *testing.T) { FILE: event/total.go type Total (line 6) | type Total struct method Update (line 12) | func (e *Total) Update(e2 Event) error { method Payload (line 21) | func (e Total) Payload() interface{} { method Stats (line 26) | func (e Total) Stats() []string { method Key (line 31) | func (e Total) Key() string { method SetKey (line 36) | func (e *Total) SetKey(key string) { method Type (line 41) | func (e Total) Type() int { method TypeString (line 46) | func (e Total) TypeString() string { method String (line 51) | func (e Total) String() string { FILE: event/total_test.go function TestTotalUpdate (line 8) | func TestTotalUpdate(t *testing.T) { FILE: interface.go type Statsd (line 10) | type Statsd interface FILE: mock/mockableclient.go type statelessStatsdFunction (line 24) | type statelessStatsdFunction type intMetricStatsdFunction (line 25) | type intMetricStatsdFunction type floatMetricStatsdFunction (line 26) | type floatMetricStatsdFunction type durationMetricStatsdFunction (line 27) | type durationMetricStatsdFunction type eventsStatsdFunction (line 28) | type eventsStatsdFunction type MockStatsdClient (line 40) | type MockStatsdClient struct method CreateSocket (line 62) | func (msc *MockStatsdClient) CreateSocket() error { method CreateTCPSocket (line 69) | func (msc *MockStatsdClient) CreateTCPSocket() error { method Close (line 76) | func (msc *MockStatsdClient) Close() error { method Incr (line 83) | func (msc *MockStatsdClient) Incr(stat string, count int64) error { method Decr (line 90) | func (msc *MockStatsdClient) Decr(stat string, count int64) error { method Timing (line 97) | func (msc *MockStatsdClient) Timing(stat string, delta int64) error { method PrecisionTiming (line 104) | func (msc *MockStatsdClient) PrecisionTiming(stat string, delta time.D... method Gauge (line 111) | func (msc *MockStatsdClient) Gauge(stat string, value int64) error { method GaugeDelta (line 118) | func (msc *MockStatsdClient) GaugeDelta(stat string, value int64) error { method Absolute (line 125) | func (msc *MockStatsdClient) Absolute(stat string, value int64) error { method Total (line 132) | func (msc *MockStatsdClient) Total(stat string, value int64) error { method FGauge (line 139) | func (msc *MockStatsdClient) FGauge(stat string, value float64) error { method FGaugeDelta (line 146) | func (msc *MockStatsdClient) FGaugeDelta(stat string, value float64) e... method FAbsolute (line 153) | func (msc *MockStatsdClient) FAbsolute(stat string, value float64) err... method SendEvents (line 160) | func (msc *MockStatsdClient) SendEvents(events map[string]event.Event)... method RecordCreateSocketEventsTo (line 197) | func (msc *MockStatsdClient) RecordCreateSocketEventsTo(createSocketEv... method RecordCreateTCPSocketEventsTo (line 206) | func (msc *MockStatsdClient) RecordCreateTCPSocketEventsTo(createTcpSo... method RecordCloseEventsTo (line 215) | func (msc *MockStatsdClient) RecordCloseEventsTo(closeEvents *[]Unvalu... method RecordIncrEventsTo (line 224) | func (msc *MockStatsdClient) RecordIncrEventsTo(incrEvents *[]Int64Eve... method RecordDecrEventsTo (line 233) | func (msc *MockStatsdClient) RecordDecrEventsTo(decrEvents *[]Int64Eve... method RecordTimingEventsTo (line 242) | func (msc *MockStatsdClient) RecordTimingEventsTo(timingEvents *[]Int6... method RecordPrecisionTimingEventsTo (line 251) | func (msc *MockStatsdClient) RecordPrecisionTimingEventsTo(timingEvent... method RecordGaugeEventsTo (line 260) | func (msc *MockStatsdClient) RecordGaugeEventsTo(gaugeEvents *[]Int64E... method RecordGaugeDeltaEventsTo (line 269) | func (msc *MockStatsdClient) RecordGaugeDeltaEventsTo(gaugeDeltaEvents... method RecordAbsoluteEventsTo (line 278) | func (msc *MockStatsdClient) RecordAbsoluteEventsTo(absoluteEvents *[]... method RecordTotalEventsTo (line 287) | func (msc *MockStatsdClient) RecordTotalEventsTo(totalEvents *[]Int64E... method RecordFGaugeEventsTo (line 296) | func (msc *MockStatsdClient) RecordFGaugeEventsTo(fgaugeEvents *[]Floa... method RecordFGaugeDeltaEventsTo (line 305) | func (msc *MockStatsdClient) RecordFGaugeDeltaEventsTo(fgaugeDeltaEven... method RecordFAbsoluteEventsTo (line 314) | func (msc *MockStatsdClient) RecordFAbsoluteEventsTo(fabsoluteEvents *... type Int64Event (line 169) | type Int64Event struct type Float64Event (line 174) | type Float64Event struct type DurationEvent (line 179) | type DurationEvent struct type UnvaluedEvent (line 185) | type UnvaluedEvent struct function recordDurationEvent (line 323) | func recordDurationEvent(eventLock sync.Locker, events *[]DurationEvent,... function recordFloat64Event (line 333) | func recordFloat64Event(eventLock sync.Locker, events *[]Float64Event, m... function recordInt64Event (line 343) | func recordInt64Event(eventLock sync.Locker, events *[]Int64Event, metri... function recordUnvaluedEvent (line 353) | func recordUnvaluedEvent(eventLock sync.Locker, events *[]UnvaluedEvent) { FILE: mock/mockableclient_test.go function TestNoopBehavior (line 10) | func TestNoopBehavior(t *testing.T) { function TestMockStatsdClient_RecordCreateSocketEventsTo (line 76) | func TestMockStatsdClient_RecordCreateSocketEventsTo(t *testing.T) { function TestMockStatsdClient_RecordCreateTCPSocketEventsTo (line 91) | func TestMockStatsdClient_RecordCreateTCPSocketEventsTo(t *testing.T) { function TestMockStatsdClient_RecordCloseEventsTo (line 106) | func TestMockStatsdClient_RecordCloseEventsTo(t *testing.T) { function TestMockStatsdClient_RecordIncrEventsTo (line 121) | func TestMockStatsdClient_RecordIncrEventsTo(t *testing.T) { function TestMockStatsdClient_Decr (line 136) | func TestMockStatsdClient_Decr(t *testing.T) { function TestMockStatsdClient_Timing (line 151) | func TestMockStatsdClient_Timing(t *testing.T) { function TestMockStatsdClient_RecordPrecisionTimingEventsTo (line 166) | func TestMockStatsdClient_RecordPrecisionTimingEventsTo(t *testing.T) { function TestMockStatsdClient_RecordGaugeEventsTo (line 181) | func TestMockStatsdClient_RecordGaugeEventsTo(t *testing.T) { function TestMockStatsdClient_RecordFGaugeDeltaEventsTo (line 196) | func TestMockStatsdClient_RecordFGaugeDeltaEventsTo(t *testing.T) { function TestMockStatsdClient_RecordAbsoluteEventsTo (line 211) | func TestMockStatsdClient_RecordAbsoluteEventsTo(t *testing.T) { function TestMockStatsdClient_RecordTotalEventsTo (line 226) | func TestMockStatsdClient_RecordTotalEventsTo(t *testing.T) { function TestMockStatsdClient_RecordFGaugeEventsTo (line 241) | func TestMockStatsdClient_RecordFGaugeEventsTo(t *testing.T) { function TestMockStatsdClient_RecordFGaugeDeltaEventsTo2 (line 256) | func TestMockStatsdClient_RecordFGaugeDeltaEventsTo2(t *testing.T) { function TestMockStatsdClient_RecordFAbsoluteEventsTo (line 271) | func TestMockStatsdClient_RecordFAbsoluteEventsTo(t *testing.T) { FILE: noopclient.go type NoopClient (line 12) | type NoopClient struct method CreateSocket (line 15) | func (s NoopClient) CreateSocket() error { method CreateTCPSocket (line 20) | func (s NoopClient) CreateTCPSocket() error { method Close (line 25) | func (s NoopClient) Close() error { method Incr (line 30) | func (s NoopClient) Incr(stat string, count int64) error { method Decr (line 35) | func (s NoopClient) Decr(stat string, count int64) error { method Timing (line 40) | func (s NoopClient) Timing(stat string, count int64) error { method PrecisionTiming (line 45) | func (s NoopClient) PrecisionTiming(stat string, delta time.Duration) ... method Gauge (line 50) | func (s NoopClient) Gauge(stat string, value int64) error { method GaugeDelta (line 55) | func (s NoopClient) GaugeDelta(stat string, value int64) error { method Absolute (line 60) | func (s NoopClient) Absolute(stat string, value int64) error { method Total (line 65) | func (s NoopClient) Total(stat string, value int64) error { method FGauge (line 70) | func (s NoopClient) FGauge(stat string, value float64) error { method FGaugeDelta (line 75) | func (s NoopClient) FGaugeDelta(stat string, value float64) error { method FAbsolute (line 80) | func (s NoopClient) FAbsolute(stat string, value float64) error { method SendEvents (line 85) | func (s NoopClient) SendEvents(events map[string]event.Event) error { FILE: stdoutclient.go type StdoutClient (line 14) | type StdoutClient struct method CreateSocket (line 42) | func (s *StdoutClient) CreateSocket() error { method CreateTCPSocket (line 50) | func (s *StdoutClient) CreateTCPSocket() error { method Close (line 58) | func (s *StdoutClient) Close() error { method Incr (line 63) | func (s *StdoutClient) Incr(stat string, count int64) error { method Decr (line 71) | func (s *StdoutClient) Decr(stat string, count int64) error { method Timing (line 80) | func (s *StdoutClient) Timing(stat string, delta int64) error { method PrecisionTiming (line 86) | func (s *StdoutClient) PrecisionTiming(stat string, delta time.Duratio... method Gauge (line 96) | func (s *StdoutClient) Gauge(stat string, value int64) error { method GaugeDelta (line 108) | func (s *StdoutClient) GaugeDelta(stat string, value int64) error { method FGauge (line 117) | func (s *StdoutClient) FGauge(stat string, value float64) error { method FGaugeDelta (line 129) | func (s *StdoutClient) FGaugeDelta(stat string, value float64) error { method Absolute (line 137) | func (s *StdoutClient) Absolute(stat string, value int64) error { method FAbsolute (line 142) | func (s *StdoutClient) FAbsolute(stat string, value float64) error { method Total (line 147) | func (s *StdoutClient) Total(stat string, value int64) error { method send (line 152) | func (s *StdoutClient) send(stat string, format string, value interfac... method SendEvent (line 161) | func (s *StdoutClient) SendEvent(e event.Event) error { method SendEvents (line 174) | func (s *StdoutClient) SendEvents(events map[string]event.Event) error { function NewStdoutClient (line 21) | func NewStdoutClient(filename string, prefix string) *StdoutClient {