monitor linux server using prometheus
run this command curl -LO https://github.com/prometheus/node_exporter/releases/latest/download/node_exporter-linux-amd64.tar.gz

### extract the downloaded terball done
### move the binary to a directory in your PATH
create a systemd service file for node exporter by running the command " sudo nano /etc/systemd/system/node_exporter.service
past in the code inside the file
[Unit] Description=Prometheus Node Exporter After=network.target
[Service] User=nobody ExecStart=/usr/local/bin/node_exporter Restart=always
[Install] WantedBy=multi-user.target
sudo systemctl daemon-reload sudo systemctl start node_exporter sudo systemctl enable node_exporter
confirm node exporter is accessible by visiting http://http://18.215.150.215:9100/
run this command sudo nano /etc/prometheus/prometheus.yml
run this command "sudo systemctl restart prometheus"
Access the prometheus web interface http://18.215.150.215:9090/
