-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
counter.go
215 lines (179 loc) · 5.18 KB
/
counter.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/*
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 (
"math"
"strconv"
"sync/atomic"
"time"
"vitess.io/vitess/go/vt/logutil"
)
// logCounterNegative is for throttling adding a negative value to a counter messages in logs
var logCounterNegative = logutil.NewThrottledLogger("StatsCounterNegative", 1*time.Minute)
// Counter tracks a cumulative count of a metric.
// For a one-dimensional or multi-dimensional counter, please use
// CountersWithSingleLabel or CountersWithMultiLabels instead.
type Counter struct {
i atomic.Int64
help string
}
// NewCounter returns a new Counter.
func NewCounter(name string, help string) *Counter {
v := &Counter{help: help}
if name != "" {
publish(name, v)
}
return v
}
// Add adds the provided value to the Counter.
func (v *Counter) Add(delta int64) {
if delta < 0 {
logCounterNegative.Warningf("Adding a negative value to a counter, %v should be a gauge instead", v)
}
v.i.Add(delta)
}
// Set overwrites the current value.
// This should be used with caution for Counter values
// only when we are certain that the underlying value we are setting
// is increment only
func (v *Counter) Set(value int64) {
v.i.Store(value)
}
// Reset resets the counter value to 0.
func (v *Counter) Reset() {
v.i.Store(0)
}
// Get returns the value.
func (v *Counter) Get() int64 {
return v.i.Load()
}
// String implements the expvar.Var interface.
func (v *Counter) String() string {
return strconv.FormatInt(v.Get(), 10)
}
// Help returns the help string.
func (v *Counter) Help() string {
return v.help
}
// CounterFunc allows to provide the counter value via a custom function.
// For implementations that differentiate between Counters/Gauges,
// CounterFunc's values only go up (or are reset to 0).
type CounterFunc struct {
F func() int64
help string
}
// NewCounterFunc creates a new CounterFunc instance and publishes it if name is
// set.
func NewCounterFunc(name string, help string, f func() int64) *CounterFunc {
c := &CounterFunc{
F: f,
help: help,
}
if name != "" {
publish(name, c)
}
return c
}
// Help returns the help string.
func (cf CounterFunc) Help() string {
return cf.help
}
// Get returns the value.
func (cf CounterFunc) Get() int64 {
return cf.F()
}
// String implements expvar.Var.
func (cf CounterFunc) String() string {
return strconv.FormatInt(cf.F(), 10)
}
// Gauge tracks the current value of an integer metric.
// The emphasis here is on *current* i.e. this is not a cumulative counter.
// For a one-dimensional or multi-dimensional gauge, please use
// GaugeWithSingleLabel or GaugesWithMultiLabels instead.
type Gauge struct {
Counter
}
// NewGauge creates a new Gauge and publishes it if name is set.
func NewGauge(name string, help string) *Gauge {
v := &Gauge{Counter: Counter{help: help}}
if name != "" {
publish(name, v)
}
return v
}
// Set overwrites the current value.
func (v *Gauge) Set(value int64) {
v.Counter.i.Store(value)
}
// Add adds the provided value to the Gauge.
func (v *Gauge) Add(delta int64) {
v.Counter.i.Add(delta)
}
// GaugeFunc is the same as CounterFunc but meant for gauges.
// It's a wrapper around CounterFunc for values that go up/down for
// implementations (like Prometheus) that need to differ between Counters and
// Gauges.
type GaugeFunc struct {
CounterFunc
}
// NewGaugeFunc creates a new GaugeFunc instance and publishes it if name is
// set.
func NewGaugeFunc(name string, help string, f func() int64) *GaugeFunc {
i := &GaugeFunc{
CounterFunc: CounterFunc{
F: f,
help: help,
}}
if name != "" {
publish(name, i)
}
return i
}
// GaugeFloat64 tracks a cumulative count of a metric.
// For a one-dimensional or multi-dimensional counter, please use
// CountersWithSingleLabel or CountersWithMultiLabels instead.
type GaugeFloat64 struct {
i atomic.Uint64
help string
}
// NewGaugeFloat64 returns a new GaugeFloat64.
func NewGaugeFloat64(name string, help string) *GaugeFloat64 {
v := &GaugeFloat64{help: help}
if name != "" {
publish(name, v)
}
return v
}
// Set overwrites the current value.
// This should be used with caution for GaugeFloat64 values
// only when we are certain that the underlying value we are setting
// is increment only
func (v *GaugeFloat64) Set(value float64) {
v.i.Store(math.Float64bits(value))
}
// Reset resets the counter value to 0.
func (v *GaugeFloat64) Reset() {
v.i.Store(0)
}
// Get returns the value.
func (v *GaugeFloat64) Get() float64 {
return math.Float64frombits(v.i.Load())
}
// String implements the expvar.Var interface.
func (v *GaugeFloat64) String() string {
return strconv.FormatFloat(v.Get(), 'f', -1, 64)
}
// Help returns the help string.
func (v *GaugeFloat64) Help() string {
return v.help
}