How to monitor Multiple Servers with Grafana on a Single Dashboard

Add multiple Servers to Grafana Single Dashboard

To monitor many servers from a Single Grafana Dashboard, we need to install the Telegraf Agent on each Server

We have already created the Database, User & Password on InfluxDB, if you did not watch that Video Check that out first. https://youtu.be/UQWOWtioopw

### Installing required packages
apt install curl gnupg gnupg1 gnupg2 net-tools software-properties-common

sudo curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -

source /etc/lsb-release
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list

sudo apt update

Install Telegraf Agent on each Server

### Install Telegraf Agent
sudo apt install telegraf -y

sudo systemctl start telegraf
sudo systemctl enable telegraf

##Check Status
sudo systemctl status telegraf

Config File: my_config_telegraf.conf

Generate configurations

Last updated