Skip to content

Instantly share code, notes, and snippets.

@djangofan
Created July 14, 2012 21:50
Show Gist options
  • Select an option

  • Save djangofan/3113588 to your computer and use it in GitHub Desktop.

Select an option

Save djangofan/3113588 to your computer and use it in GitHub Desktop.

Revisions

  1. djangofan revised this gist Jul 14, 2012. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion gistfile1.sh
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,8 @@
    #!/bin/sh
    # this script was initially written for Redhat/CentOS
    # file is /etc/cron.daily/diskAlert.cron
    # requires enabling outgoing sendmail from localhost to a valid smtp server
    # requires enabling outgoing sendmail from localhost to a valid
    # smtp server, which is usually disabled by default
    ADMIN="[email protected],[email protected]"
    THRESHOLD=90

  2. djangofan revised this gist Jul 14, 2012. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.sh
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,7 @@
    #!/bin/sh
    # this script was initially written for Redhat/CentOS
    # file is /etc/cron.daily/diskAlert.cron
    # requires enabling sendmail from localhost to a valid smtp server
    # requires enabling outgoing sendmail from localhost to a valid smtp server
    ADMIN="[email protected],[email protected]"
    THRESHOLD=90

  3. djangofan revised this gist Jul 14, 2012. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions gistfile1.sh
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,5 @@
    #!/bin/sh
    # this script was initially written for Redhat/CentOS
    # file is /etc/cron.daily/diskAlert.cron
    # requires enabling sendmail from localhost to a valid smtp server
    ADMIN="[email protected],[email protected]"
  4. djangofan revised this gist Jul 14, 2012. 1 changed file with 3 additions and 3 deletions.
    6 changes: 3 additions & 3 deletions gistfile1.sh
    Original file line number Diff line number Diff line change
    @@ -2,14 +2,14 @@
    # file is /etc/cron.daily/diskAlert.cron
    # requires enabling sendmail from localhost to a valid smtp server
    ADMIN="[email protected],[email protected]"
    ALERT=90
    THRESHOLD=90

    df -PkH | grep -vE '^Filesystem|tmpfs|cdrom|media' | awk '{ print $5 " " $6 }' | while read output;
    do
    usep=$(echo $output | awk '{ print $1}' | cut -d'%' -f1 )
    partition=$(echo $output | awk '{print $2}' )
    if [ $usep -ge $ALERT ]; then
    if [ $usep -ge $THRESHOLD ]; then
    echo "Running out of space \"$partition ($usep%)\" on $(hostname) as on $(date)" |
    mail -s "Alert: Almost out of disk space $usep%" $ADMIN
    fi
    done
    done
  5. djangofan created this gist Jul 14, 2012.
    15 changes: 15 additions & 0 deletions gistfile1.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    #!/bin/sh
    # file is /etc/cron.daily/diskAlert.cron
    # requires enabling sendmail from localhost to a valid smtp server
    ADMIN="[email protected],[email protected]"
    ALERT=90

    df -PkH | grep -vE '^Filesystem|tmpfs|cdrom|media' | awk '{ print $5 " " $6 }' | while read output;
    do
    usep=$(echo $output | awk '{ print $1}' | cut -d'%' -f1 )
    partition=$(echo $output | awk '{print $2}' )
    if [ $usep -ge $ALERT ]; then
    echo "Running out of space \"$partition ($usep%)\" on $(hostname) as on $(date)" |
    mail -s "Alert: Almost out of disk space $usep%" $ADMIN
    fi
    done