Skip to content

Commit

Permalink
Merge pull request kubernetes#14400 from stevekuznetsov/skuznets/deck…
Browse files Browse the repository at this point in the history
…-buckets

Increase the histogram bucket sizes for deck
  • Loading branch information
k8s-ci-robot committed Sep 20, 2019
2 parents 7f632c1 + 0e577d0 commit d724a57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prow/cmd/deck/main.go
Expand Up @@ -200,15 +200,15 @@ var (
prometheus.HistogramOpts{
Name: "deck_http_request_duration_seconds",
Help: "http request duration in seconds",
Buckets: []float64{0.005, 0.01, 0.025, 0.05, 0.1, 0.25, 0.5, 1, 2.5, 5, 10},
Buckets: []float64{0.005, 0.01, 0.025, 0.05, 0.1, 0.25, 0.5, 1, 2.5, 5, 10, 20},
},
[]string{"path", "method", "status"},
),
httpResponseSize: prometheus.NewHistogramVec(
prometheus.HistogramOpts{
Name: "deck_http_response_size_bytes",
Help: "http response size in bytes",
Buckets: []float64{16384, 32768, 65536, 131072, 262144, 524288, 1048576, 2097152, 4194304, 8388608, 16777216},
Buckets: []float64{16384, 32768, 65536, 131072, 262144, 524288, 1048576, 2097152, 4194304, 8388608, 16777216, 33554432},
},
[]string{"path", "method", "status"},
),
Expand Down

0 comments on commit d724a57

Please sign in to comment.