first commit

This commit is contained in:
2025-09-18 14:37:09 -04:00
commit 0473fdb225
13 changed files with 481 additions and 0 deletions

12
monitoring/prometheus.yml Normal file
View File

@@ -0,0 +1,12 @@
global:
scrape_interval: 15s
scrape_configs:
- job_name: 'prometheus'
static_configs: [{ targets: ['prometheus:9090'] }]
- job_name: 'cadvisor'
static_configs: [{ targets: ['cadvisor:8080'] }]
- job_name: 'node'
static_configs: [{ targets: ['node-exporter:9100'] }]