Monitoring Stack: add grafana service
This commit is contained in:
parent
a41ae0ebe9
commit
c52ee2456d
1 changed files with 19 additions and 0 deletions
|
@ -7,6 +7,25 @@ networks:
|
||||||
monitoring:
|
monitoring:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
##############################################
|
||||||
|
# Grafana
|
||||||
|
# Docs: https://grafana.com/docs/grafana/latest/
|
||||||
|
##############################################
|
||||||
|
grafana:
|
||||||
|
image: grafana/grafana:latest
|
||||||
|
environment:
|
||||||
|
GF_INSTALL_IMAGE_RENDERER_PLUGIN: "true"
|
||||||
|
GF_INSTALL_PLUGINS: "grafana-clock-panel,grafana-simple-json-datasource,grafana-piechart-panel,grafana-synthetic-monitoring-app,flant-statusmap-panel,grafana-worldmap-panel"
|
||||||
|
volumes:
|
||||||
|
- ${BASE_DIR:-.}/Grafana/Data:/var/lib/grafana
|
||||||
|
ports:
|
||||||
|
- 3000:3000
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- graphite
|
||||||
|
- prometheus
|
||||||
|
|
||||||
|
|
||||||
##############################################
|
##############################################
|
||||||
# Graphite
|
# Graphite
|
||||||
# URL: https://graphite.readthedocs.io/en/stable/
|
# URL: https://graphite.readthedocs.io/en/stable/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue