rabbitmq-zabbix
rabbitmq-zabbix copied to clipboard
Zabbix RabbitMQ Configuration
We have a problem with zabbix sender if name of a queue containing space and comma characters like "Queue, Name". According to https://www.rabbitmq.com/queues.html it's allowed. According to https://www.zabbix.com/documentation/3.4/manpages/zabbix_sender > Double-quote...
Hello! Please add rabbitmq vhost selection. My variant in this request. If this variant is not good - please tell me why
Hello, I need to filter several queues starting with specific string so I modified your code a bit: Removed this line: https://github.com/jasonmcintosh/rabbitmq-zabbix/blob/fe59d5a5c3d7cce3a0fdc2feb5f9b37eba498e05/scripts/rabbitmq/api.py#L50 And replaced this line: https://github.com/jasonmcintosh/rabbitmq-zabbix/blob/fe59d5a5c3d7cce3a0fdc2feb5f9b37eba498e05/scripts/rabbitmq/api.py#L51 with: ``` shared_items...
Per last conversation in here: https://github.com/jasonmcintosh/rabbitmq-zabbix/issues/47 The shovel status should really return a value that can be used to trigger alerts similar to queue refresh status.
Would it be possible to have a description of items and triggers in the template? There are several things I don't understand, especially the "RabbitMQ Refresh Rabbit Queue Status" which...
Hey guys, sometimes api.py throws an error, which gets send to zabbix. For example: ``` Trigger: RabbitMQ Cluster partition detected Trigger status: PROBLEM Trigger severity: Average Trigger URL: Item values:...
I'm getting the information from HTTP stats API /api/vhosts/ and using the recv_oct parameter for each vhost. Sample JSON: ``` json [ {"messages":0, "messages_details":{"rate":0.0}, "messages_ready":0, "messages_ready_details":{"rate":0.0}, "messages_unacknowledged":0, "messages_unacknowledged_details":{"rate":0.0}, "recv_oct":541010, "recv_oct_details":{"rate":0.0},...
Right now the filters allow one to say "Only include X". I'd like to allow an "exclude anything matching X" - this would handle the aliveness-test case. I MIGHT be...