Skip to content

Commit

Permalink
Adjust memcached operation buckets (#2504)
Browse files Browse the repository at this point in the history
Signed-off-by: Kemal Akkoyun <[email protected]>
  • Loading branch information
kakkoyun authored Apr 23, 2020
1 parent bafd90e commit ebee995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cacheutil/memcached_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ func newMemcachedClient(
Name: "thanos_memcached_operation_duration_seconds",
Help: "Duration of operations against memcached.",
ConstLabels: prometheus.Labels{"name": name},
Buckets: []float64{0.001, 0.005, 0.01, 0.025, 0.05, 0.1, 0.2, 0.5, 1},
Buckets: []float64{0.001, 0.005, 0.01, 0.025, 0.05, 0.1, 0.2, 0.5, 1, 3, 6, 10},
}, []string{"operation"})
c.duration.WithLabelValues(opGetMulti)
c.duration.WithLabelValues(opSet)
Expand Down

0 comments on commit ebee995

Please sign in to comment.