grafana-docker-stack/README.md

1.0 KiB

grafana-docker-stack

For deploying Grafana, Prometheus and Node Exporter, make these steps:

  1. Clone repo
git clone https://github.com/digitalstudium/grafana-docker-stack.git
  1. Change configs if nececcery (at least configs/alertmanager.yml to configure notification channels)
  2. Deploy stack
docker stack deploy -c grafana-docker-stack/docker-compose.yml monitoring

That's it!

If you want to add more servers to prometheus, make these steps:

  1. Install node-exporter to each of these servers via these commands:
git clone https://github.com/digitalstudium/grafana-docker-stack.git
docker stack deploy -c grafana-docker-stack/node-exporter.yml node-exporter
  1. Add these servers to configs/prometheus/prometheus.yml file to - targets: ['node-exporter:9100'] list of - job_name: 'node-exporter' section, like - targets: ['node-exporter:9100', 'server1:9100', 'server2:9100', '...']
  2. Reload prometheus config via this command:
docker ps | grep prometheus | awk '{print $1}' | xargs docker kill -s SIGHUP