-
Notifications
You must be signed in to change notification settings - Fork 93
/
sampler_config.go
404 lines (379 loc) · 9.79 KB
/
sampler_config.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
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
package config
import (
"fmt"
"strconv"
"strings"
)
type DeterministicSamplerConfig struct {
SampleRate int `validate:"required,gte=1"`
}
type DynamicSamplerConfig struct {
SampleRate int64 `validate:"required,gte=1"`
ClearFrequencySec int64
FieldList []string `validate:"required"`
UseTraceLength bool
AddSampleRateKeyToTrace bool
AddSampleRateKeyToTraceField string `validate:"required_with=AddSampleRateKeyToTrace"`
}
type EMADynamicSamplerConfig struct {
GoalSampleRate int `validate:"gte=1"`
AdjustmentInterval int
Weight float64 `validate:"gt=0,lt=1"`
AgeOutValue float64
BurstMultiple float64
BurstDetectionDelay uint
MaxKeys int
FieldList []string `validate:"required"`
UseTraceLength bool
AddSampleRateKeyToTrace bool
AddSampleRateKeyToTraceField string `validate:"required_with=AddSampleRateKeyToTrace"`
}
type TotalThroughputSamplerConfig struct {
GoalThroughputPerSec int64 `validate:"gte=1"`
ClearFrequencySec int64
FieldList []string `validate:"required"`
UseTraceLength bool
AddSampleRateKeyToTrace bool
AddSampleRateKeyToTraceField string `validate:"required_with=AddSampleRateKeyToTrace"`
}
type RulesBasedSamplerCondition struct {
Field string
Operator string
Value interface{}
Datatype string
Matches func(value any, exists bool) bool
}
func (r *RulesBasedSamplerCondition) Init() error {
return r.setMatchesFunction()
}
func (r *RulesBasedSamplerCondition) String() string {
return fmt.Sprintf("%+v", *r)
}
func (r *RulesBasedSamplerCondition) setMatchesFunction() error {
switch r.Operator {
case "exists":
r.Matches = func(value any, exists bool) bool {
return exists
}
return nil
case "not-exists":
r.Matches = func(value any, exists bool) bool {
return !exists
}
return nil
case "!=", "=", ">", "<", "<=", ">=":
return setCompareOperators(r, r.Operator)
case "starts-with", "contains", "does-not-contain":
err := setMatchStringBasedOperators(r, r.Operator)
if err != nil {
return err
}
default:
return fmt.Errorf("unknown operator '%s'", r.Operator)
}
return nil
}
func tryConvertToInt(v any) (int, bool) {
switch value := v.(type) {
case int:
return value, true
case int64:
return int(value), true
case float64:
return int(value), true
case bool:
return 0, false
case string:
n, err := strconv.Atoi(value)
if err == nil {
return n, true
}
return 0, false
default:
return 0, false
}
}
func tryConvertToFloat(v any) (float64, bool) {
switch value := v.(type) {
case float64:
return value, true
case int:
return float64(value), true
case int64:
return float64(value), true
case bool:
return 0, false
case string:
n, err := strconv.ParseFloat(value, 64)
return n, err == nil
default:
return 0, false
}
}
// In the case of strings, we want to stringize everything we get through a
// "standard" format, which we are defining as whatever Go does with the %v
// operator to sprintf. This will make sure that no matter how people encode
// their values, they compare on an equal footing.
func tryConvertToString(v any) (string, bool) {
return fmt.Sprintf("%v", v), true
}
func tryConvertToBool(v any) bool {
value, ok := tryConvertToString(v)
if !ok {
return false
}
str, err := strconv.ParseBool(value)
if err != nil {
return false
}
if str {
return true
} else {
return false
}
}
func setCompareOperators(r *RulesBasedSamplerCondition, condition string) error {
switch r.Datatype {
case "string":
conditionValue, ok := tryConvertToString(r.Value)
if !ok {
return fmt.Errorf("could not convert %v to string", r.Value)
}
// check if conditionValue and spanValue are not equal
switch condition {
case "!=":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToString(spanValue); exists && ok {
return n != conditionValue
}
return false
}
return nil
case "=":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToString(spanValue); exists && ok {
return n == conditionValue
}
return false
}
return nil
case ">":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToString(spanValue); exists && ok {
return n > conditionValue
}
return false
}
return nil
case "<":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToString(spanValue); exists && ok {
return n < conditionValue
}
return false
}
return nil
case "<=":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToString(spanValue); exists && ok {
return n <= conditionValue
}
return false
}
return nil
}
case "int":
// check if conditionValue and spanValue are not equal
conditionValue, ok := tryConvertToInt(r.Value)
if !ok {
return fmt.Errorf("could not convert %v to string", r.Value)
}
switch condition {
case "!=":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToInt(spanValue); exists && ok {
return n != conditionValue
}
return false
}
return nil
case "=":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToInt(spanValue); exists && ok {
return n == conditionValue
}
return false
}
return nil
case ">":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToInt(spanValue); exists && ok {
return n > conditionValue
}
return false
}
return nil
case ">=":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToInt(spanValue); exists && ok {
return n >= conditionValue
}
return false
}
return nil
case "<":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToInt(spanValue); exists && ok {
return n < conditionValue
}
return false
}
return nil
case "<=":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToInt(spanValue); exists && ok {
return n <= conditionValue
}
return false
}
return nil
}
case "float":
conditionValue, ok := tryConvertToFloat(r.Value)
if !ok {
return fmt.Errorf("could not convert %v to string", r.Value)
}
// check if conditionValue and spanValue are not equal
switch condition {
case "!=":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToFloat(spanValue); exists && ok {
return n != conditionValue
}
return false
}
return nil
case "=":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToFloat(spanValue); exists && ok {
return n == conditionValue
}
return false
}
return nil
case ">":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToFloat(spanValue); exists && ok {
return n > conditionValue
}
return false
}
return nil
case ">=":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToFloat(spanValue); exists && ok {
return n >= conditionValue
}
return false
}
return nil
case "<":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToFloat(spanValue); exists && ok {
return n < conditionValue
}
return false
}
return nil
case "<=":
r.Matches = func(spanValue any, exists bool) bool {
if n, ok := tryConvertToFloat(spanValue); exists && ok {
return n <= conditionValue
}
return false
}
return nil
}
case "bool":
conditionValue := tryConvertToBool(r.Value)
switch condition {
case "!=":
r.Matches = func(spanValue any, exists bool) bool {
if n := tryConvertToBool(spanValue); exists && n {
return n != conditionValue
}
return false
}
return nil
case "=":
r.Matches = func(spanValue any, exists bool) bool {
if n := tryConvertToBool(spanValue); exists && n {
return n == conditionValue
}
return false
}
return nil
}
case "":
// user did not specify datatype, so do not specify matches function
default:
return fmt.Errorf("%s must be either string, int, float or bool", r.Datatype)
}
return nil
}
func setMatchStringBasedOperators(r *RulesBasedSamplerCondition, condition string) error {
conditionValue, ok := tryConvertToString(r.Value)
if !ok {
return fmt.Errorf("%s value must be a string, but was '%s'", condition, r.Value)
}
switch condition {
case "starts-with":
r.Matches = func(spanValue any, exists bool) bool {
s, ok := tryConvertToString(spanValue)
if ok {
return strings.HasPrefix(s, conditionValue)
}
return false
}
case "contains":
r.Matches = func(spanValue any, exists bool) bool {
s, ok := tryConvertToString(spanValue)
if ok {
return strings.Contains(s, conditionValue)
}
return false
}
case "does-not-contain":
r.Matches = func(spanValue any, exists bool) bool {
s, ok := tryConvertToString(spanValue)
if ok {
return !strings.Contains(s, conditionValue)
}
return false
}
}
return nil
}
type RulesBasedDownstreamSampler struct {
DynamicSampler *DynamicSamplerConfig
EMADynamicSampler *EMADynamicSamplerConfig
TotalThroughputSampler *TotalThroughputSamplerConfig
}
type RulesBasedSamplerRule struct {
Name string
SampleRate int
Sampler *RulesBasedDownstreamSampler
Drop bool
Scope string `validate:"oneof=span trace"`
Condition []*RulesBasedSamplerCondition
}
func (r *RulesBasedSamplerRule) String() string {
return fmt.Sprintf("%+v", *r)
}
type RulesBasedSamplerConfig struct {
Rule []*RulesBasedSamplerRule
CheckNestedFields bool
}
func (r *RulesBasedSamplerConfig) String() string {
return fmt.Sprintf("%+v", *r)
}