Hello guys,
i have a problem with our NAS here on work, which isn´t generating the graphs it should with rrd.
Everytime i hit the update button in the WebUI, i get something like this
Code
Apr 30 13:30:01 SERVER rrdcached[6918]: queue_thread_main: rrd_update_r (/var/lib/rrdcached/db/localhost/rrdcached/operations-write-data_sets.rrd) failed with status -1. (/var/lib/rrdcached/db/localhost/rrdcached/operations-write-data_sets.rrd: illegal attempt to update using time 1525087482 when last update time is 1543947137 (minimum one second step))
Apr 30 13:30:01 SERVER rrdcached[6918]: queue_thread_main: rrd_update_r (/var/lib/rrdcached/db/localhost/rrdcached/operations-write-updates.rrd) failed with status -1. (/var/lib/rrdcached/db/localhost/rrdcached/operations-write-updates.rrd: illegal attempt to update using time 1525087482 when last update time is 1543947137 (minimum one second step))
Apr 30 13:30:01 SERVER rrdcached[6918]: queue_thread_main: rrd_update_r (/var/lib/rrdcached/db/localhost/rrdcached/queue_length.rrd) failed with status -1. (/var/lib/rrdcached/db/localhost/rrdcached/queue_length.rrd: illegal attempt to update using time 1525087482 when last update time is 1543947137 (minimum one second step))
I have googled around but couldn´t find any helpful information about this, besides this ( https://emacstragic.net/2012/0…update-using-time-errors/ ). But that didn´t helped me either.
My collectd.conf looks like this now:
Code
PIDFile "/var/run/collectd.pid"
Hostname "localhost"
FQDNLookup true
LoadPlugin syslog
<Plugin syslog>
LogLevel info
</Plugin>
LoadPlugin rrdcached
<Plugin rrdcached>
DaemonAddress "unix:/var/run/rrdcached.sock"
DataDir "/var/lib/rrdcached/db/"
CreateFiles true
CollectStatistics true
</Plugin>
LoadPlugin unixsock
<Plugin unixsock>
SocketFile "/var/run/collectd.socket"
SocketGroup "root"
SocketPerms "0660"
</Plugin>
LoadPlugin cpu
LoadPlugin df
<Plugin df>
MountPoint "/"
MountPoint "/srv/dev-disk-by-id-md-name-s070-nas-RAID1"
IgnoreSelected false
</Plugin>
LoadPlugin interface
<Plugin interface>
Interface "eth0"
IgnoreSelected false
</Plugin>
LoadPlugin load
LoadPlugin memory
Display More