From e4024563c6bfd540f31d9b5b08194dd1c6fbc863 Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Wed, 17 Jun 2009 13:34:47 +0200 Subject: [PATCH] Use sudo for the plugins + lots more plugins --- rabbitmq-connections | 4 +- rabbitmq-consumers | 74 ++++++++++++++++++++++++++++++++ rabbitmq-list_queues | 6 +-- rabbitmq-messages_unacknowledged | 74 ++++++++++++++++++++++++++++++++ rabbitmq-messages_uncommitted | 74 ++++++++++++++++++++++++++++++++ rabbitmq-queue_memory | 74 ++++++++++++++++++++++++++++++++ 6 files changed, 301 insertions(+), 5 deletions(-) create mode 100755 rabbitmq-consumers create mode 100755 rabbitmq-messages_unacknowledged create mode 100755 rabbitmq-messages_uncommitted create mode 100755 rabbitmq-queue_memory diff --git a/rabbitmq-connections b/rabbitmq-connections index b34a2bd..b4afbcc 100755 --- a/rabbitmq-connections +++ b/rabbitmq-connections @@ -40,7 +40,7 @@ if [ "$1" = "config" ]; then # lower limit of the graph is '0', and that 1k=1000 (not 1024) echo 'graph_args --base 1000 -l 0' # The Y-axis label - echo 'graph_vlabel queue_size' + echo 'graph_vlabel connections' # We want Cur/Min/Avg/Max unscaled (i.e. 0.42 load instead of # 420 milliload) #echo 'graph_scale no' @@ -60,4 +60,4 @@ fi # real work - i.e. display the data. Almost always this will be # "value" subfield for every data field. -echo "connections.value $(rabbitmqctl list_connections | grep -v "^Listing" | grep -v "done.$" | wc -l)" +echo "connections.value $(sudo rabbitmqctl list_connections | grep -v "^Listing" | grep -v "done.$" | wc -l)" diff --git a/rabbitmq-consumers b/rabbitmq-consumers new file mode 100755 index 0000000..919a8d7 --- /dev/null +++ b/rabbitmq-consumers @@ -0,0 +1,74 @@ +#!/bin/sh +# +# Plugin to monitor the queues of a virtual_host in RabbitMQ +# +# Usage: Link or copy into /etc/munin/node.d/ +# +# Parameters +# env.vhost +# env.queue_warn +# env.queue_crit +# +# Magic markers (optional - only used by munin-config and some +# installation scripts): +# +#%# family=auto +#%# capabilities=autoconf + +# If run with the "autoconf"-parameter, give our opinion on wether we +# should be run on this system or not. This is optinal, and only used by +# munin-config. In the case of this plugin, we should most probably +# always be included. + +if [ "$1" = "autoconf" ]; then + echo yes + exit 0 +fi + +# If run with the "config"-parameter, give out information on how the +# graphs should look. + +VHOST=portal +QUEUE_STATUS=$(sudo rabbitmqctl list_queues -p $VHOST | \ + grep -v '^Listing' | \ + grep -v 'done.$') +QUEUES=$(echo $QUEUE_STATUS | awk '{print $1}') + +if [ "$1" = "config" ]; then + QUEUE_WARN=${queue_warn:-100} + QUEUE_CRIT=${queue_crit:-500} + + # The host name this plugin is for. (Can be overridden to have + # one machine answer for several) + + # The title of the graph + echo "graph_title RabbitMQ $VHOST consumers" + # Arguments to "rrdtool graph". In this case, tell it that the + # lower limit of the graph is '0', and that 1k=1000 (not 1024) + echo 'graph_args --base 1000 -l 0' + # The Y-axis label + echo 'graph_vlabel consumers' + # We want Cur/Min/Avg/Max unscaled (i.e. 0.42 load instead of + # 420 milliload) + #echo 'graph_scale no' + + for queue in $QUEUES; do + echo "$queue.label $queue" + echo "$queue.warning $QUEUE_WARN" + echo "$queue.critical $QUEUE_CRIT" + echo "$queue.info Active consumers for $queue" + done + + echo 'graph_info Lists active consumers for a queue.' + # Last, if run with the "config"-parameter, quit here (don't + # display any data) + exit 0 +fi + +# If not run with any parameters at all (or only unknown ones), do the +# real work - i.e. display the data. Almost always this will be +# "value" subfield for every data field. + +sudo rabbitmqctl list_queues -p portal name consumers| \ + grep -v "^Listing" | grep -v "done.$" | \ + perl -nle'($q, $s) = split; print("$q.value $s")' diff --git a/rabbitmq-list_queues b/rabbitmq-list_queues index 5c41d83..5b5662d 100755 --- a/rabbitmq-list_queues +++ b/rabbitmq-list_queues @@ -28,8 +28,8 @@ fi # If run with the "config"-parameter, give out information on how the # graphs should look. -VHOST=${vhost:-/} -QUEUE_STATUS=$(rabbitmqctl list_queues -p $VHOST | \ +VHOST=portal +QUEUE_STATUS=$(sudo rabbitmqctl list_queues -p $VHOST | \ grep -v '^Listing' | \ grep -v 'done.$') QUEUES=$(echo $QUEUE_STATUS | awk '{print $1}') @@ -69,6 +69,6 @@ fi # real work - i.e. display the data. Almost always this will be # "value" subfield for every data field. -rabbitmqctl list_queues -p portal | \ +sudo rabbitmqctl list_queues -p portal | \ grep -v "^Listing" | grep -v "done.$" | \ perl -nle'($q, $s) = split; print("$q.value $s")' diff --git a/rabbitmq-messages_unacknowledged b/rabbitmq-messages_unacknowledged new file mode 100755 index 0000000..779612f --- /dev/null +++ b/rabbitmq-messages_unacknowledged @@ -0,0 +1,74 @@ +#!/bin/sh +# +# Plugin to monitor the queues of a virtual_host in RabbitMQ +# +# Usage: Link or copy into /etc/munin/node.d/ +# +# Parameters +# env.vhost +# env.queue_warn +# env.queue_crit +# +# Magic markers (optional - only used by munin-config and some +# installation scripts): +# +#%# family=auto +#%# capabilities=autoconf + +# If run with the "autoconf"-parameter, give our opinion on wether we +# should be run on this system or not. This is optinal, and only used by +# munin-config. In the case of this plugin, we should most probably +# always be included. + +if [ "$1" = "autoconf" ]; then + echo yes + exit 0 +fi + +# If run with the "config"-parameter, give out information on how the +# graphs should look. + +VHOST=portal +QUEUE_STATUS=$(sudo rabbitmqctl list_queues -p $VHOST | \ + grep -v '^Listing' | \ + grep -v 'done.$') +QUEUES=$(echo $QUEUE_STATUS | awk '{print $1}') + +if [ "$1" = "config" ]; then + QUEUE_WARN=${queue_warn:-10000} + QUEUE_CRIT=${queue_crit:-20000} + + # The host name this plugin is for. (Can be overridden to have + # one machine answer for several) + + # The title of the graph + echo "graph_title RabbitMQ $VHOST Unacknowledged Messages" + # Arguments to "rrdtool graph". In this case, tell it that the + # lower limit of the graph is '0', and that 1k=1000 (not 1024) + echo 'graph_args --base 1000 -l 0' + # The Y-axis label + echo 'graph_vlabel unacknowledged' + # We want Cur/Min/Avg/Max unscaled (i.e. 0.42 load instead of + # 420 milliload) + #echo 'graph_scale no' + + for queue in $QUEUES; do + echo "$queue.label $queue" + echo "$queue.warning $QUEUE_WARN" + echo "$queue.critical $QUEUE_CRIT" + echo "$queue.info Unacknowledged messages for $queue" + done + + echo 'graph_info Lists how many messages are in each queue.' + # Last, if run with the "config"-parameter, quit here (don't + # display any data) + exit 0 +fi + +# If not run with any parameters at all (or only unknown ones), do the +# real work - i.e. display the data. Almost always this will be +# "value" subfield for every data field. + +sudo rabbitmqctl list_queues -p portal name messages_unacknowledged | \ + grep -v "^Listing" | grep -v "done.$" | \ + perl -nle'($q, $s) = split; print("$q.value $s")' diff --git a/rabbitmq-messages_uncommitted b/rabbitmq-messages_uncommitted new file mode 100755 index 0000000..4ed075b --- /dev/null +++ b/rabbitmq-messages_uncommitted @@ -0,0 +1,74 @@ +#!/bin/sh +# +# Plugin to monitor the queues of a virtual_host in RabbitMQ +# +# Usage: Link or copy into /etc/munin/node.d/ +# +# Parameters +# env.vhost +# env.queue_warn +# env.queue_crit +# +# Magic markers (optional - only used by munin-config and some +# installation scripts): +# +#%# family=auto +#%# capabilities=autoconf + +# If run with the "autoconf"-parameter, give our opinion on wether we +# should be run on this system or not. This is optinal, and only used by +# munin-config. In the case of this plugin, we should most probably +# always be included. + +if [ "$1" = "autoconf" ]; then + echo yes + exit 0 +fi + +# If run with the "config"-parameter, give out information on how the +# graphs should look. + +VHOST=portal +QUEUE_STATUS=$(sudo rabbitmqctl list_queues -p $VHOST | \ + grep -v '^Listing' | \ + grep -v 'done.$') +QUEUES=$(echo $QUEUE_STATUS | awk '{print $1}') + +if [ "$1" = "config" ]; then + QUEUE_WARN=${queue_warn:-10000} + QUEUE_CRIT=${queue_crit:-20000} + + # The host name this plugin is for. (Can be overridden to have + # one machine answer for several) + + # The title of the graph + echo "graph_title RabbitMQ $VHOST Uncommitted Messages" + # Arguments to "rrdtool graph". In this case, tell it that the + # lower limit of the graph is '0', and that 1k=1000 (not 1024) + echo 'graph_args --base 1000 -l 0' + # The Y-axis label + echo 'graph_vlabel uncommitted' + # We want Cur/Min/Avg/Max unscaled (i.e. 0.42 load instead of + # 420 milliload) + #echo 'graph_scale no' + + for queue in $QUEUES; do + echo "$queue.label $queue" + echo "$queue.warning $QUEUE_WARN" + echo "$queue.critical $QUEUE_CRIT" + echo "$queue.info Uncommitted messages for $queue" + done + + echo 'graph_info Lists how many messages are in each queue.' + # Last, if run with the "config"-parameter, quit here (don't + # display any data) + exit 0 +fi + +# If not run with any parameters at all (or only unknown ones), do the +# real work - i.e. display the data. Almost always this will be +# "value" subfield for every data field. + +sudo rabbitmqctl list_queues -p portal name messages_uncommitted | \ + grep -v "^Listing" | grep -v "done.$" | \ + perl -nle'($q, $s) = split; print("$q.value $s")' diff --git a/rabbitmq-queue_memory b/rabbitmq-queue_memory new file mode 100755 index 0000000..524768c --- /dev/null +++ b/rabbitmq-queue_memory @@ -0,0 +1,74 @@ +#!/bin/sh +# +# Plugin to monitor the queues of a virtual_host in RabbitMQ +# +# Usage: Link or copy into /etc/munin/node.d/ +# +# Parameters +# env.vhost +# env.queue_warn +# env.queue_crit +# +# Magic markers (optional - only used by munin-config and some +# installation scripts): +# +#%# family=auto +#%# capabilities=autoconf + +# If run with the "autoconf"-parameter, give our opinion on wether we +# should be run on this system or not. This is optinal, and only used by +# munin-config. In the case of this plugin, we should most probably +# always be included. + +if [ "$1" = "autoconf" ]; then + echo yes + exit 0 +fi + +# If run with the "config"-parameter, give out information on how the +# graphs should look. + +VHOST=portal +QUEUE_STATUS=$(sudo rabbitmqctl list_queues -p $VHOST | \ + grep -v '^Listing' | \ + grep -v 'done.$') +QUEUES=$(echo $QUEUE_STATUS | awk '{print $1}') + +if [ "$1" = "config" ]; then + QUEUE_WARN=${queue_warn:-10000} + QUEUE_CRIT=${queue_crit:-20000} + + # The host name this plugin is for. (Can be overridden to have + # one machine answer for several) + + # The title of the graph + echo "graph_title RabbitMQ $VHOST Memory used by queue" + # Arguments to "rrdtool graph". In this case, tell it that the + # lower limit of the graph is '0', and that 1k=1000 (not 1024) + echo 'graph_args --base 1024 --vertical-label Bytes -l 0' + # The Y-axis label + echo 'graph_vlabel memory' + # We want Cur/Min/Avg/Max unscaled (i.e. 0.42 load instead of + # 420 milliload) + #echo 'graph_scale no' + + for queue in $QUEUES; do + echo "$queue.label $queue" + echo "$queue.warning $QUEUE_WARN" + echo "$queue.critical $QUEUE_CRIT" + echo "$queue.info Memory used by $queue" + done + + echo 'graph_info Show memory usage by queue' + # Last, if run with the "config"-parameter, quit here (don't + # display any data) + exit 0 +fi + +# If not run with any parameters at all (or only unknown ones), do the +# real work - i.e. display the data. Almost always this will be +# "value" subfield for every data field. + +sudo rabbitmqctl list_queues -p portal name memory | \ + grep -v "^Listing" | grep -v "done.$" | \ + perl -nle'($q, $s) = split; print("$q.value $s")'