1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00
Munin-Contrib/plugins/other/pacman_pending_updates
2017-10-03 11:08:25 +02:00

76 lines
1.3 KiB
Bash
Executable file

#!/bin/bash
: <<=cut
=head1 NAME
pacman_pending_updates - Plugin to monitor pending updates
=head1 APPLICABLE SYSTEMS
All systems with pacman as their package manager.
=head1 CONFIGURATION
The plugin needs no additional configuration and works out of the box.
It is possible to add warnings for certain numbers of updates pending. The
following will send a warning when there are more than 10 updates pending.
[pacman_pending_updates]
env.PENDING_UPDATES_WARNING :10
=head1 INTERPRETATION
This plugin will draw one line: the number of updates pending.
=head1 MAGIC MARKERS
#%# family=auto
#%# capabilities=autoconf
=head1 VERSION
1.1.0
=head1 AUTHOR
Bert Peters <bert@bertptrs.nl>
=head1 LICENSE
GPLv2
=cut
case $1 in
config)
cat <<'EOM'
graph_args --base 1000 -l 0
graph_title Pending updates
graph_vlabel updates
graph_category security
updates.label updates
updates.info Current number of pending updates
EOM
if [[ -n $PENDING_UPDATES_WARNING ]]; then
echo updates.warning $PENDING_UPDATES_WARNING
fi
;;
autoconf)
hash checkupdates &> /dev/null && echo yes || echo "no (checkupdates not found)"
;;
*)
tmpfile=$(mktemp)
updates=$(checkupdates | tee "$tmpfile" | wc -l)
echo updates.value $updates
if [ $updates -gt 0 ]; then
echo updates.extinfo $(paste -s -d, "$tmpfile")
fi
rm "$tmpfile"
;;
esac
exit 0