Code Monkey home page Code Monkey logo

Comments (6)

zhenfdfs avatar zhenfdfs commented on June 9, 2024

I use kvm for hypervisor and the version of libvirt is 1.2.0

from node-libvirt.

c4milo avatar c4milo commented on June 9, 2024

I'm not sure I fully understand. What is the exact error you are getting?

from node-libvirt.

zhenfdfs avatar zhenfdfs commented on June 9, 2024

Thanks for c4milo 's reply. Let me have a detail describle. I run a short js script. All of the js code as follow:

1 var libvirt = require('libvirt');
2
3 var Hypervisor = libvirt.Hypervisor;
4 var hyper = new Hypervisor('qemu:///system');
5
6 var domain = hyper.lookupDomainById(173);
7
8 var event = { 'evtype': hyper.VIR_DOMAIN_EVENT_ID_REBOOT ,
9 'domain':domain,
10 'callback': function(hyp, dom, data) {
11 console.log('callback');
12 }
13 };
14 hyper.registerDomainEvent(event);

After run this js script , I get an error. The error msg as follow

libvirt: Remote Driver error : adding cb to list
/root/event_cb.js:14
hyper.registerDomainEvent(event);
^
[object Error]

from node-libvirt.

c4milo avatar c4milo commented on June 9, 2024

are you sure hyper.lookupDomainById(173); is returning something?

from node-libvirt.

atoy40 avatar atoy40 commented on June 9, 2024

First , you've to call libvirt.setupEvent() to start the event loop handling.
Then here is an example i'm using :

  libvirt.setupEvent();
  // self.connection is an Hypervisor instance.
  self.connection.registerDomainEvent({evtype: self.connection.VIR_DOMAIN_EVENT_ID_LIFECYCLE, callback: function(hv, dom, data) {
      console.log("[virt] state change "+ data.evtype + " " + data.detail);
      var id = dom.getUUID();
      switch(data.evtype) {
        case 0: // defined
          break;
        case 1: // undef
          break;
        case 2: // started
          break;
        case 5:
            break;
        default:
          break;
      }
    }});

Hope it helps

Anthony.

from node-libvirt.

mbroadst avatar mbroadst commented on June 9, 2024

closing as it is no longer relevant to the current codebase/implementation. Will reopen if @zhenfdfs chimes in

from node-libvirt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.