...
Unfortunately, for some reasons one of the file is missing. In that case it is the .rrd file. So to make the graphs working again, you need to find all the .info files with a missing .rrd file and to delete them manually (do an omd stop beforehand!):
Code Block | ||||
---|---|---|---|---|
| ||||
OMD[mysite]:~$ for i in $(find ~/var/check_mk/rrd -name *.info); do test -e ${i%info}rrd || echo $i; done /omd/sites/mysite/var/check_mk/rrd/<HOSTNAME>/PING.info /omd/sites/mysite/var/check_mk/rrd/<HOSTNAME>/CPU_Utilization_Mgmt_CPU.info /omd/sites/mysite/var/check_mk/rrd/<HOSTNAME>/CPU_Utilization_Packet_CPU_1.info /omd/sites/mysite/var/check_mk/rrd/<HOSTNAME>/CPU_Utilization_Packet_CPU_0.info |
...