Skip to content

Commit

Permalink
fix: use correct format for summary
Browse files Browse the repository at this point in the history
  • Loading branch information
wallet77 committed Dec 20, 2023
1 parent bcbdc23 commit 910ee39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/http_hook.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const init = function (client, config) {
const delta = process.hrtime(start)
const value = delta[0] + delta[1] / 1e9

routeSum.observe(value)
routeSum.observe(labels, value)

if (config.enableExemplars) {
routeHist.observe({ labels, value, exemplarLabels })
Expand Down

0 comments on commit 910ee39

Please sign in to comment.