From de9a7180c36f60590dbba86dc283ad09c0f1cc9c Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Thu, 23 Oct 2008 13:37:10 +0200 Subject: use LINE1 draw type for nicer graphs --- libvirt-blkstat | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libvirt-blkstat') diff --git a/libvirt-blkstat b/libvirt-blkstat index 0003754..c88d8a4 100644 --- a/libvirt-blkstat +++ b/libvirt-blkstat @@ -36,10 +36,12 @@ graph_info This graph shows the block device I/O of the virtual machines""" print "%s_read.type DERIVE" % canon(name) print "%s_read.min 0" % canon(name) print "%s_read.graph no" % canon(name) + print "%s_read.draw LINE1" % canon(name) print "%s_write.label %s" % (canon(name), name) print "%s_write.type DERIVE" % canon(name) print "%s_write.min 0" % canon(name) print "%s_write.negative %s_read" % (canon(name), canon(name)) + print "%s_write.draw LINE1" % canon(name) def get_disks(dom): xml = dom.XMLDesc(0) -- cgit v1.2.3