aboutsummaryrefslogtreecommitdiffstats
path: root/library/go/core/metrics/solomon/vec.go
blob: 323919e9f8c233516291a6716abef1455726628a (plain) (blame)
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
package solomon

import (
	"sync"

	"github.com/ydb-platform/ydb/library/go/core/metrics"
	"github.com/ydb-platform/ydb/library/go/core/metrics/internal/pkg/registryutil"
)

// metricsVector is a base implementation of vector of metrics of any supported type.
type metricsVector struct {
	labels       []string
	mtx          sync.RWMutex // Protects metrics.
	metrics      map[uint64]Metric
	rated        bool
	newMetric    func(map[string]string) Metric
	removeMetric func(m Metric)
}

func (v *metricsVector) with(tags map[string]string) Metric {
	hv, err := registryutil.VectorHash(tags, v.labels)
	if err != nil {
		panic(err)
	}

	v.mtx.RLock()
	metric, ok := v.metrics[hv]
	v.mtx.RUnlock()
	if ok {
		return metric
	}

	v.mtx.Lock()
	defer v.mtx.Unlock()

	metric, ok = v.metrics[hv]
	if !ok {
		metric = v.newMetric(tags)
		v.metrics[hv] = metric
	}

	return metric
}

// reset deletes all metrics in this vector.
func (v *metricsVector) reset() {
	v.mtx.Lock()
	defer v.mtx.Unlock()

	for h, m := range v.metrics {
		delete(v.metrics, h)
		v.removeMetric(m)
	}
}

var _ metrics.CounterVec = (*CounterVec)(nil)

// CounterVec stores counters and
// implements metrics.CounterVec interface.
type CounterVec struct {
	vec *metricsVector
}

// CounterVec creates a new counters vector with given metric name and
// partitioned by the given label names.
func (r *Registry) CounterVec(name string, labels []string) metrics.CounterVec {
	var vec *metricsVector
	vec = &metricsVector{
		labels:  append([]string(nil), labels...),
		metrics: make(map[uint64]Metric),
		rated:   r.rated,
		newMetric: func(tags map[string]string) Metric {
			return r.Rated(vec.rated).
				WithTags(tags).
				Counter(name).(*Counter)
		},
		removeMetric: func(m Metric) {
			r.WithTags(m.getLabels()).(*Registry).unregisterMetric(m)
		},
	}
	return &CounterVec{vec: vec}
}

// With creates new or returns existing counter with given tags from vector.
// It will panic if tags keys set is not equal to vector labels.
func (v *CounterVec) With(tags map[string]string) metrics.Counter {
	return v.vec.with(tags).(*Counter)
}

// Reset deletes all metrics in this vector.
func (v *CounterVec) Reset() {
	v.vec.reset()
}

var _ metrics.GaugeVec = (*GaugeVec)(nil)

// GaugeVec stores gauges and
// implements metrics.GaugeVec interface.
type GaugeVec struct {
	vec *metricsVector
}

// GaugeVec creates a new gauges vector with given metric name and
// partitioned by the given label names.
func (r *Registry) GaugeVec(name string, labels []string) metrics.GaugeVec {
	return &GaugeVec{
		vec: &metricsVector{
			labels:  append([]string(nil), labels...),
			metrics: make(map[uint64]Metric),
			newMetric: func(tags map[string]string) Metric {
				return r.WithTags(tags).Gauge(name).(*Gauge)
			},
			removeMetric: func(m Metric) {
				r.WithTags(m.getLabels()).(*Registry).unregisterMetric(m)
			},
		},
	}
}

// With creates new or returns existing gauge with given tags from vector.
// It will panic if tags keys set is not equal to vector labels.
func (v *GaugeVec) With(tags map[string]string) metrics.Gauge {
	return v.vec.with(tags).(*Gauge)
}

// Reset deletes all metrics in this vector.
func (v *GaugeVec) Reset() {
	v.vec.reset()
}

var _ metrics.IntGaugeVec = (*IntGaugeVec)(nil)

// IntGaugeVec stores gauges and
// implements metrics.IntGaugeVec interface.
type IntGaugeVec struct {
	vec *metricsVector
}

// IntGaugeVec creates a new gauges vector with given metric name and
// partitioned by the given label names.
func (r *Registry) IntGaugeVec(name string, labels []string) metrics.IntGaugeVec {
	return &IntGaugeVec{
		vec: &metricsVector{
			labels:  append([]string(nil), labels...),
			metrics: make(map[uint64]Metric),
			newMetric: func(tags map[string]string) Metric {
				return r.WithTags(tags).IntGauge(name).(*IntGauge)
			},
			removeMetric: func(m Metric) {
				r.WithTags(m.getLabels()).(*Registry).unregisterMetric(m)
			},
		},
	}
}

