Bandwidth monitoring on KVM

7,906

I recommend using libvirt for managing your KVM virtual machines. It makes the whole thing much easier than with just plain QEMU/KVM and provides also nice CPU, IO and network statistics. You will like tools such as virt-top and virt-manager which work on top of the libvirt framework.

To collect the virtual machine interface statistics from a script, you could use virsh command line interface to libvirt or some of the language APIs. The format of the virsh command is as follows:

virsh domifstat VMNAME IFNAME

..where VMNAME is the name of your virtual machine and IFNAME is the name of a (virtual) network interface. To find out a name of a network interface you can do:

virsh dumpxml VMNAME

In the resulting XML output, look for your network interface definition(s). Look for a line such as follows:

<target dev='vnet0'/>

In this case your IFNAME would be "vnet0".

Alternatively you could use a statistics collection daemon, such as collectd which has support for monitoring libvirt statistics, but a simple shell script which some times stores the output of "virsh domifstat" is maybe enough in this case.

Share:
7,906

Related videos on Youtube

Dropn Fbombs
Author by

Dropn Fbombs

Updated on September 18, 2022

Comments

  • Dropn Fbombs
    Dropn Fbombs almost 2 years

    Is it possible to monitor/limit bandwidth for KVM guests? I'd like to give people VMs on my server but I want to be careful not to go over my monthly bandwidth limit. The only places I can find that support this are 'cloud' frameworks, I'm guessing I'm either missing something simple in Linux, or I need to talk to a router above me (which I don't have access to).

  • Dropn Fbombs
    Dropn Fbombs almost 13 years
    I do use libvirt. Where do I find network statistics? I'm not installing virt-manager, it wants to install Gnome.
  • deltaray
    deltaray almost 12 years
    Thanks for posting this. Given the general lack of information like this on the net (or just the difficulty finding it), you'd think that 99% of the people using KVM don't have customers. :-P
  • Programster
    Programster over 9 years
    I found it useful to use a modified command from this answer to find the interface. virsh dumpxml VMNAME | grep "target dev"