[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[Libvir] python libvirt methods to virDomainBlockStats and virDomainInterfaceStats
- From: "Marco Sinhoreli" <msinhore gmail com>
- To: "Libvirt Lsit" <libvir-list redhat com>, et-mgmt-tools redhat com
- Cc:
- Subject: [Libvir] python libvirt methods to virDomainBlockStats and virDomainInterfaceStats
- Date: Wed, 26 Sep 2007 14:56:01 -0300
Hello all,
I'm using libvirt from cvs, and in libvirt.h there are
virDomainBlockStats, and virDomainInterfaceStats calls. I think it is
compiled into libvirtmod, then I'm trying to write two methods,
blockStats, and interfacesStats in the class virDomain at the
libvirt.py library file. I'm not a specialist in python programming
and it's not working.
Bellow folow the code I have been wrote:
def blockStats(self):
"""Block device stats for virDomainBlockStats """
ret = libvirtmod.virDomainBlockStats(self._o)
if ret is None: raise libvirtError ('virDomainBlockStats()
failed', dom=self)
return ret
def interfaceStats(self):
"""Network interface stats for virDomainInterfaceStats."""
ret = libvirtmod.virDomainInterfaceStats(self._o)
if ret is None: raise libvirtError ('virDomainInterfaceStats()
failed', dom=self)
return ret
Any help will be welcome.
Best regards
--
Marco Sinhoreli
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]