Browse Source

added message summery

pull/1639/head
Daniel Gibbs 8 years ago
parent
commit
e99dc8b594
  1. 35
      lgsm/functions/alert_email.sh

35
lgsm/functions/alert_email.sh

@ -8,12 +8,29 @@ local commandname="ALERT"
local commandaction="Alert" local commandaction="Alert"
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
fn_details_email(){ fn_details_head(){
# {
# Failure reason: Testing bb2-server email alert echo -e ""
# Action Taken: Sent test email...hello is this thing on? echo -e "Summery"
echo -e "================================="
echo -e "${alertbody}" >> "${emaillog}" echo -e "Message"
echo -e "${alertbody}"
echo -e ""
echo -e "Game"
echo -e "${gamename}"
echo -e ""
echo -e "Server name"
echo -e "${servername}"
echo -e ""
echo -e "Hostname"
echo -e "${HOSTNAME}"
echo -e ""
echo -e "Server IP"
echo -e "${ip}:${port}"
echo -e ""
echo -e "More info"
echo -e "${alerturl}"
} | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" > /dev/null 2>&1
} }
fn_details_os(){ fn_details_os(){
@ -202,11 +219,11 @@ fn_alert_email_template_logs(){
echo "${gamelogdir} (NO LOG FILES)" echo "${gamelogdir} (NO LOG FILES)"
else else
echo "${gamelogdir}" echo "${gamelogdir}"
tail "${gamelogdir}"/* | grep -v "==>" | sed '/^$/d' | tail -25 # dos2unix sed 's/\r//'
tail "${gamelogdir}"/* 2>/dev/null | grep -v "==>" | sed '/^$/d' | sed 's/\r//'| tail -25
fi fi
echo "" echo ""
fi fi
} | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" > /dev/null 2>&1 } | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" > /dev/null 2>&1
} }
@ -222,7 +239,7 @@ emaillog="${emaillog}"
if [ -f "${emaillog}" ]; then if [ -f "${emaillog}" ]; then
rm "${emaillog}" rm "${emaillog}"
fi fi
fn_details_email fn_details_head
fn_details_os fn_details_os
fn_details_performance fn_details_performance
fn_details_disk fn_details_disk

Loading…
Cancel
Save