-
Notifications
You must be signed in to change notification settings - Fork 14
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
Feature/robust-healt-check #5
base: master
Are you sure you want to change the base?
Feature/robust-healt-check #5
Conversation
…not. Updated endpoint to /metric
Does the metric endpoint add additional information compared to the info we can retrieve from app-http-logger? |
There's some overlap, but this does serve a different purpose. The metric endpoint is useful for real-time metric-based monitoring, such as our prometheus stack.
none of which are possible with app http logger The App http logger empowers analysis and search capabilities of http traffic and a such could give you similar metrics, but more in an after the fact manner. FYI I'm reworking this PR basing myself on #17 . I'm leaning towards directly exposing metrics in the openmetrics standard vs json though, since I see little value in using a non standard json format for the metrics. |
Introduced a metric endpoint. This endpoint can be integrated within Prometheus by following along with this gist.