From e09d89cde7e09dd960c3a3f59cee04afdd7e494b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Qui=E9deville?= Date: Tue, 17 Aug 2010 16:51:54 +0200 Subject: [PATCH] Minor bugfix --- plugins/other/kvm_io | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/other/kvm_io b/plugins/other/kvm_io index 292c009d..8c62b44c 100755 --- a/plugins/other/kvm_io +++ b/plugins/other/kvm_io @@ -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)