-
-
Notifications
You must be signed in to change notification settings - Fork 461
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
Prometheus monitoring integration #113
Comments
That would depend on what kind of monitoring you require. You can achieve this at multiple level, but basically programmatically or via standard HTTP logging already provided by The first one you would need to instrument Go code with Prometheus API client. I did a similar thing in the past for several metrics engines, such as InfluxDB. My approach was to write a custom This approach would require you to fork the project and maintain your own project. I don't have plans to overload Alternatively, the standard logging output approach would be the most convenient if you want to rely on the standard |
In case someone else is interested in this, I've written a simple prometheus exporter for imaginary. It only includes the metrics already available under |
Hey @h2non, |
For monitoring the performance in a Prometheus monitored environment the code needs to be instrumented.
What would you think about adding this? I'd like to contribute to this as well.
The text was updated successfully, but these errors were encountered: