Merge pull request #99381 from zshihang/kms
the last upperbound of kms latency metric is too small Kubernetes-commit: 74df637ac3c0579824958251ed14b15816ce5716
This commit is contained in:
commit
77e80f7781
|
|
@ -47,8 +47,8 @@ var (
|
||||||
Name: "transformation_duration_seconds",
|
Name: "transformation_duration_seconds",
|
||||||
Help: "Latencies in seconds of value transformation operations.",
|
Help: "Latencies in seconds of value transformation operations.",
|
||||||
// In-process transformations (ex. AES CBC) complete on the order of 20 microseconds. However, when
|
// In-process transformations (ex. AES CBC) complete on the order of 20 microseconds. However, when
|
||||||
// external KMS is involved latencies may climb into milliseconds.
|
// external KMS is involved latencies may climb into hundreds of milliseconds.
|
||||||
Buckets: metrics.ExponentialBuckets(5e-6, 2, 14),
|
Buckets: metrics.ExponentialBuckets(5e-6, 2, 25),
|
||||||
StabilityLevel: metrics.ALPHA,
|
StabilityLevel: metrics.ALPHA,
|
||||||
},
|
},
|
||||||
[]string{"transformation_type"},
|
[]string{"transformation_type"},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue