Skip to content

Commit ff5e4fb

Browse files
Change server ranking metric max to 20 (#124)
1 parent a66b186 commit ff5e4fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metrics/metrics.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ var (
8484
prometheus.HistogramOpts{
8585
Name: "locate_server_distance_ranking",
8686
Help: "A histogram of server selection rankings with respect to distance from the client.",
87-
Buckets: prometheus.LinearBuckets(0, 1, 1000),
87+
Buckets: prometheus.LinearBuckets(0, 1, 20),
8888
},
8989
[]string{"index"},
9090
)

0 commit comments

Comments
 (0)