mirror of https://github.com/mikaku/Monitorix.git
30 lines
582 B
Bash
Executable File
30 lines
582 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Example script used to execute an alert action.
|
|
#
|
|
|
|
MAILTO="root@localhost"
|
|
|
|
if [ $# != 3 ] && [ $# != 4 ] ; then
|
|
echo "$0: Wrong number of arguments."
|
|
exit 1
|
|
fi
|
|
|
|
ALERT_TIMEINTVL=$1
|
|
ALERT_THRESHOLD=$2
|
|
current_value=$3
|
|
ALERT_WHEN=$4
|
|
|
|
(
|
|
cat << EOF
|
|
Message from hostname '$HOSTNAME'.
|
|
|
|
This system is reaching/exceeding ($ALERT_WHEN) the defined threshold value ($ALERT_THRESHOLD) during the last '$ALERT_TIMEINTVL' seconds.
|
|
|
|
The current value is: $current_value
|
|
|
|
Please take proper actions to correct this situation.
|
|
EOF
|
|
) | mail -s "WARNING: Monitorix alert!" $MAILTO
|
|
|