grafana-dashboards/README.md

88 lines
1.8 KiB
Markdown
Raw Normal View History

2017-07-27 08:51:35 -07:00
# Grafana Dashboards
2017-04-11 23:48:47 -07:00
Grafana dashboards
2017-07-27 08:51:35 -07:00
### Node Exporter Full
For node_exporter
Monitor Linux system.
2017-07-27 08:42:31 -07:00
Only requires the default job_name: node, add as many targets as you need in '/etc/prometheus/prometheus.yml'.
2017-07-27 08:41:22 -07:00
```
- job_name: node
static_configs:
- targets: ['localhost:9100']
2017-07-27 08:41:22 -07:00
```
2017-07-27 08:51:35 -07:00
By default, not all values from vmstat, netstat and interrupts, are exported by prometheus-node-exporter, so some graphs are empty. For get a fully working dashboard, be sure to start the process with this arguments:
```
--collector.netstat.fields=(.*) --collector.vmstat.fields=(.*) --collector.interrupts
```
In a Debian system, add them to the startup configuration file located in '/etc/default/prometheus-node-exporter'.
Notes:
For prometheus-node-expter v.0.16 or older, use node-exporter-full-old.json
2017-09-15 08:41:57 -07:00
Thanks to the PCP project for document the values reported by the kernel in /proc (in their /pmdas/linux/help src file mainly). Url --> http://pcp.io
2017-07-27 08:51:35 -07:00
2018-03-24 01:39:02 -07:00
### Node Exporter FreeBSD
For node_exporter in FreeBSD system
Monitor FreeBSD system.
2018-03-24 01:39:02 -07:00
Only requires a configured target under any job_name.
2017-07-27 08:51:35 -07:00
### Haproxy Full
For haproxy_exporter
Monitor Haproxy service.
2017-07-27 08:51:35 -07:00
Only requires a configured target under any job_name.
### Haproxy 2.0 Full
For Haproxy compiled with Prometheus support
Monitor Haproxy service direct.
Only requires a configured target under any job_name.
2018-03-24 01:39:02 -07:00
### Apache Full
2017-09-15 08:41:57 -07:00
2018-03-24 01:39:02 -07:00
For apache_exporter
2017-09-15 08:41:57 -07:00
Monitor Apache service.
2017-09-15 08:41:57 -07:00
Only requires a configured target under any job_name.
### NFS Full
For node_exporter
Monitor all NFS and NFSd exported values.
Check that the process was started with the arguments "--collector.nfs" and "--collector.nfsd".
The same as Node Exporter Full. Only requires the default job_name: node, add as many targets as you need in '/etc/prometheus/prometheus.yml'.