Server Status
PROMETHEUS DASHBOARD Include : http 200; 300; 400; 500 cpu usage and overall cpu utilization filter (clik + ctrl for multiple select) load average disk write/read network in/out host choice interval choice flat color ! and some informations in the top left corner of certain graph
PROMETHEUS DASHBOARD
Include :
- http 200; 300; 400; 500
- cpu usage and overall cpu utilization filter (clik + ctrl for multiple select)
- load average
- disk write/read
- network in/out
- host choice
- interval choice
- flat color !
- and some informations in the top left corner of certain graph
install promotheus
install Prometheus node Exporter
sudo useradd --no-create-home --shell /bin/false node_exporter
cd ~
curl -LO https://github.com/prometheus/node_exporter/releases/download/v0.15.1/node_exporter-0.15.1.linux-amd64.tar.gz
tar xvf node_exporter-0.15.1.linux-amd64.tar.gz
sudo cp node_exporter-0.15.1.linux-amd64/node_exporter /usr/local/bin
sudo chown node_exporter:node_exporter /usr/local/bin/node_exporter
rm -rf node_exporter-0.15.1.linux-amd64.tar.gz node_exporter-0.15.1.linux-amd64
sudo bash -c 'cat << EOF > /etc/systemd/system/node_exporter.service
[Unit]
Description=Node Exporter
Wants=network-online.target
After=network-online.target
[Service]
User=node_exporter
Group=node_exporter
Type=simple
ExecStart=/usr/local/bin/node_exporter
[Install]
WantedBy=multi-user.target
EOF'
Configurations Prometheus + Prometheus node Exporter
sudo bash -c 'cat << EOF > /etc/prometheus/prometheus.yml
global:
scrape_interval: 15s
scrape_configs:
- job_name: 'prometheus'
scrape_interval: 5s
static_configs:
- targets: ['localhost:9090']
- job_name: 'node_exporter'
scrape_interval: 5s
static_configs:
- targets: ['localhost:9100']
EOF'
Run Prometheus + Prometheus node Exporter
sudo systemctl daemon-reload
sudo systemctl start prometheus
sudo systemctl start node_exporter
Data source config
Collector config:
Upload an updated version of an exported dashboard.json file from Grafana
Revision | Description | Created | |
---|---|---|---|
Download |
Get this dashboard
Import the dashboard template
or