summaryrefslogtreecommitdiffstats
path: root/csit/compose-grafana.yml
diff options
context:
space:
mode:
authorJorge Hernandez <jorge.hernandez-herrero@att.com>2022-06-23 19:46:26 +0000
committerGerrit Code Review <gerrit@onap.org>2022-06-23 19:46:26 +0000
commite0b3d63d1767c454e2f7bf025cc1a592fe2eff33 (patch)
treeb61099d117bc1f631908b7076cf286dc1dd5f8dc /csit/compose-grafana.yml
parent9ada25c814b795cbd8cdf176a9d1dc1e32431f6b (diff)
parent1c98f1f3b837f93562c69c869b6b8ca33f766079 (diff)
Merge "SLA dashboard added to grafana setup"
Diffstat (limited to 'csit/compose-grafana.yml')
-rw-r--r--csit/compose-grafana.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/csit/compose-grafana.yml b/csit/compose-grafana.yml
index 3d925eb7..1f8b4095 100644
--- a/csit/compose-grafana.yml
+++ b/csit/compose-grafana.yml
@@ -261,3 +261,18 @@ services:
- ./metrics/dashboard.yaml:/etc/grafana/provisioning/dashboards/dashboard.yaml
- ./metrics/datasource.yaml:/etc/grafana/provisioning/datasources/datasource.yaml
- ./metrics/dashboards:/var/lib/grafana/dashboards
+ node-exporter:
+ image: prom/node-exporter:latest
+ container_name: 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.filesystem.mount-points-exclude=^/(sys|proc|dev|host|etc)($$|/)'
+ expose:
+ - 9100