At the moment I have one Prometheus node which collects data from another server by Telegraf.
$ telegraf.conf
[[outputs.prometheus_client]]
listen = "telegrafclient:9273"
path = "/metrics"
$ prometheus.yml
scrape_configs:
- job_name: "prometheus"
static_configs:
- targets: ["telegrafclient:9273"]
So that I still have all metrics in case of the Prometheus server failure, I want to setup a second Prometheus server.
Is it possible to setup a second Prometheus node with the same configuration? Do both nodes get the same Telegraf data from the client?
Thank you very much!