Akka HTTP server metrics per endpoints #1274
Unanswered
AliAkbarMoeini
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi
I use Kamon for an Akka HTTP application with so many rest endpoints. I need to create dashboards for these HTTP Server Metrics per endpoints. so I need to add the path of the endpoints as a tag to each metric so that I can create reports per endpoint.
For example, my http_server_requests_total metric has these tags:
http_server_requests_total{port="",interface="",http_status_code="",component=""}
And I want Kamon to add the path(URL) of each request as a tag to these metrics. like below:
http_server_requests_total{port="",interface="",http_status_code="",component="", path=""}
is there any way to do that?
Beta Was this translation helpful? Give feedback.
All reactions