apiserver: introduce larger buckets for flowcontrol request_wait_duration_seconds bucket

Signed-off-by: Andrew Sy Kim <andrewsy@google.com>

Kubernetes-commit: 16fdd3e5eef452712165b7625b2fec078fa79b7b
This commit is contained in:
Andrew Sy Kim 2023-06-28 15:08:15 +00:00 committed by Kubernetes Publisher
parent 986c8832e5
commit d969ae0916
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ const (
var (
queueLengthBuckets = []float64{0, 10, 25, 50, 100, 250, 500, 1000}
requestDurationSecondsBuckets = []float64{0, 0.005, 0.02, 0.05, 0.1, 0.2, 0.5, 1, 2, 5, 10, 30}
requestDurationSecondsBuckets = []float64{0, 0.005, 0.02, 0.05, 0.1, 0.2, 0.5, 1, 2, 5, 10, 15, 30}
)
var registerMetrics sync.Once