mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
https://github.com/mvdan/sh
Signed-off-by: Anders Kaseorg <anders@zulip.com>
(cherry picked from commit dfaea9df65)
63 lines
1.9 KiB
Bash
Executable File
63 lines
1.9 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Plugin to monitor the number of active event queues
|
|
#
|
|
# Usage: Link or copy into /etc/munin/node.d/
|
|
#
|
|
# No Parameters
|
|
#
|
|
# 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 whether we
|
|
# should be run on this system or not. This is optional, 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
|
|
|
|
HOME=/tmp/
|
|
|
|
# If run with the "config"-parameter, give out information on how the
|
|
# graphs should look.
|
|
|
|
if [ "$1" = "config" ]; then
|
|
# 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 Event queues'
|
|
# 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 Number'
|
|
# We want Cur/Min/Avg/Max unscaled (i.e. 0.42 load instead of
|
|
# 420 milliload)
|
|
#echo 'graph_scale no'
|
|
echo 'graph_category Tornado'
|
|
|
|
echo "active_queues.label Total active event queues"
|
|
echo "active_queues.info Total number of active event queues"
|
|
echo "active_users.label Users with active event queues"
|
|
echo "active_users.info Number of users with active event queues"
|
|
|
|
echo 'graph_info Shows the number of active event queues'
|
|
# 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.
|
|
|
|
echo "active_queues.value $(cat /home/zulip/stats/tornado.active_queues)"
|
|
echo "active_users.value $(cat /home/zulip/stats/tornado.active_users)"
|