-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathseriesgen.go
234 lines (184 loc) · 4.8 KB
/
seriesgen.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
package seriesgen
import (
"math/rand"
"time"
"github.com/prometheus/prometheus/model/labels"
"github.com/prometheus/prometheus/storage"
"github.com/prometheus/prometheus/tsdb/chunkenc"
)
type sample struct {
T int64
V float64
}
type SeriesGen struct {
chunkenc.Iterator
lset labels.Labels
}
func NewSeriesGen(lset labels.Labels, it chunkenc.Iterator) storage.Series {
return &storage.SeriesEntry{
Lset: lset,
SampleIteratorFn: func() chunkenc.Iterator {
return it
},
}
}
func (s *SeriesGen) Labels() labels.Labels { return s.lset }
var _ chunkenc.Iterator = &GaugeGen{}
var _ chunkenc.Iterator = &CounterGen{}
var _ chunkenc.Iterator = &ValGen{}
type Characteristics struct {
Jitter float64 `yaml:"jitter"`
ScrapeInterval time.Duration `yaml:"scrapeInterval"`
ChangeInterval time.Duration `yaml:"changeInterval"`
Max float64 `yaml:"max"`
Min float64 `yaml:"min"`
}
type GaugeGen struct {
changeInterval time.Duration
interval time.Duration
maxTime, minTime int64
min, max, jitter float64
v float64
mod float64
init bool
elapsed int64
random *rand.Rand
}
func NewGaugeGen(random *rand.Rand, mint, maxt int64, opts Characteristics) *GaugeGen {
return &GaugeGen{
changeInterval: opts.ChangeInterval,
interval: opts.ScrapeInterval,
max: opts.Max,
min: opts.Min,
minTime: mint,
maxTime: maxt,
jitter: opts.Jitter,
random: random,
}
}
func (g *GaugeGen) Next() bool {
if g.minTime > g.maxTime {
return false
}
defer func() {
g.minTime += int64(g.interval.Seconds() * 1000)
g.elapsed += int64(g.interval.Seconds() * 1000)
}()
if !g.init {
g.v = g.min + g.random.Float64()*((g.max-g.min)+1)
g.init = true
}
// Technically only mod changes.
if g.jitter > 0 && g.elapsed >= int64(g.changeInterval.Seconds()*1000) {
g.mod = (g.random.Float64() - 0.5) * g.jitter
g.elapsed = 0
}
return true
}
func (g *GaugeGen) At() (t int64, v float64) {
return g.minTime, g.v + g.mod
}
func (g *GaugeGen) Err() error { return nil }
func (g *GaugeGen) Seek(_ int64) bool { return true }
// TODO(bwplotka): Improve. Does not work well (: Too naive.
// Add resets etc.
type CounterGen struct {
maxTime, minTime int64
min, max, jitter float64
interval time.Duration
changeInterval time.Duration
rateInterval time.Duration
v float64
init bool
buff []sample
lastVal float64
elapsed int64
random *rand.Rand
}
func NewCounterGen(random *rand.Rand, mint, maxt int64, opts Characteristics) *CounterGen {
return &CounterGen{
changeInterval: opts.ChangeInterval,
interval: opts.ScrapeInterval,
max: opts.Max,
min: opts.Min,
minTime: mint,
maxTime: maxt,
jitter: opts.Jitter,
random: random,
rateInterval: 5 * time.Minute,
}
}
func (g *CounterGen) Next() bool {
defer func() { g.elapsed += int64(g.interval.Seconds() * 1000) }()
if g.init && len(g.buff) == 0 {
return false
}
if len(g.buff) > 0 {
// Pop front.
g.buff = g.buff[1:]
if len(g.buff) > 0 {
return true
}
}
if !g.init {
g.v = g.min + g.random.Float64()*((g.max-g.min)+1)
g.init = true
}
var mod float64
if g.jitter > 0 && g.elapsed >= int64(g.changeInterval.Seconds()*1000) {
mod = (g.random.Float64() - 0.5) * g.jitter
if mod > g.v {
mod = g.v
}
g.elapsed = 0
}
// Distribute goalV into multiple rateInterval/interval increments.
comps := make([]float64, int64(g.rateInterval/g.interval))
var sum float64
for i := range comps {
comps[i] = g.random.Float64()
sum += comps[i]
}
// That's the goal for our rate.
x := g.v + mod/sum
for g.minTime <= g.maxTime && len(comps) > 0 {
g.lastVal += x * comps[0]
comps = comps[1:]
g.minTime += int64(g.interval.Seconds() * 1000)
g.buff = append(g.buff, sample{T: g.minTime, V: g.lastVal})
}
return len(g.buff) > 0
}
func (g *CounterGen) At() (int64, float64) { return g.buff[0].T, g.buff[0].V }
func (g *CounterGen) Err() error { return nil }
func (g *CounterGen) Seek(_ int64) bool { return true }
type ValGen struct {
interval time.Duration
maxTime, minTime int64
min, max float64
v float64
random *rand.Rand
}
func NewValGen(random *rand.Rand, mint, maxt int64, opts Characteristics) *ValGen {
return &ValGen{
interval: opts.ScrapeInterval,
max: opts.Max,
min: opts.Min,
minTime: mint,
maxTime: maxt,
random: random,
}
}
func (g *ValGen) Next() bool {
if g.minTime > g.maxTime {
return false
}
g.minTime += int64(g.interval.Seconds() * 1000)
g.v = g.min + g.random.Float64()*((g.max-g.min)+1)
return true
}
func (g *ValGen) At() (t int64, v float64) {
return g.minTime, g.v
}
func (g *ValGen) Err() error { return nil }
func (g *ValGen) Seek(_ int64) bool { return true }