Skip to content

Commit

Permalink
feat(demo): add node exporter dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
ernado committed Dec 11, 2023
1 parent d416d30 commit 8f7fc8f
Show file tree
Hide file tree
Showing 3 changed files with 23,794 additions and 0 deletions.
15 changes: 15 additions & 0 deletions dev/local/ch-demo/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,21 @@ services:
- '--feature-gates=telemetry.useOtelForInternalMetrics'
- '--feature-gates=telemetry.useOtelWithSDKConfigurationForInternalTelemetry'

node-exporter:
image: prom/node-exporter
restart: unless-stopped
volumes:
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /:/rootfs:ro
command:
- '--path.procfs=/host/proc'
- '--path.rootfs=/rootfs'
- '--path.sysfs=/host/sys'
- '--collector.processes'
- '--web.max-requests=40'
- '--collector.filesystem.mount-points-exclude=^/(sys|proc|dev|host|etc)($$|/)'

grafana:
image: "grafana/grafana:10.0.0"
environment:
Expand Down
Loading

0 comments on commit 8f7fc8f

Please sign in to comment.