-
Notifications
You must be signed in to change notification settings - Fork 157
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
Change units of histogram metrics from nanoseconds to seconds #520
Comments
joshua-spacetime
added a commit
that referenced
this issue
Nov 3, 2023
The default prometheus histogram buckets are meant to be interpreted as f64 seconds. Because previously we were using nanosecond units, all observations were being placed in the last (+inf) bucket. This change was made to avoid modifying the default bucket specification. Fixes #520.
4 tasks
joshua-spacetime
added a commit
that referenced
this issue
Nov 3, 2023
Fixes #520. The default prometheus histogram buckets are meant to be interpreted as f64 seconds. Because previously we were using nanosecond units, all observations were being placed in the last (+inf) bucket. This change was made to avoid modifying the default bucket specification.
joshua-spacetime
added a commit
that referenced
this issue
Nov 4, 2023
Fixes #520. The default prometheus histogram buckets are meant to be interpreted as f64 seconds. Because previously we were using nanosecond units, all observations were being placed in the last (+inf) bucket. This change was made to avoid modifying the default bucket specification.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The default Prometheus histogram buckets assume seconds represented as an f64.
The text was updated successfully, but these errors were encountered: