-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
histogram.go
174 lines (153 loc) · 4.92 KB
/
histogram.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
/*
Copyright 2019 The Vitess Authors.
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 stats
import (
"bytes"
"fmt"
"sync/atomic"
)
// Histogram tracks counts and totals while
// splitting the counts under different buckets
// using specified cutoffs.
type Histogram struct {
name string
help string
cutoffs []int64
labels []string
countLabel string
totalLabel string
hook func(int64)
buckets []atomic.Int64
total atomic.Int64
}
// NewHistogram creates a histogram with auto-generated labels
// based on the cutoffs. The buckets are categorized using the
// following criterion: cutoff[i-1] < value <= cutoff[i]. Anything
// higher than the highest cutoff is labeled as "inf".
func NewHistogram(name, help string, cutoffs []int64) *Histogram {
labels := make([]string, len(cutoffs)+1)
for i, v := range cutoffs {
labels[i] = fmt.Sprintf("%d", v)
}
labels[len(labels)-1] = "inf"
return NewGenericHistogram(name, help, cutoffs, labels, "Count", "Total")
}
// NewGenericHistogram creates a histogram where all the labels are
// supplied by the caller. The number of labels has to be one more than
// the number of cutoffs because the last label captures everything that
// exceeds the highest cutoff.
func NewGenericHistogram(name, help string, cutoffs []int64, labels []string, countLabel, totalLabel string) *Histogram {
if len(cutoffs) != len(labels)-1 {
panic("mismatched cutoff and label lengths")
}
h := &Histogram{
name: name,
help: help,
cutoffs: cutoffs,
labels: labels,
countLabel: countLabel,
totalLabel: totalLabel,
buckets: make([]atomic.Int64, len(labels)),
}
if name != "" {
publish(name, h)
}
return h
}
// Add adds a new measurement to the Histogram.
func (h *Histogram) Add(value int64) {
for i := range h.labels {
if i == len(h.labels)-1 || value <= h.cutoffs[i] {
h.buckets[i].Add(1)
h.total.Add(value)
break
}
}
if h.hook != nil {
h.hook(value)
}
if defaultStatsdHook.histogramHook != nil && h.name != "" {
defaultStatsdHook.histogramHook(h.name, value)
}
}
// String returns a string representation of the Histogram.
// Note that sum of all buckets may not be equal to the total temporarily,
// because Add() increments bucket and total with two atomic operations.
func (h *Histogram) String() string {
b, _ := h.MarshalJSON()
return string(b)
}
// MarshalJSON returns a JSON representation of the Histogram.
// Note that sum of all buckets may not be equal to the total temporarily,
// because Add() increments bucket and total with two atomic operations.
func (h *Histogram) MarshalJSON() ([]byte, error) {
b := bytes.NewBuffer(make([]byte, 0, 4096))
fmt.Fprintf(b, "{")
totalCount := int64(0)
for i, label := range h.labels {
count := h.buckets[i].Load()
totalCount += count
fmt.Fprintf(b, "\"%v\": %v, ", label, count)
}
fmt.Fprintf(b, "\"%s\": %v, ", h.countLabel, totalCount)
fmt.Fprintf(b, "\"%s\": %v", h.totalLabel, h.total.Load())
fmt.Fprintf(b, "}")
return b.Bytes(), nil
}
// Counts returns a map from labels to the current count in the Histogram for that label.
func (h *Histogram) Counts() map[string]int64 {
counts := make(map[string]int64, len(h.labels))
for i, label := range h.labels {
counts[label] = h.buckets[i].Load()
}
return counts
}
// CountLabel returns the count label that was set when this Histogram was created.
func (h *Histogram) CountLabel() string {
return h.countLabel
}
// Count returns the number of times Add has been called.
func (h *Histogram) Count() (count int64) {
for i := range h.buckets {
count += h.buckets[i].Load()
}
return
}
// TotalLabel returns the total label that was set when this Histogram was created.
func (h *Histogram) TotalLabel() string {
return h.totalLabel
}
// Total returns the sum of all values that have been added to this Histogram.
func (h *Histogram) Total() (total int64) {
return h.total.Load()
}
// Labels returns the labels that were set when this Histogram was created.
func (h *Histogram) Labels() []string {
return h.labels
}
// Cutoffs returns the cutoffs that were set when this Histogram was created.
func (h *Histogram) Cutoffs() []int64 {
return h.cutoffs
}
// Buckets returns a snapshot of the current values in all buckets.
func (h *Histogram) Buckets() []int64 {
buckets := make([]int64, len(h.buckets))
for i := range h.buckets {
buckets[i] = h.buckets[i].Load()
}
return buckets
}
// Help returns the help string.
func (h *Histogram) Help() string {
return h.help
}