1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{
"handlers_package": "discover.events",
"queues": [
{
"queue": "notifications.nova",
"exchange": "nova"
},
{
"queue": "notifications.neutron",
"exchange": "neutron"
},
{
"queue": "notifications.neutron",
"exchange": "dhcp_agent"
},
{
"queue": "notifications.info",
"exchange": "info"
}
],
"event_handlers": {
"compute.instance.create.end": "EventInstanceAdd",
"compute.instance.rebuild.end": "EventInstanceAdd",
"compute.instance.update": "EventInstanceUpdate",
"compute.instance.delete.end": "EventInstanceDelete",
"network.create.end": "EventNetworkAdd",
"network.update": "EventNetworkUpdate",
"network.update.end": "EventNetworkUpdate",
"network.delete": "EventNetworkDelete",
"network.delete.end": "EventNetworkDelete",
"subnet.create": "EventSubnetAdd",
"subnet.create.end": "EventSubnetAdd",
"subnet.update": "EventSubnetUpdate",
"subnet.update.end": "EventSubnetUpdate",
"subnet.delete": "EventSubnetDelete",
"subnet.delete.end": "EventSubnetDelete",
"port.create": "EventPortAdd",
"port.create.end": "EventPortAdd",
"port.update": "EventPortUpdate",
"port.update.end": "EventPortUpdate",
"port.delete": "EventPortDelete",
"port.delete.end": "EventPortDelete",
"router.create": "EventRouterAdd",
"router.create.end": "EventRouterAdd",
"router.update": "EventRouterUpdate",
"router.update.end": "EventRouterUpdate",
"router.delete": "EventRouterDelete",
"router.delete.end": "EventRouterDelete",
"router.interface.create": "EventInterfaceAdd",
"router.interface.create.end": "EventInterfaceAdd",
"router.interface.delete": "EventInterfaceDelete",
"router.interface.delete.end": "EventInterfaceDelete"
}
}
|