diff options
author | mh <mh@immerda.ch> | 2012-09-15 15:12:45 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2012-09-15 15:12:45 +0200 |
commit | d304394caaf15c0bc1f23c5e57fabcdffd86b90d (patch) | |
tree | 3a50a81d07522d8cd08926fa48caa2037db85139 | |
parent | f85fe9d9b94a1f30dda6637722542884194edd39 (diff) |
fix plugin
-rw-r--r-- | files/plugins/kvm_net | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/plugins/kvm_net b/files/plugins/kvm_net index c7aae2b..bcad719 100644 --- a/files/plugins/kvm_net +++ b/files/plugins/kvm_net @@ -39,7 +39,7 @@ graph_args --base 1024 print "%s_eth%s_in.type COUNTER" % (vms[pid], i) print "%s_eth%s_in.min 0" % (vms[pid],i) print "%s_eth%s_in.draw LINE2" % (vms[pid],i) - print "%s_eth%s_out.negative %s_in" % (vms[pid], i, vms[pid]) + print "%s_eth%s_out.negative %s_eth%s_in" % (vms[pid], i, vms[pid], i) print "%s_eth%s_out.label %s" % (vms[pid], i, vms[pid]) print "%s_eth%s_out.type COUNTER" % (vms[pid], i) print "%s_eth%s_out.min 0" % (vms[pid], i) |