-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfunctions.go
More file actions
293 lines (252 loc) · 6.94 KB
/
functions.go
File metadata and controls
293 lines (252 loc) · 6.94 KB
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
package promsketch
import (
"context"
"math"
)
type FunctionCall func(ctx context.Context, series *memSeries, c float64, t1, t2, t int64) Vector
// FunctionCalls is a list of all functions supported by PromQL, including their types.
var FunctionCalls = map[string]FunctionCall{
"change_over_time": funcChangeOverTime,
"avg_over_time": funcAvgOverTime,
"count_over_time": funcCountOverTime,
"entropy_over_time": funcEntropyOverTime,
"max_over_time": funcMaxOverTime,
"min_over_time": funcMinOverTime,
"stddev_over_time": funcStddevOverTime,
"stdvar_over_time": funcStdvarOverTime,
"sum_over_time": funcSumOverTime,
"sum2_over_time": funcSum2OverTime,
"distinct_over_time": funcCardOverTime,
"l1_over_time": funcL1OverTime,
"l2_over_time": funcL2OverTime,
"quantile_over_time": funcQuantileOverTime,
}
func calc_entropy(values *[]float64) float64 {
m := make(map[float64]int)
n := float64(len(*values))
for _, v := range *values {
if _, ok := m[v]; !ok {
m[v] = 1
} else {
m[v] += 1
}
}
var entropy float64 = 0
for _, v := range m {
entropy += float64(v) * math.Log2(float64(v))
}
entropy = math.Log2(n) - entropy/n
return entropy
}
func calc_entropy_map(m *map[float64]int64, n float64) float64 {
var entropy float64 = 0
for _, v := range *m {
entropy += float64(v) * math.Log2(float64(v))
}
entropy = math.Log2(n) - entropy/n
return entropy
}
func calc_l1(values *[]float64) float64 {
m := make(map[float64]int)
for _, v := range *values {
if _, ok := m[v]; !ok {
m[v] = 1
} else {
m[v] += 1
}
}
var l1 float64 = 0
for _, v := range m {
l1 += float64(v)
}
return l1
}
func calc_l1_map(m *map[float64]int64) float64 {
var l1 float64 = 0
for _, v := range *m {
l1 += float64(v)
}
return l1
}
func calc_distinct(values *[]float64) float64 {
m := make(map[float64]int)
for _, v := range *values {
if _, ok := m[v]; !ok {
m[v] = 1
} else {
m[v] += 1
}
}
distinct := float64(len(m))
return distinct
}
func calc_distinct_map(m *map[float64]int64) float64 {
distinct := float64(len(*m))
return distinct
}
func calc_l2(values *[]float64) float64 {
m := make(map[float64]int)
for _, v := range *values {
if _, ok := m[v]; !ok {
m[v] = 1
} else {
m[v] += 1
}
}
var l2 float64 = 0
for _, v := range m {
l2 += float64(v * v)
}
l2 = math.Sqrt(l2)
return l2
}
func calc_l2_map(m *map[float64]int64) float64 {
var l2 float64 = 0
for _, v := range *m {
l2 += float64(v * v)
}
l2 = math.Sqrt(l2)
return l2
}
// TODO: add last item value in the change data structure
func funcChangeOverTime(ctx context.Context, series *memSeries, c float64, t1, t2, t int64) Vector {
count := series.sketchInstances.sampling.QueryCount(t1, t2)
return Vector{Sample{
F: count,
}}
}
func funcAvgOverTime(ctx context.Context, series *memSeries, c float64, t1, t2, t int64) Vector {
avg := series.sketchInstances.sampling.QueryAvg(t1, t2)
return Vector{Sample{
F: avg,
}}
}
func funcSumOverTime(ctx context.Context, series *memSeries, c float64, t1, t2, t int64) Vector {
sum := series.sketchInstances.sampling.QuerySum(t1, t2)
return Vector{Sample{
F: sum,
}}
}
func funcSum2OverTime(ctx context.Context, series *memSeries, c float64, t1, t2, t int64) Vector {
sum2 := series.sketchInstances.sampling.QuerySum2(t1, t2)
return Vector{Sample{
F: sum2,
}}
}
func funcCountOverTime(ctx context.Context, series *memSeries, c float64, t1, t2, t int64) Vector {
count := series.sketchInstances.sampling.QueryCount(t1, t2)
return Vector{Sample{
F: float64(count),
}}
}
func funcStddevOverTime(ctx context.Context, series *memSeries, c float64, t1, t2, t int64) Vector {
// count := series.sketchInstances.sampling.QueryCount(t1, t2)
// sum := series.sketchInstances.sampling.QuerySum(t1, t2)
// sum2 := series.sketchInstances.sampling.QuerySum2(t1, t2)
// stddev := math.Sqrt(sum2/count - math.Pow(sum/count, 2))
stddev := series.sketchInstances.sampling.QueryStddev(t1, t2)
return Vector{Sample{
F: float64(stddev),
}}
}
func sum2(values []float64) float64 {
var sum2 float64 = 0
for _, v := range values {
sum2 += v * v
}
return sum2
}
func funcStdvarOverTime(ctx context.Context, series *memSeries, c float64, t1, t2, t int64) Vector {
// count := series.sketchInstances.sampling.QueryCount(t1, t2)
// sum := series.sketchInstances.sampling.QuerySum(t1, t2)
// sum2 := series.sketchInstances.sampling.QuerySum2(t1, t2)
// stdvar := sum2/count - math.Pow(sum/count, 2)
stdvar := series.sketchInstances.sampling.QueryStdvar(t1, t2)
return Vector{Sample{
F: stdvar,
}}
}
func funcEntropyOverTime(ctx context.Context, series *memSeries, c float64, t1, t2, t int64) Vector {
merged_univ, m, n, err := series.sketchInstances.ehuniv.QueryIntervalMergeUniv(t1, t2, t)
if err != nil {
return make(Vector, 0)
}
var entropy float64 = 0
if merged_univ != nil && m == nil {
entropy = merged_univ.calcEntropy()
} else {
entropy = calc_entropy_map(m, n)
}
return Vector{Sample{
F: entropy,
}}
}
func funcCardOverTime(ctx context.Context, series *memSeries, c float64, t1, t2, t int64) Vector {
merged_univ, m, _, err := series.sketchInstances.ehuniv.QueryIntervalMergeUniv(t1, t2, t)
if err != nil {
return make(Vector, 0)
}
var card float64 = 0
if merged_univ != nil && m == nil {
card = merged_univ.calcCard()
} else {
card = calc_distinct_map(m)
}
return Vector{Sample{
F: card,
}}
}
func funcL1OverTime(ctx context.Context, series *memSeries, c float64, t1, t2, t int64) Vector {
merged_univ, m, _, err := series.sketchInstances.ehuniv.QueryIntervalMergeUniv(t1, t2, t)
if err != nil {
return make(Vector, 0)
}
var l1 float64 = 0
if merged_univ != nil && m == nil {
l1 = merged_univ.calcL1()
} else {
l1 = calc_l1_map(m)
}
return Vector{Sample{
F: l1,
}}
}
func funcL2OverTime(ctx context.Context, series *memSeries, c float64, t1, t2, t int64) Vector {
merged_univ, m, _, err := series.sketchInstances.ehuniv.QueryIntervalMergeUniv(t1, t2, t)
if err != nil {
return make(Vector, 0)
}
var l2 float64 = 0
if merged_univ != nil && m == nil {
l2 = merged_univ.calcL2()
} else {
l2 = calc_l2_map(m)
}
return Vector{Sample{
F: l2,
}}
}
func funcQuantileOverTime(ctx context.Context, series *memSeries, phi float64, t1, t2, t int64) Vector {
merged_kll := series.sketchInstances.ehkll.QueryIntervalMergeKLL(t1, t2)
cdf := merged_kll.CDF()
q_value := cdf.Query(phi)
return Vector{Sample{
F: q_value,
}}
}
func funcMinOverTime(ctx context.Context, series *memSeries, c float64, t1, t2, t int64) Vector {
merged_kll := series.sketchInstances.ehkll.QueryIntervalMergeKLL(t1, t2)
cdf := merged_kll.CDF()
q_value := cdf.Query(0)
return Vector{Sample{
F: q_value,
}}
}
func funcMaxOverTime(ctx context.Context, series *memSeries, c float64, t1, t2, t int64) Vector {
merged_kll := series.sketchInstances.ehkll.QueryIntervalMergeKLL(t1, t2)
cdf := merged_kll.CDF()
q_value := cdf.Query(1)
return Vector{Sample{
F: q_value,
}}
}