Edits the table of contents and overall structure of the StackLight InfluxDB-Grafana plugin for Fuel documentation. Change-Id: Icc9d73fca27513e8336cca1486bfc83634b5d116
1.6 KiB
Troubleshooting
If you get no data in Grafana, follow these troubleshooting tips.
First, check that the LMA Collector is running properly by following the LMA Collector troubleshooting instructions in the LMA Collector Fuel Plugin User Guide.
Check that the nodes are able to connect to the InfluxDB cluster via the VIP address (see above how to get the InfluxDB cluster VIP address) on port 8086:
root@node-2:~# curl -I http://<VIP>:8086/pingThe server should return a 204 HTTP status:
HTTP/1.1 204 No Content Request-Id: cdc3c545-d19d-11e5-b457-000000000000 X-Influxdb-Version: 0.10.0 Date: Fri, 12 Feb 2016 15:32:19 GMTCheck that InfluxDB cluster VIP address is up and running:
root@node-1:~# crm resource status vip__influxdb resource vip__influxdb is running on: node-1.test.domain.localCheck that the InfluxDB service is started on all nodes of the cluster:
root@node-1:~# service influxdb status influxdb Process is running [ OK ]If not, (re)start it:
root@node-1:~# service influxdb start Starting the process influxdb [ OK ] influxdb process was started [ OK ]Check that Grafana server is running:
root@node-1:~# service grafana-server status * grafana is runningIf not, (re)start it:
root@node-1:~# service grafana-server start * Starting Grafana ServerIf none of the above solves the problem, check the logs in
/var/log/influxdb/influxdb.logand/var/log/grafana/grafana.logto find out what might have gone wrong.