I have this code that gives this error on Linux and will be grateful if you can help
When i run the above i get the below error
The code is intended to skip the below error
Appreciate if you can help me get a solution for this
Thanks
Code:
import rrdtool
try:
ret_asd = rrdtool.update(myfile.rrd,'N:%s:%s' %(metric1, metric2));
except rrdtool.error, e:
print e
Code:
except rrdtool.error, e: AttributeError: 'module' object has no attribute 'error'
Code:
illegal attempt to update using time 1363358441 when last update time is 1363358441 (minimum one second step)
Thanks