Fix time bucketing of response time (#1274)
This commit is contained in:
parent
16b4f4db3a
commit
98632cd4a6
1 changed files with 1 additions and 1 deletions
|
@ -103,4 +103,4 @@ func ClientWrite(rcode int) bool {
|
|||
const Namespace = "coredns"
|
||||
|
||||
// TimeBuckets is based on Prometheus client_golang prometheus.DefBuckets
|
||||
var TimeBuckets = prometheus.ExponentialBuckets(0.25, 2, 16) // from 0.25ms to 8 seconds
|
||||
var TimeBuckets = prometheus.ExponentialBuckets(0.00025, 2, 16) // from 0.25ms to 8 seconds
|
||||
|
|
Loading…
Add table
Reference in a new issue