Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ID-1095 reduce bucket count by a third #152

Merged
merged 2 commits into from
Feb 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions src/main/java/bio/terra/common/opentelemetry/HttpMetricsAdvice.java
Original file line number Diff line number Diff line change
@@ -21,27 +21,27 @@
*/
final class HttpMetricsAdvice {

// every 10ms up to 500ms, then every 100ms up to 2s, then every 1s up to 10s, then every 5s up to
// 1m, then every 10s up to 3m
// every 10ms up to 100ms, then every 190ms up to 2s (190 ends neatly at 2s), then every 2s up to
// 10s, then every 30s up to 3m
static final List<Double> DURATION_SECONDS_BUCKETS =
// does all the math in terms of milliseconds, then converts to seconds, otherwise the
// precision is wonky
DoubleStream.iterate(
0.01,
d -> d < (double) 60 * 3,
10,
d -> d < 60000 * 3,
d -> {
if (d < .5) {
return d + 0.01;
if (d < 100) {
return d + 10;
}
if (d < 2) {
return d + 0.1;
if (d < 2000) {
return d + 190;
}
if (d < 10) {
return d + 1;
if (d < 10000) {
return d + 2000;
}
if (d < 60) {
return d + 5;
}
return d + 10;
return d + 20000;
})
.map(d -> d / 1000.0)
.boxed()
.toList();