monitoring: scrape cadvisor/nodeexporter/telegraf at /metrics not /

prometheus-scrape.metrics_path was '/' which made prometheus-docker-sd scrape
the HTML root and fail with 'INVALID is not a valid start token', leaving the
targets up=0. Fixes per-container (cadvisor) + host (node_exporter) metrics so
they can be wired into the DRPC insights MCP for per-node resource attribution.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-16 09:06:57 +00:00
parent 2761625c15
commit 6d65582af4
3 changed files with 5 additions and 3 deletions

View File

@@ -18,6 +18,7 @@ services:
- "prometheus-scrape.enabled=true"
- "prometheus-scrape.port=8080"
- "prometheus-scrape.job_name=cadvisor"
- "prometheus-scrape.metrics_path=/metrics"
- "org.label-schema.group=monitoring"
networks:
- monitoring

View File

@@ -183,7 +183,7 @@ services:
- "prometheus-scrape.enabled=true"
- "prometheus-scrape.port=9273"
- "prometheus-scrape.job_name=telegraf"
- "prometheus-scrape.metrics_path=/"
- "prometheus-scrape.metrics_path=/metrics"
cadvisor:
image: gcr.io/cadvisor/cadvisor
@@ -205,7 +205,7 @@ services:
- "prometheus-scrape.enabled=true"
- "prometheus-scrape.port=8080"
- "prometheus-scrape.job_name=cadvisor"
- "prometheus-scrape.metrics_path=/"
- "prometheus-scrape.metrics_path=/metrics"
nodeexporter:
image: prom/node-exporter
@@ -228,7 +228,7 @@ services:
- "prometheus-scrape.enabled=true"
- "prometheus-scrape.port=9100"
- "prometheus-scrape.job_name=nodeexporter"
- "prometheus-scrape.metrics_path=/"
- "prometheus-scrape.metrics_path=/metrics"
volumes:
prometheus_data:

View File

@@ -18,6 +18,7 @@ services:
- "prometheus-scrape.enabled=true"
- "prometheus-scrape.port=9100"
- "prometheus-scrape.job_name=nodeexporter"
- "prometheus-scrape.metrics_path=/metrics"
- "org.label-schema.group=monitoring"
networks:
- monitoring