-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathstats.go
83 lines (71 loc) · 2.4 KB
/
stats.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
// Copyright (C) 2015 Space Monkey, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package monkit
import (
"strings"
)
// SeriesKey represents an individual time series for monkit to output.
type SeriesKey struct {
Measurement string
Tags *TagSet
}
// NewSeriesKey constructs a new series with the minimal fields.
func NewSeriesKey(measurement string) SeriesKey {
return SeriesKey{Measurement: measurement}
}
// WithTag returns a copy of the SeriesKey with the tag set
func (s SeriesKey) WithTag(key, value string) SeriesKey {
s.Tags = s.Tags.Set(key, value)
return s
}
// WithTags returns a copy of the SeriesKey with all of the tags set
func (s SeriesKey) WithTags(tags ...SeriesTag) SeriesKey {
s.Tags = s.Tags.SetTags(tags...)
return s
}
// String returns a string representation of the series. For example, it returns
// something like `measurement,tag0=val0,tag1=val1`.
func (s SeriesKey) String() string {
var builder strings.Builder
writeMeasurement(&builder, s.Measurement)
if s.Tags.Len() > 0 {
builder.WriteByte(',')
builder.WriteString(s.Tags.String())
}
return builder.String()
}
func (s SeriesKey) WithField(field string) string {
var builder strings.Builder
builder.WriteString(s.String())
builder.WriteByte(' ')
writeTag(&builder, field)
return builder.String()
}
// StatSource represents anything that can return named floating point values.
type StatSource interface {
Stats(cb func(key SeriesKey, field string, val float64))
}
type StatSourceFunc func(cb func(key SeriesKey, field string, val float64))
func (f StatSourceFunc) Stats(cb func(key SeriesKey, field string, val float64)) {
f(cb)
}
// Collect takes something that implements the StatSource interface and returns
// a key/value map.
func Collect(mon StatSource) map[string]float64 {
rv := make(map[string]float64)
mon.Stats(func(key SeriesKey, field string, val float64) {
rv[key.WithField(field)] = val
})
return rv
}