-
Notifications
You must be signed in to change notification settings - Fork 330
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
Add async/callback mode to instruments? #702
Comments
I have same requirement, to implement sth like GaugeAdapter to collect metric from our internal statistics data on demand. |
Finally I implemented simple customized registry to do this job:
But it's worth that opentelemetry-cpp provides this feature officially. |
We're not using otel-cpp for various reasons, instead preferring to use prometheus-cpp directly. I implemented this in a fork as zeek@2fec720, but never got around to opening a PR for it. I agree that it's good for otel-cpp to provide this functionality directly themselves as well, since it has more uses there than just with Prometheus. |
I'd like to propose a new feature for prometheus-cpp that would add an async or callback mode to the instrument types. This would allow a user to add a callback method (such as a
std::function
) to an instrument. The callback would be called duringCollect()
to set the value of the instrument before it’s exported to prometheus. The difference here with normal operation is that it avoids needing to directly record a value periodically, and lets the prometheus export set it only when it’s actually needed.Does this seem like something worthwhile to add? I don’t mind doing the work, but I just wanted to gauge the interest before I got started on it.
If you need a (possibly overly-complicated) example, opentelemetry-cpp has a similar feature in their “Observable” instruments.
The text was updated successfully, but these errors were encountered: