Grafana
Overview
This installation happens on the
dsb-node-01
.
According to Grafana's Website, Grafana is an open-source platform for monitoring and observability. It allows you to query, visualize, alert on, and understand your metrics no matter where they are stored. Grafana provides a powerful and elegant way to create, explore, and share dashboards that integrate data from various sources, making it an essential tool for DevOps teams to monitor their infrastructure, applications, and services in real time.
Prerequisites
-
Install Docker
-
Install Docker using Snap:
sudo snap install docker
-
-
Create Docker Group and Add User to It
-
Create a Docker group and add your user to it:
sudo groupadd docker
sudo usermod -aG docker $USER
sudo reboot
-