How Can I ingest multiple prometheus data and create visualization on grafana? #1656
Replies: 3 comments 1 reply
-
Hello, to ingest data from multiple Prometheus servers, you need to configure each Prometheus server to See this section of "Getting started with Grafana Mimir" tutorial: https://grafana.com/docs/mimir/latest/operators-guide/getting-started/#configure-prometheus-to-write-to-grafana-mimir |
Beta Was this translation helpful? Give feedback.
-
How I will differentiate the data on the Grafana dashboard for multiple Prometheus? |
Beta Was this translation helpful? Give feedback.
-
Typically you don't need to differentiate data based on Prometheus servers. They will simply forward metrics for jobs they know about, and individual metrics will have correct If you however DO need that, you can configure global:
external_labels:
prometheus: kubernetes And Prometheus running in VM has: global:
external_labels:
prometheus: vm then all data sent by these Prometheus servers will have either
Any Prometheus regardless of how it was started can be configured to remote-write to Mimir. (Not sure if that was your question) |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
All reactions