the last upperbound of kms latency metric is too small

Kubernetes-commit: 6d7c83f2cd19455107bc02bc98fed2296bb46dca
This commit is contained in:
Shihang Zhang 2021-02-23 14:19:25 -08:00 committed by Kubernetes Publisher
parent b522415643
commit 4a6863aa9a
1 changed files with 2 additions and 2 deletions

View File

@ -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"},