// With creates new or returns existing gauge with given tags from vector.
// It will panic if tags keys set is not equal to vector labels.
func (v *IntGaugeVec) With(tags map[string]string) metrics.IntGauge {
	return v.vec.with(tags).(*IntGauge)
}

// Reset deletes all metrics in this vector.
func (v *IntGaugeVec) Reset() {
	v.vec.reset()
}

var _ metrics.TimerVec = (*TimerVec)(nil)

// TimerVec stores timers and
// implements metrics.TimerVec interface.
type TimerVec struct {
	vec *metricsVector
}

// TimerVec creates a new timers vector with given metric name and
// partitioned by the given label names.
func (r *Registry) TimerVec(name string, labels []string) metrics.TimerVec {
	return &TimerVec{
		vec: &metricsVector{
			labels:  append([]string(nil), labels...),
			metrics: make(map[uint64]Metric),
			newMetric: func(tags map[string]string) Metric {
				return r.WithTags(tags).Timer(name).(*Timer)
			},
			removeMetric: func(m Metric) {
				r.WithTags(m.getLabels()).(*Registry).unregisterMetric(m)
			},
		},
	}
}

// With creates new or returns existing timer with given tags from vector.
// It will panic if tags keys set is not equal to vector labels.
func (v *TimerVec) With(tags map[string]string) metrics.Timer {
	return v.vec.with(tags).(*Timer)
}

// Reset deletes all metrics in this vector.
func (v *TimerVec) Reset() {
	v.vec.reset()
}

var _ metrics.HistogramVec = (*HistogramVec)(nil)

// HistogramVec stores histograms and
// implements metrics.HistogramVec interface.
type HistogramVec struct {
	vec *metricsVector
}

// HistogramVec creates a new histograms vector with given metric name and buckets and
// partitioned by the given label names.
func (r *Registry) HistogramVec(name string, buckets metrics.Buckets, labels []string) metrics.HistogramVec {
	var vec *metricsVector
	vec = &metricsVector{
		labels:  append([]string(nil), labels...),
		metrics: make(map[uint64]Metric),
		rated:   r.rated,
		newMetric: func(tags map[string]string) Metric {
			return r.Rated(vec.rated).
				WithTags(tags).
				Histogram(name, buckets).(*Histogram)
		},
		removeMetric: func(m Metric) {
			r.WithTags(m.getLabels()).(*Registry).unregisterMetric(m)
		},
	}
	return &HistogramVec{vec: vec}
}

// With creates new or returns existing histogram with given tags from vector.
// It will panic if tags keys set is not equal to vector labels.
func (v *HistogramVec) With(tags map[string]string) metrics.Histogram {
	return v.vec.with(tags).(*Histogram)
}

// Reset deletes all metrics in this vector.
func (v *HistogramVec) Reset() {
	v.vec.reset()
}

var _ metrics.TimerVec = (*DurationHistogramVec)(nil)

// DurationHistogramVec stores duration histograms and
// implements metrics.TimerVec interface.
type DurationHistogramVec struct {
	vec *metricsVector
}

// DurationHistogramVec creates a new duration histograms vector with given metric name and buckets and
// partitioned by the given label names.
func (r *Registry) DurationHistogramVec(name string, buckets metrics.DurationBuckets, labels []string) metrics.TimerVec {
	var vec *metricsVector
	vec = &metricsVector{
		labels:  append([]string(nil), labels...),
		metrics: make(map[uint64]Metric),
		rated:   r.rated,
		newMetric: func(tags map[string]string) Metric {
			return r.Rated(vec.rated).
				WithTags(tags).
				DurationHistogram(name, buckets).(*Histogram)
		},
		removeMetric: func(m Metric) {
			r.WithTags(m.getLabels()).(*Registry).unregisterMetric(m)
		},
	}
	return &DurationHistogramVec{vec: vec}
}

// With creates new or returns existing duration histogram with given tags from vector.
// It will panic if tags keys set is not equal to vector labels.
func (v *DurationHistogramVec) With(tags map[string]string) metrics.Timer {
	return v.vec.with(tags).(*Histogram)
}

// Reset deletes all metrics in this vector.
func (v *DurationHistogramVec) Reset() {
	v.vec.reset()
}