From 4a6863aa9ac041cbc3111ffea2cccb43f6f26d29 Mon Sep 17 00:00:00 2001 From: Shihang Zhang Date: Tue, 23 Feb 2021 14:19:25 -0800 Subject: [PATCH] the last upperbound of kms latency metric is too small Kubernetes-commit: 6d7c83f2cd19455107bc02bc98fed2296bb46dca --- pkg/storage/value/metrics.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/storage/value/metrics.go b/pkg/storage/value/metrics.go index 29dce7174..63ab526af 100644 --- a/pkg/storage/value/metrics.go +++ b/pkg/storage/value/metrics.go @@ -47,8 +47,8 @@ var ( Name: "transformation_duration_seconds", Help: "Latencies in seconds of value transformation operations.", // In-process transformations (ex. AES CBC) complete on the order of 20 microseconds. However, when - // external KMS is involved latencies may climb into milliseconds. - Buckets: metrics.ExponentialBuckets(5e-6, 2, 14), + // external KMS is involved latencies may climb into hundreds of milliseconds. + Buckets: metrics.ExponentialBuckets(5e-6, 2, 25), StabilityLevel: metrics.ALPHA, }, []string{"transformation_type"},