2022-12-05 21:10:41 +00:00
|
|
|
alerting:
|
|
|
|
alertmanagers:
|
|
|
|
- static_configs:
|
|
|
|
- targets:
|
|
|
|
- alertmanager:9093
|
|
|
|
|
2023-02-19 18:31:52 +00:00
|
|
|
rule_files:
|
|
|
|
- /etc/prometheus/alert-rules.d/*.yml
|
|
|
|
|
2021-03-04 15:16:54 +00:00
|
|
|
scrape_configs:
|
2023-01-31 09:11:09 +00:00
|
|
|
- job_name: pve
|
2021-03-04 15:16:54 +00:00
|
|
|
static_configs:
|
|
|
|
- targets:
|
2023-01-31 09:11:09 +00:00
|
|
|
- "{{ pve_hosts.pve.ip }}"
|
|
|
|
metrics_path: /pve
|
|
|
|
relabel_configs:
|
|
|
|
- source_labels: [__address__]
|
|
|
|
target_label: __param_target
|
|
|
|
- source_labels: [__param_target]
|
|
|
|
target_label: instance
|
|
|
|
- target_label: __address__
|
|
|
|
replacement: proxmox_exporter:9221
|
2022-09-06 21:29:11 +01:00
|
|
|
|
2021-03-04 16:26:55 +00:00
|
|
|
- job_name: traefik
|
2021-03-05 14:27:33 +00:00
|
|
|
metric_relabel_configs:
|
|
|
|
- source_labels: [__name__]
|
|
|
|
regex: go_.+
|
|
|
|
action: drop
|
2021-03-04 16:26:55 +00:00
|
|
|
static_configs:
|
|
|
|
- targets:
|
2021-05-05 18:12:42 +01:00
|
|
|
- "{{ nebula.clients.walker.ip }}:8080"
|
2021-08-23 19:56:04 +01:00
|
|
|
- "{{ pve_hosts.docker.ip }}:8080"
|
2022-09-06 21:29:11 +01:00
|
|
|
|
|
|
|
- job_name: homeassistant
|
|
|
|
metrics_path: /api/prometheus
|
|
|
|
authorization:
|
|
|
|
credentials: "{{ homeassistant_token }}"
|
|
|
|
metric_relabel_configs:
|
|
|
|
- source_labels: [__name__]
|
2022-12-05 20:36:57 +00:00
|
|
|
regex: python_.+
|
2022-09-06 21:29:11 +01:00
|
|
|
action: drop
|
|
|
|
static_configs:
|
|
|
|
- targets: ["{{ pve_hosts.homeassistant.ip }}:8123"]
|
2022-12-04 22:11:49 +00:00
|
|
|
|
|
|
|
- job_name: blackbox_http_external
|
|
|
|
scrape_interval: 1m
|
|
|
|
metrics_path: /probe
|
|
|
|
params:
|
2022-12-06 10:04:23 +00:00
|
|
|
module: [http]
|
2022-12-04 22:11:49 +00:00
|
|
|
static_configs:
|
|
|
|
- targets:
|
|
|
|
- https://bin.theorangeone.net
|
2023-04-06 20:31:57 +01:00
|
|
|
- https://git.theorangeone.net/api/healthz
|
2022-12-04 22:11:49 +00:00
|
|
|
- https://grafana.jakehoward.tech/api/health
|
|
|
|
- https://homeassistant.jakehoward.tech
|
|
|
|
- https://intersect.jakehoward.tech
|
|
|
|
- https://mastodon.theorangeone.net/health
|
|
|
|
- https://matrix.jakehoward.tech:8448/_matrix/federation/v1/version
|
|
|
|
- https://matrix.jakehoward.tech/_matrix/federation/v1/version
|
|
|
|
- https://media.jakehoward.tech
|
|
|
|
- https://notes.theorangeone.net
|
|
|
|
- https://plausible.theorangeone.net
|
|
|
|
- https://recipes.jakehoward.tech
|
|
|
|
- https://theorangeone.net
|
|
|
|
- https://tt-rss.jakehoward.tech
|
|
|
|
- https://vaultwarden.jakehoward.tech/alive
|
2023-04-23 20:24:55 +01:00
|
|
|
- https://0rng.one
|
2022-12-04 22:11:49 +00:00
|
|
|
relabel_configs:
|
|
|
|
- source_labels: [__address__]
|
|
|
|
target_label: __param_target
|
|
|
|
- source_labels: [__param_target]
|
|
|
|
target_label: instance
|
|
|
|
- target_label: __address__
|
2022-12-06 10:04:23 +00:00
|
|
|
replacement: blackbox-external:9115
|
2022-12-04 22:11:49 +00:00
|
|
|
|
2023-01-31 14:29:27 +00:00
|
|
|
- job_name: blackbox_icmp
|
|
|
|
scrape_interval: 10m
|
|
|
|
metrics_path: /probe
|
|
|
|
params:
|
|
|
|
module: [icmp]
|
|
|
|
static_configs:
|
|
|
|
- targets:
|
|
|
|
- "{{ pve_hosts.pve.ip }}"
|
|
|
|
- "{{ pve_hosts.homeassistant.ip }}"
|
|
|
|
- 9.9.9.9
|
|
|
|
relabel_configs:
|
|
|
|
- source_labels: [__address__]
|
|
|
|
target_label: __param_target
|
|
|
|
- source_labels: [__param_target]
|
|
|
|
target_label: instance
|
|
|
|
- target_label: __address__
|
|
|
|
replacement: blackbox:9115
|
|
|
|
|
2022-12-04 22:11:49 +00:00
|
|
|
- job_name: blackbox_https_redir
|
|
|
|
scrape_interval: 10m
|
|
|
|
metrics_path: /probe
|
|
|
|
params:
|
|
|
|
module: [https_redir]
|
|
|
|
static_configs:
|
|
|
|
- targets:
|
|
|
|
- http://{{ hosts.casey_ip }}
|
|
|
|
relabel_configs:
|
|
|
|
- source_labels: [__address__]
|
|
|
|
target_label: __param_target
|
|
|
|
- source_labels: [__param_target]
|
|
|
|
target_label: instance
|
|
|
|
- target_label: __address__
|
2022-12-06 10:04:23 +00:00
|
|
|
replacement: blackbox-external:9115
|
2022-12-05 14:40:52 +00:00
|
|
|
|
|
|
|
- job_name: blackbox_healthcheck
|
|
|
|
scrape_interval: 10m
|
|
|
|
metrics_path: /probe
|
|
|
|
params:
|
2022-12-06 10:04:23 +00:00
|
|
|
module: [http]
|
2022-12-05 14:40:52 +00:00
|
|
|
static_configs:
|
|
|
|
- targets:
|
|
|
|
- https://hc-ping.com/{{ prometheus_healthcheck_uuid }}
|
|
|
|
relabel_configs:
|
|
|
|
- source_labels: [__address__]
|
|
|
|
target_label: __param_target
|
|
|
|
- source_labels: [__param_target]
|
|
|
|
target_label: instance
|
|
|
|
- target_label: __address__
|
|
|
|
replacement: blackbox:9115
|
|
|
|
|
|
|
|
- job_name: healthchecks
|
|
|
|
scheme: https
|
|
|
|
metrics_path: /projects/{{ healthchecks_project_uuid }}/metrics/{{ healthcheck_api_token }}
|
|
|
|
static_configs:
|
|
|
|
- targets: [healthchecks.io]
|
2023-01-31 09:11:09 +00:00
|
|
|
|
|
|
|
- job_name: node
|
|
|
|
metrics_path: /metrics
|
|
|
|
static_configs:
|
|
|
|
- targets:
|
|
|
|
- "{{ pve_hosts.pve.ip }}:9100"
|
2023-01-31 23:08:07 +00:00
|
|
|
- pi.hole:9100
|
2023-01-31 09:11:09 +00:00
|
|
|
metric_relabel_configs:
|
|
|
|
- source_labels: [__name__]
|
|
|
|
regex: go_.+
|
|
|
|
action: drop
|
2023-01-31 21:45:59 +00:00
|
|
|
|
|
|
|
- job_name: speedtest
|
2023-02-28 08:40:26 +00:00
|
|
|
scrape_interval: 1h
|
2023-01-31 21:45:59 +00:00
|
|
|
scrape_timeout: 2m
|
|
|
|
metrics_path: /probe
|
|
|
|
static_configs:
|
|
|
|
- targets:
|
|
|
|
- speedtest_exporter:9516
|
|
|
|
metric_relabel_configs:
|
|
|
|
- source_labels: [__name__]
|
|
|
|
target_label: __name__
|
|
|
|
replacement: speedtest_$1
|