node_exporter (new service): - Add services/node_exporter/docker-compose.yml matching solaria deployment (network_mode: host, pid: host, /:/host:ro,rslave mount) - Add services/node_exporter/service.yaml zigbee2mqtt chelsty-infra override: - Fix network_mode: host (mosquitto runs on host network, port 1883 on localhost) - Fix volume mount: ./configuration.yaml → absolute /opt/homelab/config/zigbee2mqtt/ (secrets stay in runtime config dir, never in Git) - Remove MQTT_USER/MQTT_PASSWORD (mosquitto uses allow_anonymous true) - Extend healthcheck start_period to 60s (z2m takes time on first start) chelsty-ha/services.yaml: - Remove node-agent entry entirely (never deployed, no plans to bootstrap now) - Keep homeassistant with monitor: false (no node-agent = no health events) supervisor: respect monitor: false in services.yaml - Skip action generation for services where monitor=false - Cleans up chelsty-ha entries from action queue without removing desired-state docs Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
404 B
YAML
18 lines
404 B
YAML
name: node_exporter
|
|
owner_node: vps
|
|
role: metrics-exporter
|
|
description: >
|
|
Prometheus Node Exporter — exposes host-level metrics (CPU, memory, disk,
|
|
network) for scraping by a Prometheus instance.
|
|
exposure: local-only
|
|
dependencies: []
|
|
restart_policy: unless-stopped
|
|
healthcheck:
|
|
type: http
|
|
endpoint: http://localhost:9100/metrics
|
|
interval: 30s
|
|
persistence:
|
|
paths: []
|
|
runtime:
|
|
env_vars: []
|