2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00
contrib-munin/plugins/disk/lvm_

97 lines
1.8 KiB
Plaintext
Raw Normal View History

2008-07-25 23:53:08 +02:00
#!/bin/sh
2012-07-24 15:01:01 +02:00
# -*- sh -*-
: << EOF
=head1 NAME
lvm_ - Wildcard plugin for monitoring disk usage on LVM. Each Volume Group is graphed separately.
=head1 CONFIGURATION
This plugin needs to run as the root user in order to have permission to run lvs and vgs
[lvm_*]
user root
=head1 AUTHOR
=over 4
=item * PatrickDK (Original Author)
=item * Niall Donegan
=back
=head1 LICENSE
Unknown license
=head1 MAGIC MARKERS
=begin comment
These magic markers are used by munin-node-configure when installing
munin-node.
=end comment
#%# family=auto
#%# capabilities=autoconf suggest
=cut
EOF
2008-07-25 23:53:08 +02:00
if [ "$1" = "autoconf" ]; then
if ! which lvs 2>&1 >/dev/null; then
2012-07-24 14:46:19 +02:00
echo "no (lvs not found)"
elif ! which vgs 2>&1 >/dev/null; then
2012-07-24 14:46:19 +02:00
echo "no (vgs not found)"
else
echo "yes"
fi
exit 0
2008-07-25 23:53:08 +02:00
fi
if [ "$1" = "suggest" ]; then
vgs -o vg_name --noheadings | sed -e 's/\ *//'
exit 0
fi
vg=`echo $0 | awk '{ sub(".*lvm_","",\$1); print \$1; }'`
2008-07-25 23:53:08 +02:00
clean_name() {
echo $1 | sed 's/[\/.-]/_/g'
}
if [ "$1" = "config" ]; then
2012-07-23 18:14:16 +02:00
echo "graph_title Logical Volume Usage($vg)"
echo 'graph_args --base 1024 -l 0'
2008-07-25 23:53:08 +02:00
echo 'graph_category disk'
echo 'graph_info This graph shows disk usage on the machine.'
echo "free.label free"
echo "free.draw AREA"
lvs --units b --nosuffix --noheadings | grep "$vg" | while read i; do
name=`clean_name $i`
echo -n "$name.label "
echo $i | awk '{ print $1 }'
echo "$name.draw STACK"
done
exit 0
fi
i=`vgs --units b --nosuffix --noheadings | grep "$vg"`
echo -n "free.value "
echo $i | awk '{ print $7 }'
lvs --units b --nosuffix --noheadings | grep "$vg" | while read i; do
name=`clean_name $i`
echo -n "$name.value "
echo $i | awk '{ print $4 }'
done