Replies: 1 comment 1 reply
-
The built-in Prometheus metric exporter exposes the metrics via a HTTP port, and you can collect it with some k8s annotations: spec:
template:
metadata:
annotations:
prometheus.io/path: /metrics
prometheus.io/port: "3030"
prometheus.io/scrape: "true" |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In my development environment I can read the metrics that I export to Prometheus. However, I would like an example of how to configure a service and other settings to be able to export in the k8s cluster. Can anyone help?
I am successfully running a Moleculer based project on a k8s cluster.
Thanks!!
Beta Was this translation helpful? Give feedback.
All reactions