I enabled the debug log for one of my devices as suggested (it's not the same device as the one on my previous post because I tried to delete and recreate all graphs again for testing without success). Below is the result I got:
- 2017-08-21 11_56_38-View Cacti Log.png (112.49 KiB) Viewed 6277 times
Again for this specific device, the "Used space" graphs don't work. So I clicked on the number between brackets after "DS" from the debug log (e.g.: Graphs['DNS server - Used Space - Virtual memory'] DS[
3462]) and I turned on Data Source Debug Mode. I found the command RRDtool should run:
Code: Select all
Data Source Debug
/bin/rrdtool create \
/var/www/html/cacti/rra/111/3462.rrd \
--step 300 \
DS:hdd_used:GAUGE:600:0:U \
DS:hdd_total:GAUGE:600:0:U \
DS:hdd_percent:GAUGE:600:0:100 \
RRA:AVERAGE:0.5:1:600 \
RRA:AVERAGE:0.5:6:700 \
RRA:AVERAGE:0.5:24:775 \
RRA:AVERAGE:0.5:288:797 \
RRA:MAX:0.5:1:600 \
RRA:MAX:0.5:6:700 \
RRA:MAX:0.5:24:775 \
RRA:MAX:0.5:288:797 \
I tried to run this command in the terminal and it finally created the 3462.rrd file. So the command is correct and it can create everything needed. I just don't understand why it doesn't do it automatically. I run RRDtool 1.4.8.
Anyway, even with this file created, the graph still stays empty. I can receive some data when I turn on the realtime mode for this graph.
By any chance, do you have any other suggestion?