stacktach/etc/sample_stacktach_worker_config.json
Andrew Melton a709d957fd Adding queue_name to worker config.
The idea behind this is to allow consumption of notifications
    from a service that can only emit notifications on a
    single routing_key.
2013-07-30 11:51:55 -04:00

33 lines
991 B
JSON

{"deployments": [
{
"name": "east_coast.prod.global",
"durable_queue": false,
"rabbit_host": "10.0.0.1",
"rabbit_port": 5672,
"rabbit_userid": "rabbit",
"rabbit_password": "rabbit",
"rabbit_virtual_host": "/",
"exit_on_exception": true,
"queue_name": "stacktach",
"topics": {
"nova": ["monitor.info", "monitor.error"],
"glance": ["monitor_glance.info", "monitor_glance.error"]
}
},
{
"name": "east_coast.prod.cell1",
"durable_queue": false,
"rabbit_host": "10.0.1.1",
"rabbit_port": 5672,
"rabbit_userid": "rabbit",
"rabbit_password": "rabbit",
"rabbit_virtual_host": "/",
"exit_on_exception": false,
"queue_name": "stacktach",
"topics": {
"nova": ["monitor.info", "monitor.error"],
"glance": ["monitor_glance.info", "monitor_glance.error"]
}
}]
}