Replies: 1 comment 4 replies
-
You can customize the aggregations used by a particular instrument today by using a View. If you wish to update your histogram bucket boundaries, that is also possible by using a View with a custom histogram configuration. Currently, this option is pre-stable, so we've put it in our |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I'm working on a project which uses opentelemetry and I'm working on sending metrics via its' instruments. Up to now I've done most of metrics with histograms and everything seemed fine, I didn't notice back then that values are changed artificially to match bucket boundaries, so when I was sending value equal 2137 I received 1000 at the backend which is great underestimation. Is there any workaround? Let's say I would like to measure time of task execution in gradle build. I thought about gauge but as I want every task to have different attributes (f.e. task name or project) I assume it is impossible to use gauge as gauge has attributes declared during building instrument (correct me if I'm wrong)? What instrument should I use in this case?
Beta Was this translation helpful? Give feedback.
All reactions