homelab/archive/2023.09.bxl-rpi/config/monitoring/prometheus.yaml

41 lines
1.1 KiB
YAML
Raw Permalink Normal View History

2023-04-06 16:32:48 +02:00
global:
scrape_interval: 60s # By default, scrape targets every 15 seconds.
2023-04-06 16:32:48 +02:00
# Attach these labels to any time series or alerts when communicating with
# external systems (federation, remote storage, Alertmanager).
external_labels:
monitor: 'monitor'
# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
- job_name: 'prometheus'
static_configs:
- targets: ['localhost:9090']
- job_name: "Docker Job"
static_configs:
- targets: ["host.docker.internal:9323"]
- job_name: 'cadvisor'
static_configs:
- targets: ['cadvisor:8080']
- job_name: 'node-exporter'
static_configs:
- targets: ['node-exporter:9100']
- job_name: 'treafik'
static_configs:
- targets: ['traefik:8080']
2023-04-28 23:29:02 +02:00
- job_name: 'authelia'
static_configs:
- targets: ['authelia:9959']
2023-05-25 14:33:42 +02:00
- job_name: 'mikrotik'
static_configs:
- targets: ['mikrotik:9436']