aboutsummaryrefslogtreecommitdiffstats
path: root/library/go/core/metrics/mock/vec.go
blob: f1cde3d47c46f5f239ccf820bd5505273b82f4ba (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
package mock

import (
	"sync"

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

type MetricsVector interface {
	With(map[string]string) interface{}

	// Reset deletes all metrics in vector.
	Reset()
}

// Vector is base implementation of vector of metrics of any supported type
type Vector struct {
	Labels    []string
	Mtx       sync.RWMutex // Protects metrics.
	Metrics   map[uint64]interface{}
	NewMetric func(map[string]string) interface{}
}

func (v *Vector) With(tags map[string]string) interface{} {
	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 *Vector) Reset() {
	v.Mtx.Lock()
	defer v.Mtx.Unlock()

	for h := range v.Metrics {
		delete(v.Metrics, h)
	}
}

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 {
	return &CounterVec{
		Vec: &Vector{
			Labels:  append([]string(nil), labels...),
			Metrics: make(map[uint64]interface{}),
			NewMetric: func(tags map[string]string) interface{} {
				return r.WithTags(tags).Counter(name)
			},
		},
	}
}

// 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 = new(GaugeVec)

// 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: &Vector{
			Labels:  append([]string(nil), labels...),
			Metrics: make(map[uint64]interface{}),
			NewMetric: func(tags map[string]string) interface{} {
				return r.WithTags(tags).Gauge(name)
			},
		},
	}
}

// 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 = new(IntGaugeVec)

// 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: &Vector{
			Labels:  append([]string(nil), labels...),
			Metrics: make(map[uint64]interface{}),
			NewMetric: func(tags map[string]string) interface{} {
				return r.WithTags(tags).IntGauge(name)
			},
		},
	}
}

// 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 = new(TimerVec)

// 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: &Vector{
			Labels:  append([]string(nil), labels...),
			Metrics: make(map[uint64]interface{}),
			NewMetric: func(tags map[string]string) interface{} {
				return r.WithTags(tags).Timer(name)
			},
		},
	}
}

// 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 {
	return &HistogramVec{
		Vec: &Vector{
			Labels:  append([]string(nil), labels...),
			Metrics: make(map[uint64]interface{}),
			NewMetric: func(tags map[string]string) interface{} {
				return r.WithTags(tags).Histogram(name, buckets)
			},
		},
	}
}

// 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 {
	return &DurationHistogramVec{
		Vec: &Vector{
			Labels:  append([]string(nil), labels...),
			Metrics: make(map[uint64]interface{}),
			NewMetric: func(tags map[string]string) interface{} {
				return r.WithTags(tags).DurationHistogram(name, buckets)
			},
		},
	}
}

// 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()
}