Grafana has become the world’s most popular technology used to compose observability dashboards with everything from Prometheus & Graphite metrics, to logs and application data to power plants and beehives.
Installation Grafana in Docker
Docker(Alpine base image)
Lightweight Docker container image using an Alpine base image.
docker run -d --name=grafana -p 3000:3000 grafana/grafana
Docker(Ubuntu base image)
Alternative Docker container image for those who prefer an Ubuntu base image.
docker run -d --name=grafana -p 3000:3000 grafana/grafana:7.3.4-ubuntu
Read the Docker installation guide for more information.