Table of contents
Grafana was first released in 2014.
Grafana is a multi-platform open-source analytics and interactive visualization web application.
It provides charts, graphs, and alerts for the web when connected to supported data sources.
It is expandable through a plug-in system.
End users can create complex monitoring dashboards using interactive query builders.
Why Grafana?
1. Dashboards that anyone can use
Not only do Grafana dashboards give insightful meaning to data collected from numerous sources, but you can also share the dashboards you create with other team members, allowing you to explore the data together. With Grafana, anyone can create and share dynamic dashboards to foster collaboration and transparency.
2. Flexibility and versatility
Translate and transform any of your data into flexible and versatile dashboards. Unlike other tools, Grafana allows you to build dashboards specifically for you and your team.
With advanced querying and transformation capabilities, you can customize your panels to create visualizations that are actually helpful for you.
3. Unify your data, not your database
Grafana doesn’t require you to ingest data to a backend store or vendor database. Instead, Grafana takes a unique approach to providing a “single-pane-of-glass” by unifying your existing data, wherever it lives.
4. Data everyone can see
Grafana was built on the principle that data should be accessible to everyone in your organization, not just the single Ops person.
By democratizing data, Grafana helps to facilitate a culture where data can easily be used and accessed by the people that need it.
Commands to Install Grafana
Update the whole System
sudo yum update -y
Install the package
wget
https://dl.grafana.com/oss/release/grafana-9.4.7-1.x86_64.rpm
Install Grafana
sudo yum install grafana-9.4.7-1.x86_64.rpm
Enable Grafana server
sudo systemctl enable grafana-server
Restart the server
sudo systemctl restart grafana-server
Add the Grafana port 3000 in the firewall
sudo firewall-cmd --add-port=3000/tcp --permanent
Reload the firewall
sudo firewall-cmd --reload
To access the Grafana GUI for further configuration, hit the URL: http://127.0.0.1:3000