Files
homelab/monitoring/prometheus/prometheus.yml
Jordan Ramos e08951de21 feat(openclaw): deploy OpenClaw AI chatbot gateway on VM 120
- Add Docker Compose configs with security hardening (cap_drop ALL, non-root, read-only FS)
- Add Prometheus node_exporter scrape target for 192.168.2.120:9100
- Update services/README.md, INDEX.md, and CLAUDE_STATUS.md with VM 120
- Image pinned to v2026.2.1 (patches CVE-2026-25253)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-03 18:14:58 -07:00

26 lines
640 B
YAML

scrape_configs:
- job_name: 'pve'
static_configs:
- targets:
- 192.168.2.100 # Proxmox VE Node
metrics_path: /pve
params:
module: [default]
cluster: ['1']
node: ['1']
relabel_configs:
- source_labels: [__address__]
target_label: __param_target
- source_labels: [__param_target]
target_label: instance
- target_label: __address__
replacement: 192.168.2.114:9221 #PVE Exporter Address
- job_name: 'openclaw-node'
static_configs:
- targets:
- 192.168.2.120:9100
labels:
instance: openclaw
vm_id: '120'