From ebee995dc24987f58e43157d48ef51f451d66a4e Mon Sep 17 00:00:00 2001 From: Kemal Akkoyun Date: Thu, 23 Apr 2020 09:52:56 +0200 Subject: [PATCH] Adjust memcached operation buckets (#2504) Signed-off-by: Kemal Akkoyun --- pkg/cacheutil/memcached_client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cacheutil/memcached_client.go b/pkg/cacheutil/memcached_client.go index 29f124b6c3..99fc545786 100644 --- a/pkg/cacheutil/memcached_client.go +++ b/pkg/cacheutil/memcached_client.go @@ -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)