Skip to content

Commit

Permalink
Fix a bug in metrics (#171)
Browse files Browse the repository at this point in the history
Fix a missing label
  • Loading branch information
linuskendall authored Oct 14, 2024
1 parent e10d379 commit a3c49c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metrics/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ var CarLookupHistogram = promauto.NewHistogramVec(
Help: "Car lookup latency",
Buckets: latencyBuckets,
},
[]string{"car", "is_remote"},
[]string{"car", "is_remote", "is_split_car"},
)

var latencyBuckets = []float64{
Expand Down

0 comments on commit a3c49c6

Please sign in to comment.