Hi fritz,

By any chance did you set your datasource type to COUNTER?

I'm able to monitor this xml rpc server without any problems at all:

# start script
from SimpleXMLRPCServer import SimpleXMLRPCServer

def load():
   return float(open('/proc/loadavg').read().split()[0])

s = SimpleXMLRPCServer( ('', 1234) )
s.register_function(load, 'load')
s.serve_forever()
# end script

-Eric

Fritz wrote:
On Thursday 14 September 2006 13:38, Fritz wrote:
alright somehow using an xmlrpc datasource causes zenoss to create a malformed rrd file wich always updates with 0, regardless wich value you specify. why that's so i havent figured out yet, but it did work if i just copied over another rrd file. so probably the creation command for xmlrpc needs some tweaking?

fritz
_______________________________________________
zenoss-users mailing list
[email protected]
http://lists.zenoss.org/mailman/listinfo/zenoss-users


_______________________________________________
zenoss-users mailing list
[email protected]
http://lists.zenoss.org/mailman/listinfo/zenoss-users

Reply via email to