We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13ff0af commit 123250dCopy full SHA for 123250d
internal/ct/handlers.go
@@ -89,9 +89,11 @@ func setupMetrics() {
89
metric.WithDescription("CT HTTP responses"),
90
metric.WithUnit("{response}")))
91
92
+ // TODO(phboneff): switch back to s, in Tessera as well.
93
reqDuration = mustCreate(meter.Float64Histogram("tesseract.http.request.duration",
94
metric.WithDescription("CT HTTP response duration"),
- metric.WithUnit("s")))
95
+ metric.WithUnit("ms"),
96
+ metric.WithExplicitBucketBoundaries(otel.LatencyHistogramBuckets...)))
97
}
98
99
// entrypoints is a list of entrypoint names as exposed in statistics/logging.
0 commit comments