1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-22 22:25:23 +00:00

Minor bugfix

This commit is contained in:
Rodolphe Quideville 2010-08-17 16:51:54 +02:00 committed by Steve Schnepp
parent dd37aaba17
commit e09d89cde7

View file

@ -31,12 +31,12 @@ graph_args --base 1024
for vm in vm_names:
print "%s_read.label %s" % (vm, vm)
print "%s_read.type GAUGE" % vm
print "%s_read.type COUNTER" % vm
print "%s_read.min 0" % vm
print "%s_read.draw LINE1" % vm
print "%s_read.info I/O used by virtual machine %s" % (vm, vm)
print "%s_write.label %s" % (vm, vm)
print "%s_write.type GAUGE" % vm
print "%s_write.type COUNTER" % vm
print "%s_write.min 0" % vm
print "%s_write.draw LINE1" % vm
print "%s_write.negative %s_read" % (vm, vm)