-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathmain.go
318 lines (275 loc) · 8.82 KB
/
main.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
// Copyright 2024 The Prometheus Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"flag"
"fmt"
"io"
"log"
"net/http"
"os"
"sync"
"time"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/prometheus/common/model"
"gopkg.in/yaml.v2"
)
// Global variables and Prometheus metrics
const max404Errors = 30
var (
domainName = os.Getenv("DOMAIN_NAME")
queryDuration = prometheus.NewHistogramVec(
prometheus.HistogramOpts{
Namespace: "loadgen",
Name: "query_duration_seconds",
Help: "Query duration",
Buckets: prometheus.LinearBuckets(0.05, 0.1, 20),
},
[]string{"prometheus", "group", "expr", "type"},
)
queryCount = prometheus.NewCounterVec(
prometheus.CounterOpts{
Namespace: "loadgen",
Name: "queries_total",
Help: "Total amount of queries",
},
[]string{"prometheus", "group", "expr", "type"},
)
queryFailCount = prometheus.NewCounterVec(
prometheus.CounterOpts{
Namespace: "loadgen",
Name: "failed_queries_total",
Help: "Amount of failed queries",
},
[]string{"prometheus", "group", "expr", "type"},
)
)
// Querier struct and methods
type Querier struct {
target string
name string
groupID int
numberOfErrors int
interval time.Duration
queries []Query
qtype string
start time.Duration
end time.Duration
step string
url string
}
type Query struct {
Expr string `yaml:"expr"`
}
type QueryGroup struct {
Name string `yaml:"name"`
Interval string `yaml:"interval"`
Queries []Query `yaml:"queries"`
Type string `yaml:"type,omitempty"`
Start string `yaml:"start,omitempty"`
End string `yaml:"end,omitempty"`
Step string `yaml:"step,omitempty"`
}
type BucketConfig struct {
Path string `yaml:"path"`
MinTime int64 `yaml:"minTime"`
MaxTime int64 `yaml:"maxTime"`
}
type bucketState struct {
bucketConfig *BucketConfig
}
func NewQuerier(groupID int, target, prNumber string, qg QueryGroup) *Querier {
qtype := qg.Type
if qtype == "" {
qtype = "instant"
}
start := durationSeconds(qg.Start)
end := durationSeconds(qg.End)
url := fmt.Sprintf("http://%s/%s/prometheus-%s/api/v1/query", domainName, prNumber, target)
if qtype == "range" {
url = fmt.Sprintf("http://%s/%s/prometheus-%s/api/v1/query_range", domainName, prNumber, target)
}
return &Querier{
target: target,
name: qg.Name,
groupID: groupID,
interval: durationSeconds(qg.Interval),
queries: qg.Queries,
qtype: qtype,
start: start,
end: end,
step: qg.Step,
url: url,
}
}
// Function to load `minTime` and `maxTime` from bucket-config.yml
func loadBucketConfig() (*BucketConfig, error) {
filePath := flag.String("bucketconfig-file", "/config/bucket-config.yml", "Path to the bucket configuration file")
flag.Parse()
_, err := os.Stat(*filePath)
if os.IsNotExist(err) {
return nil, fmt.Errorf("file not found: %s", *filePath)
}
data, err := os.ReadFile(*filePath)
if err != nil {
return nil, fmt.Errorf("error reading file: %w", err)
}
var bucketConfig BucketConfig
err = yaml.Unmarshal(data, &bucketConfig)
if err != nil {
return nil, fmt.Errorf("error parsing YAML: %w", err)
}
return &bucketConfig, nil
}
func setconfig(v *BucketConfig, err error) *bucketState {
// If there is an error in reading bucket-config.yml file then just return nil.
if err != nil {
return nil
}
return &bucketState{
bucketConfig: v,
}
}
func (q *Querier) run(wg *sync.WaitGroup, timeBound *bucketState) {
defer wg.Done()
fmt.Printf("Running querier %s %s for %s\n", q.target, q.name, q.url)
time.Sleep(20 * time.Second)
for {
start := time.Now()
// If timeBound is not nil, both the "absolute" and "current" blocks will run;
// otherwise, only the "current" block will execute. This execution pattern is used
// because if Downloaded block data is present, both the head block and downloaded block
// need to be processed consecutively.
runBlockMode := "current"
for _, query := range q.queries {
if runBlockMode == "current" {
q.query(query.Expr, "current", nil)
} else if runBlockMode == "absolute" {
q.query(query.Expr, "absolute", timeBound)
}
if runBlockMode == "current" && timeBound != nil {
runBlockMode = "absolute"
} else if timeBound != nil {
runBlockMode = "current"
}
}
wait := q.interval - time.Since(start)
if wait > 0 {
time.Sleep(wait)
}
}
}
func (q *Querier) query(expr string, timeMode string, timeBound *bucketState) {
queryCount.WithLabelValues(q.target, q.name, expr, q.qtype).Inc()
start := time.Now()
req, err := http.NewRequest("GET", q.url, nil)
if err != nil {
log.Printf("Error creating request: %v", err)
queryFailCount.WithLabelValues(q.target, q.name, expr, q.qtype).Inc()
return
}
qParams := req.URL.Query()
qParams.Set("query", expr)
if q.qtype == "range" {
// here query is for current block i.e headblock and its range query.
if timeMode == "current" {
qParams.Set("start", fmt.Sprintf("%d", int64(time.Now().Add(-q.start).Unix())))
qParams.Set("end", fmt.Sprintf("%d", int64(time.Now().Add(-q.end).Unix())))
qParams.Set("step", q.step)
} else {
// here query is for downloaded block and its range query.
endTime := time.Unix(0, timeBound.bucketConfig.MaxTime*int64(time.Millisecond))
qParams.Set("start", fmt.Sprintf("%d", int64(endTime.Add(-q.start).Unix())))
qParams.Set("end", fmt.Sprintf("%d", int64(endTime.Add(-q.end).Unix())))
qParams.Set("step", q.step)
}
} else if timeMode == "absolute" {
// here query is for downloaded block and its instant query.
blockinstime := time.Unix(0, timeBound.bucketConfig.MaxTime*int64(time.Millisecond))
qParams.Set("time", fmt.Sprintf("%d", int64(blockinstime.Unix())))
}
// here query is for current block and its instant query i.e no need to specify the instant time.
req.URL.RawQuery = qParams.Encode()
resp, err := http.DefaultClient.Do(req)
if err != nil {
log.Printf("Error querying Prometheus: %v", err)
queryFailCount.WithLabelValues(q.target, q.name, expr, q.qtype).Inc()
return
}
defer resp.Body.Close()
duration := time.Since(start)
queryDuration.WithLabelValues(q.target, q.name, expr, q.qtype).Observe(duration.Seconds())
if resp.StatusCode == http.StatusNotFound {
log.Printf("WARNING: GroupID#%d: Querier returned 404 for Prometheus instance %s.", q.groupID, q.url)
q.numberOfErrors++
if q.numberOfErrors >= max404Errors {
log.Fatalf("ERROR: GroupID#%d: Querier returned 404 for Prometheus instance %s %d times.", q.groupID, q.url, max404Errors)
}
} else if resp.StatusCode != http.StatusOK {
log.Printf("WARNING: GroupID#%d: Querier returned %d for Prometheus instance %s.", q.groupID, resp.StatusCode, q.url)
} else {
body, _ := io.ReadAll(resp.Body)
log.Printf("GroupID#%d: query %s %s, status=%d, size=%d, duration=%.3f", q.groupID, q.target, expr, resp.StatusCode, len(body), duration.Seconds())
}
}
func durationSeconds(s string) time.Duration {
if s == "" {
return 0
}
value, err := model.ParseDuration(s)
if err != nil {
log.Fatalf("%s", err.Error())
}
return time.Duration(value)
}
func main() {
if len(os.Args) < 3 {
fmt.Println("unexpected arguments")
fmt.Println("usage: <load_generator> <namespace> <pr_number>")
os.Exit(2)
}
prNumber := os.Args[2]
configPath := flag.String("config-file", "/etc/loadgen/config.yaml", "Path to the configuration file")
flag.Parse()
configFile, err := os.ReadFile(*configPath)
if err != nil {
fmt.Printf("Error reading config file: %v\n", err)
return
}
var config struct {
Querier struct {
Groups []QueryGroup `yaml:"groups"`
} `yaml:"querier"`
}
if err := yaml.Unmarshal(configFile, &config); err != nil {
log.Fatalf("Failed to parse config: %v", err)
}
fmt.Println("Loaded configuration")
var wg sync.WaitGroup
bucketConfig, err := loadBucketConfig()
timeBound := setconfig(bucketConfig, err)
for i, group := range config.Querier.Groups {
wg.Add(1)
go NewQuerier(i, "pr", prNumber, group).run(&wg, timeBound)
wg.Add(1)
go NewQuerier(i, "release", prNumber, group).run(&wg, timeBound)
}
prometheus.MustRegister(queryDuration, queryCount, queryFailCount)
http.Handle("/metrics", promhttp.Handler())
go func() {
log.Println("Starting HTTP server on :8080")
log.Fatal(http.ListenAndServe(":8080", nil))
}()
wg.Wait()
}