Skip to content

Commit 8cc2b6c

Browse files
hairyhendersonbwplotka
authored andcommitted
Fix double-counting bug in promhttp.InstrumentRoundTripperCounter (#1118)
Signed-off-by: Dave Henderson <[email protected]> Signed-off-by: Dave Henderson <[email protected]>
1 parent 64435fc commit 8cc2b6c

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

prometheus/promhttp/instrument_client.go

-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ func InstrumentRoundTripperCounter(counter *prometheus.CounterVec, next http.Rou
7878
1,
7979
rtOpts.getExemplarFn(r.Context()),
8080
)
81-
counter.With(labels(code, method, r.Method, resp.StatusCode, rtOpts.extraMethods...)).Inc()
8281
}
8382
return resp, err
8483
}

prometheus/promhttp/instrument_client_test.go

+14
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import (
2525
"time"
2626

2727
"github.com/prometheus/client_golang/prometheus"
28+
"github.com/prometheus/client_golang/prometheus/testutil"
2829

2930
dto "github.com/prometheus/client_model/go"
3031
"google.golang.org/protobuf/proto"
@@ -250,6 +251,19 @@ func TestClientMiddlewareAPI_WithRequestContext(t *testing.T) {
250251
t.Errorf("metric family %s must not be empty", mf.GetName())
251252
}
252253
}
254+
255+
// make sure counters aren't double-incremented (see #1117)
256+
expected := `
257+
# HELP client_api_requests_total A counter for requests from the wrapped client.
258+
# TYPE client_api_requests_total counter
259+
client_api_requests_total{code="200",method="get"} 1
260+
`
261+
262+
if err := testutil.GatherAndCompare(reg, strings.NewReader(expected),
263+
"client_api_requests_total",
264+
); err != nil {
265+
t.Fatal(err)
266+
}
253267
}
254268

255269
func TestClientMiddlewareAPIWithRequestContextTimeout(t *testing.T) {

0 commit comments

Comments
 (0)