#!/bin/bash : <<=cut =head1 NAME xfs_frag - Munin plugin to monitor the fragmentation level on your XFS filesystems =head1 APPLICABLE SYSTEMS Any machine with an XFS file system. =head1 CONFIGURATION None, generally, but you may want to run as root and set a timeout. [xfs_frag] user root timeout 90 =head1 MAGIC MARKERS #%# family=auto contrib #%# capabilities= =head1 VERSION 1 =head1 AUTHOR Paul Saunders L =cut declare -a TOKENS shopt -s nocasematch case $1 in config) cat <<'EOF' graph_title XFS fragmentation graph_vlabel Percent graph_category disk EOF awk '{print $2 " " $3}'