First time here? Check out the FAQ!
2015-10-20 01:26:24 -0600 | received badge | ● Nice Question (source) |
2015-08-11 20:50:27 -0600 | received badge | ● Great Question (source) |
2014-09-04 10:53:18 -0600 | received badge | ● Taxonomist |
2014-06-18 02:59:35 -0600 | received badge | ● Notable Question (source) |
2014-06-18 02:59:35 -0600 | received badge | ● Famous Question (source) |
2014-06-18 02:59:35 -0600 | received badge | ● Popular Question (source) |
2013-10-30 04:59:20 -0600 | asked a question | what is the hostId parameter in server details? Hi, How can I match a hypervisor (IDs are integers: 1,2,3...) to a server? I can get the hypervisor name from the server details, but i'd like to get the ID of the hypervisor (host). I know I can do the opposite - get the servers of each hypervisor, but I wonder what the hostId is referencing. server details: {"server": {"status": "ACTIVE", "updated": "2013-10-29T12:32:20Z", "hostId": "380a3cb5901763eaca27cc2c93713d93b79c8fed0e8d926e25cfd64a", ... hypervisor details: { "hypervisor":{ "id":1, ... Thanks! |
2013-10-11 03:22:41 -0600 | received badge | ● Favorite Question (source) |
2013-07-02 08:26:39 -0600 | received badge | ● Good Question (source) |
2013-06-30 01:27:56 -0600 | received badge | ● Famous Question (source) |
2013-06-21 03:15:58 -0600 | commented answer | Nova/Quantum Notifications in RabbitMQ I am using it. really useful in understanding how everything connects. Should there be any difference in the configuration when setting the nova.conf on the compute node? |
2013-06-21 01:32:26 -0600 | commented answer | Nova/Quantum Notifications in RabbitMQ Thanks for the answer. This is exactly what i'm doing (just using the Java API). Perhaps I should mention that i'm using the latest devstack as an environment... I guess it's not an official OpenStack build. I will try with Grizzly. |
2013-06-20 05:22:15 -0600 | received badge | ● Notable Question (source) |
2013-06-18 03:54:24 -0600 | received badge | ● Popular Question (source) |
2013-06-17 06:39:07 -0600 | received badge | ● Nice Question (source) |
2013-06-17 01:54:49 -0600 | received badge | ● Student (source) |
2013-06-16 14:08:22 -0600 | received badge | ● Supporter (source) |
2013-06-16 14:07:42 -0600 | received badge | ● Editor (source) |
2013-06-16 08:30:31 -0600 | asked a question | Nova/Quantum Notifications in RabbitMQ Hi all, I'm trying to catch nova/quantum modules (and others later) notifications. What I would like to catch are events that indicate changes in instances and network:
The problem is that I don't catch any notification messages. I noticed that Nova doesn't send notifications.# to the nova exchange but to the default AMQP exchange. As an example, when I suspend/resume an instance, the only messages I get are requests from Nova and Quantum. I don't see any messages with event_type. I found the following documents: https://wiki.openstack.org/wiki/Oslo/Messaging https://wiki.openstack.org/wiki/SystemUsageData https://wiki.openstack.org/wiki/NotificationEventExamples and of course - http://docs.openstack.org/developer/nova/devref/rpc.html I am using the RabbitMQ API to query the exchanges/queues existing on the controller and bind a queue to each exchange. I am "listening" to the following exchanges (topic/fanout): nova, quantum, openstack, compute, q-agent, scheduler, conductor and I filter out the following methods: service_update, report_state, update_service_capabilities.
Thanks in advance! Tzafrir can't attach output - no karma! |