add exporters

This commit is contained in:
Matt Reeves 2024-10-13 23:31:21 -04:00
parent b205a8ba70
commit 194e640d2a
2 changed files with 31 additions and 0 deletions

View file

@ -54,6 +54,9 @@ jobs:
cf)
target_host="cf.lan"
;;
exporters)
target_host="all"
;;
jellyfin)
target_host="jf.lan"
;;

View file

@ -0,0 +1,28 @@
---
services:
node_exporter:
image: quay.io/prometheus/node-exporter:v1.8.2
container_name: node_exporter
command: "--path.rootfs=/host"
ports:
- 9100:9100
pid: host
restart: unless-stopped
volumes:
- /:/host:ro,rslave
cadvisor:
image: gcr.io/cadvisor/cadvisor:v0.50.0
container_name: cadvisor
ports:
- 9101:8080
volumes:
- /:/rootfs:ro
- /run:/run:ro
- /sys:/sys:ro
- /var/lib/docker/:/var/lib/docker:ro
- /dev/disk/:/dev/disk:ro
devices:
- /dev/kmsg
privileged: true
restart: unless-stopped