Commit 49e394e1 by Carl Bergquist Committed by GitHub

instrumentation: make the first database histogram bucket smaller (#30995)

Signed-off-by: bergquist <carl.bergquist@gmail.com>
parent 3a905847
......@@ -27,7 +27,7 @@ func init() {
Namespace: "grafana",
Name: "database_queries_duration_seconds",
Help: "Database query histogram",
Buckets: prometheus.ExponentialBuckets(0.0001, 4, 9),
Buckets: prometheus.ExponentialBuckets(0.00001, 4, 10),
}, []string{"status"})
prometheus.MustRegister(databaseQueryHistogram)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment