Your RRD doesn't have enough data sources (it shows 2):
Code: Select all
[root@xid ~]# rrdtool info Process_sitescope.exe_en_TFM1246_NAGASAKI.rrd | grep ds
ds[1].index = 0
ds[1].type = "GAUGE"
ds[1].minimal_heartbeat = 8460
ds[1].min = NaN
ds[1].max = NaN
ds[1].last_ds = "11637.9"
ds[1].value = 6.9827400000e+04
ds[1].unknown_sec = 0
ds[2].index = 1
ds[2].type = "GAUGE"
ds[2].minimal_heartbeat = 8460
ds[2].min = NaN
ds[2].max = NaN
ds[2].last_ds = "1"
ds[2].value = 6.0000000000e+00
ds[2].unknown_sec = 0
The plugin is trying to insert 3 metrics into a 2 datasource RRD (which the RRD won't allow and the data insertion fails) so the plugin or options must have changed:
Code: Select all
'memory_usage'=13384.2MB;26000;30000 'cpu_usage'=124%;400;600 'num_process'=1;0;0
You'll either need to do this to add a datasource to the RRD:
https://support.nagios.com/kb/article/n ... g-149.html
Or delete/rename the backend RRD file:
Code: Select all
mv /usr/local/nagios/share/perfdata/TFM1246_NAGASAKI/Process_sitescope.exe_en_TFM1246_NAGASAKI.rrd /usr/local/nagios/share/perfdata/TFM1246_NAGASAKI/Process_sitescope.exe_en_TFM1246_NAGASAKI.rrd.OLD
That would rebuild it on the next check and graph properly going forward.