Replies: 1 comment
-
Why use two clients and not just Kamon? Since I do not want to change the current implementation of all the metrics on this service, but create easy integration with Akka Actors module and Akka HTTP modules which Kamon provides, and remain the custom user metrics from Prometheus io client. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
build.sbt
:application.conf
:plugins.sbt
:ServiceApp
:PrometheusService
:KamonService
:The app is
Akka
based.When I'm running with the above setup, I'm getting the regular app metrics on http://0.0.0.0:9095/metrics and firing request, i manage to see my app metrics
BUT. I do NOT see any akka metrics.
When I'm changing the following configuration from
false
totrue
:and comment out the following line:
I get the Akka metrics but CANNOT find app (
brand_safety_num_of_requests_total
) metrics, i.e:Any ideas why they override each other? how can I fix it?
I want to send metrics from both clients to same ports.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions