Server Monitoring
Prometheus provides powerful metrics collection and alerting.
Install Node Exporter
# Download and install
wget https://github.com/prometheus/node_exporter/releases/download/v1.5.0/node_exporter-1.5.0.linux-amd64.tar.gz
tar xvfz node_exporter-*.tar.gz
# Run as service
./node_exporter
Prometheus Config
scrape_configs:
- job_name: 'node'
static_configs:
- targets: ['localhost:9100']
Discussion 0
No comments yet. Be the first to start the discussion!
Leave a Comment