Self Monitoring

The easiest thing to monitor with Prometheus is Prometheus itself:

scrape_configs:
  - job_name: prometheus
    static_configs:
    - targets: ['localhost:9090']

In addition to each Prometheus monitoring itself, you'll usually also want to have a Prometheus monitoring all your other Prometheus servers.

Complete and Continue