How to Setup a Grafana Dashboard Step-by-Step | Grafana Tutorial for Beginners

preview_player
Показать описание
In this video we show you how to install Grafana and create dashboards step-by-step.

Grafana is an open source platform that is used for data monitoring, analysis, and data visualization.

One of the major features of Grafana is it's ability to bring several different data sources together on a single dashboard.

Grafana allows you to represent data in different forms like, charts, graphs, and also allows you to send alerts.

Apart from that, it supports many OS's including Ubuntu and Windows. It also supports multiple data sources.

This video shows you how to download and install Grafana for Ubuntu 20.04.

- Below are the commands you can run in order to download and install Grafana for Ubuntu 20.04.

sudo apt update

sudo apt install grafana

sudo systemctl start grafana-server

sudo systemctl status grafana-server

sudo systemctl enable grafana-server

- Download and installation commands for influxDB for Ubuntu 20.04

source /etc/lsb-release

sudo apt-get update && sudo apt-get install influxdb

sudo systemctl start influxdb

This video also shows you an example of how you can add data sources and attach them to Grafana.

- Below is the code which you can use for your python file.

import pandas as pd
from influxdb import InfluxDBClient

client= InfluxDBClient (host= "localhost",port=8086)

json_body=[{
"measurement": "CovidMap",
"tags": {"country":row[0]},
"fields": {
"name":row[0],
"country":row[1],
"latitude":row[2],
"longitude":row[3],
"metric":row[4],

}
}]
print("done")


-------------------------------------------------------------------------------------------------------------------------

Be sure to leave any questions or comments below!

Рекомендации по теме
Комментарии
Автор

What is grafana
0:22
Why grafana
1:00
why we need continuous monitoring
1:17
why we choose grafana instead over tools
2:00
grafana is supported in all kind of systems
2:15
installing and configuring grafana
4:11
making a new database inside infux
6:56
activating database
7:40

Turge
Автор

When I chose the coordinates filed from Field Mapping property, the map didn't draw circles corresponding to each country. How can I do to display it?

phandc
Автор

which type of grafana are you using ?
open source or the cloud or the enterprise stack?

GayathriKatta-swhp
Автор

hi. off topic question: Which audio mic and software are you using to create this tutorial?

hussamcheema
Автор

Thanks for the explain to understanding of grafana working

g.s.r.
Автор

hello i cant run this with grafana and ifnfluxdb in docker
can you help?
Traceback (most recent call last):
File "map.py", line 2, in <module>
from influxdb import InfluxDBClient
ModuleNotFoundError: No module named 'influxdb'

samukarbrj
Автор

Visualization shows nothing on the new version of Grafana

Aymenadhami
Автор

This turned into an InfluxDB tutorial with a little Grafana sprinkled in

luisco
Автор

Sorry, perhaps it's just me but I think your beginners tutorial is a bit too complicated. I was kind of expecting you to use a very simple database like Sql Server or MySql and use one of the built in plugins.

christopherhorton
Автор

You took more time explaining influx db and data preparation instead of Grafana :( What will i get looking at your python code?

KanagaveluSugumar
Автор

You guys copied from edureka grafana tutorial? Or they copied yours? Both tutorial explain same and same resource they used.

dhananjayadn
Автор

We can achieve all of this using Kibana as well, right? So what's the point of using Grafana then?

umerkha
Автор

This is complete outdated, influxdb switched to 2.x and things became more wired.
Clicking buttons is easy, but editing queries by hand which are not working from this query editor is another thing!

alexanderbock
Автор

too many ads on this video man, too many ads.

greatwestern
Автор

What kind of psychopath names their database corona19

joshuarmost