Blame conf/services/zz-disk_space.conf

Packit Bot ea69bd
# This just displays the file system disk usage at the end of the report...
Packit Bot ea69bd
Packit Bot ea69bd
# You can put comments anywhere you want to.  They are effective for the
Packit Bot ea69bd
# rest of the line.
Packit Bot ea69bd
Packit Bot ea69bd
# this is in the format of <name> = <value>.  Whitespace at the beginning
Packit Bot ea69bd
# and end of the lines is removed.  Whitespace before and after the = sign
Packit Bot ea69bd
# is removed.  Everything is case *insensitive*.
Packit Bot ea69bd
Packit Bot ea69bd
# Yes = True  = On  = 1
Packit Bot ea69bd
# No  = False = Off = 0
Packit Bot ea69bd
Packit Bot ea69bd
Title = "Disk Space"
Packit Bot ea69bd
Packit Bot ea69bd
# Which logfile group...
Packit Bot ea69bd
LogFile = NONE
Packit Bot ea69bd
Packit Bot ea69bd
# disk report options
Packit Bot ea69bd
# Uncomment this to show the home directory sizes
Packit Bot ea69bd
#$show_home_dir_sizes = 1
Packit Bot ea69bd
#$home_dir = "/home"
Packit Bot ea69bd
Packit Bot ea69bd
# Uncomment this to show the mail spool size
Packit Bot ea69bd
#$show_mail_dir_sizes = 1
Packit Bot ea69bd
#$mail_dir = "/var/spool/mail"
Packit Bot ea69bd
Packit Bot ea69bd
# Uncomment this to show the system directory sizes /opt /usr/ /var/log
Packit Bot ea69bd
#$show_disk_usage = 1
Packit Bot ea69bd
Packit Bot ea69bd
# The variables df_options and disk_cmd are used to customize the reporting
Packit Bot ea69bd
# of filesystem disk usage.  For example, the following are the defaults
Packit Bot ea69bd
# for Linux OS:
Packit Bot ea69bd
# $df_options = "-h -l -x tmpfs"
Packit Bot ea69bd
# $disk_cmd = "df $df_options"
Packit Bot ea69bd
Packit Bot ea69bd
# Uncomment this to add -l to df command. Only see local disks.
Packit Bot ea69bd
#$local_disks_only = 1
Packit Bot ea69bd
Packit Bot ea69bd
# The variable diskfull_threshold, when set to a positive number, will
Packit Bot ea69bd
# print a warning if the disk utilization exceeds that number.  Default
Packit Bot ea69bd
# is 90.  Set to 0 if no warning desired.
Packit Bot ea69bd
#$diskfull_threshold = 0
Packit Bot ea69bd
Packit Bot ea69bd
# Regular expression to exclude directories from disk full warnings.
Packit Bot ea69bd
# Expression is achored at the beginning with ^, but not at the end.
Packit Bot ea69bd
#$diskfull_exclude_dirs = /run/media
Packit Bot ea69bd
Packit Bot ea69bd
########################################################
Packit Bot ea69bd
# This was written and is maintained by:
Packit Bot ea69bd
#    Kirk Bauer <kirk@kaybee.org>
Packit Bot ea69bd
#
Packit Bot ea69bd
# Please send all comments, suggestions, bug reports,
Packit Bot ea69bd
#    etc, to kirk@kaybee.org.
Packit Bot ea69bd
########################################################
Packit Bot ea69bd
Packit Bot ea69bd
# vi: shiftwidth=3 tabstop=3 et