I would like to write some code to monitor events for domains running under QEMU, managed by libvirt. However, trying to register an event handler yields the following error:

>>> import libvirt
>>> conn = libvirt.openReadOnly('qemu:///system')
>>> conn.domainEventRegister(callback, None)
libvir: Remote error : this function is not supported by the connection driver: no event support

("callback" in this case is a stub function that simply prints its arguments.)

The examples I've been able to find regarding libvirt's event handling don't seem to be specific as to which backend hypervisors support which features. Is this expected to work for QEMU backends?

I'm running a Fedora 16 system, which includes libvirt 0.9.6 and qemu-kvm 0.15.1.

link|improve this question

69% accept rate
feedback

migrated from serverfault.com Jan 7 at 6:19

This question came from our site for system administrators and desktop support professionals.

1 Answer

up vote 1 down vote accepted

Make sure you have registered in the libvirt event loop (or set up your own) before registering for events.

There is a nice example of event handling shipped with the libvirt source (file is called event-test.py). I'm attaching an example based on that code;

import libvirt
import time
import threading

def callback(conn, dom, event, detail, opaque):
    print "EVENT: Domain %s(%s) %s %s" % (dom.name(), dom.ID(), event, detail)

eventLoopThread = None

def virEventLoopNativeRun():
    while True:
        libvirt.virEventRunDefaultImpl()

def virEventLoopNativeStart():
    global eventLoopThread
    libvirt.virEventRegisterDefaultImpl()
    eventLoopThread = threading.Thread(target=virEventLoopNativeRun, name="libvirtEventLoop")
    eventLoopThread.setDaemon(True)
    eventLoopThread.start()

if __name__ == '__main__':

    virEventLoopNativeStart()

    conn = libvirt.openReadOnly('qemu:///system')

    conn.domainEventRegister(callback, None)
    conn.setKeepAlive(5, 3)

    while conn.isAlive() == 1:
        time.sleep(1)

Good luck!

//Seto

link|improve this answer
Wow, I had given up hope on this one :). Thanks for your answer...I'll trying things out this week sometime and see how it works out. – larsks Jan 24 at 17:31
It took me a while to get around to this. What I've discovered is that libvirt 0.8.2 (RHEL5) does not have virEventRegisterDefaultImpl, and libvirt 0.9.6 (Fedora 16) does not have setKeepAlive. – larsks Mar 7 at 19:35
Hrm, I'm running libvirt 0.9.9 for the above example. Check your <libvirt>/examples/domain-events dir for sample code. – Setomidor Mar 8 at 7:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.