@@ -18,37 +18,39 @@ func (fn RoundTripperFunc) RoundTrip(req *http.Request) (*http.Response, error)
18
18
return fn (req )
19
19
}
20
20
21
- func resetMetrics () {
21
+ func resetMetrics () * prometheus.Registry {
22
+ //TODO: clean up this massive hack...
22
23
reg := prometheus .NewRegistry ()
23
24
prometheus .DefaultRegisterer = reg
24
25
prometheus .DefaultGatherer = reg
25
26
initMetrics ()
27
+ return reg
26
28
}
27
29
28
30
func TestHedging (t * testing.T ) {
29
- resetMetrics ()
31
+ reg := resetMetrics ()
30
32
cfg := & Config {
31
33
At : time .Duration (1 ),
32
34
UpTo : 3 ,
33
35
MaxPerSecond : 1000 ,
34
36
}
35
37
count := atomic .NewInt32 (0 )
36
- client , err := cfg .Client (& http.Client {
38
+ client , err := cfg .ClientWithRegisterer (& http.Client {
37
39
Transport : RoundTripperFunc (func (_ * http.Request ) (* http.Response , error ) {
38
40
count .Inc ()
39
41
time .Sleep (200 * time .Millisecond )
40
42
return & http.Response {
41
43
StatusCode : http .StatusOK ,
42
44
}, nil
43
45
}),
44
- })
46
+ }, reg )
45
47
if err != nil {
46
48
t .Fatal (err )
47
49
}
48
50
_ , _ = client .Get ("http://example.com" )
49
51
50
52
require .Equal (t , int32 (3 ), count .Load ())
51
- require .NoError (t , testutil .GatherAndCompare (prometheus . DefaultGatherer ,
53
+ require .NoError (t , testutil .GatherAndCompare (reg ,
52
54
strings .NewReader (`
53
55
# HELP hedged_requests_rate_limited_total The total number of hedged requests rejected via rate limiting.
54
56
# TYPE hedged_requests_rate_limited_total counter
@@ -61,29 +63,29 @@ hedged_requests_total 2
61
63
}
62
64
63
65
func TestHedgingRateLimit (t * testing.T ) {
64
- resetMetrics ()
66
+ reg := resetMetrics ()
65
67
cfg := & Config {
66
68
At : time .Duration (1 ),
67
69
UpTo : 20 ,
68
70
MaxPerSecond : 1 ,
69
71
}
70
72
count := atomic .NewInt32 (0 )
71
- client , err := cfg .Client (& http.Client {
73
+ client , err := cfg .ClientWithRegisterer (& http.Client {
72
74
Transport : RoundTripperFunc (func (_ * http.Request ) (* http.Response , error ) {
73
75
count .Inc ()
74
76
time .Sleep (200 * time .Millisecond )
75
77
return & http.Response {
76
78
StatusCode : http .StatusOK ,
77
79
}, nil
78
80
}),
79
- })
81
+ }, reg )
80
82
if err != nil {
81
83
t .Fatal (err )
82
84
}
83
85
_ , _ = client .Get ("http://example.com" )
84
86
85
87
require .Equal (t , int32 (2 ), count .Load ())
86
- require .NoError (t , testutil .GatherAndCompare (prometheus . DefaultGatherer ,
88
+ require .NoError (t , testutil .GatherAndCompare (reg ,
87
89
strings .NewReader (`
88
90
# HELP hedged_requests_rate_limited_total The total number of hedged requests rejected via rate limiting.
89
91
# TYPE hedged_requests_rate_limited_total counter
0 commit comments