search for: virdomainqemuagentcommand

Displaying 8 results from an estimated 8 matches for "virdomainqemuagentcommand".

2013 Aug 22
2
QemuAgentCommand API documents
Hi, I was going through the maillist[0] and found virDomainQemuAgentCommand() support function added to python module. I also checked the API documentation and didn't able to find any pointer for this particular function. Is API documentation[1] not updated with these function details yet or I am looking to a wrong place? Another question is I am using libvirt-1.0.5....
2018 Feb 28
3
Libvirt supported qemu-ga commands
Where can I find the full list of libvirt supported qemu-ga commands? The docs [0] imply virDomainQemuAgentCommand bypasses libvirt and is not recommended. I am looking to pass suspend/resume events from the host to the guest and then have the guest act on this internally. Your help is appreciated. [0] https://wiki.libvirt.org/page/Qemu_guest_agent
2013 Aug 22
1
Re: QemuAgentCommand API documents
...redhat.com> > To: "Praveen Kumar" <prkumar@redhat.com> > Cc: libvirt-users@redhat.com > Sent: Thursday, August 22, 2013 1:15:54 PM > Subject: Re: [libvirt-users] QemuAgentCommand API documents > > The API you're looking for is the one you've found: > virDomainQemuAgentCommand. As the second argument it accepts qemu guest > agent commands described in [3]. I'd also recommend reading [4]. Thanks for command reference, I am able to figure out that along with libvirt, libvirt_qemu also need to import because it will contain QmenuAgentCommand() function definition,...
2018 Mar 01
1
Re: Libvirt supported qemu-ga commands
Daniel P. Berrangé: > On Wed, Feb 28, 2018 at 11:13:46PM +0000, procmem wrote: >> Where can I find the full list of libvirt supported qemu-ga commands? >> The docs [0] imply virDomainQemuAgentCommand bypasses libvirt and is not >> recommended. >> >> I am looking to pass suspend/resume events from the host to the guest >> and then have the guest act on this internally. Your help is appreciated. > > By suspend/resume, do you mean ACPI S3 suspend-to-ram events ? >...
2013 Aug 22
0
Re: QemuAgentCommand API documents
On 22.08.2013 07:13, Praveen Kumar wrote: > Hi, > > > I was going through the maillist[0] and found virDomainQemuAgentCommand() support function added to python module. I also checked the API documentation and didn't able to find any pointer for this particular function. Is API documentation[1] not updated with these function details yet or I am looking to a wrong place? > > Another question is I am using libv...
2018 Nov 07
2
timeout on VM actions prone to hang
Hi fellow libvirt users, I'd like to ask, whether somebody possibly dealt with similar problem we're hitting.. Some of libvirt VM operations (ie fs freeze) are prone to hang for long time, in case the guest agent is in some bad state.. My question is, if it's possible to set some timeout for such operations, or we have to deal with it ie with separate thread and some timers? we're
2018 Mar 01
0
Re: Libvirt supported qemu-ga commands
On Wed, Feb 28, 2018 at 11:13:46PM +0000, procmem wrote: > Where can I find the full list of libvirt supported qemu-ga commands? > The docs [0] imply virDomainQemuAgentCommand bypasses libvirt and is not > recommended. > > I am looking to pass suspend/resume events from the host to the guest > and then have the guest act on this internally. Your help is appreciated. By suspend/resume, do you mean ACPI S3 suspend-to-ram events ? If so, that doesn't requ...
2018 Nov 07
0
Re: timeout on VM actions prone to hang
...d set timeout of X seconds, fs freeze might still time out. But given that Murphy's law are correct the freeze will finish right after timeout is reported. Problem with this is that domain is in different state than libvirt thinks. But specifically for qemu guest agent related issues, there is virDomainQemuAgentCommand() through which you can send 'guest-ping' to check that the agent is responsive. If it fails, then don't issue fs freeze API and vice versa. Michal