10 changed files with 326 additions and 106 deletions
@ -0,0 +1,15 @@ |
|||
#!/bin/bash |
|||
# LGSM comms.sh function |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
lgsm_version="140516" |
|||
|
|||
# Description: Overall function for managing notifications. |
|||
|
|||
if [ "${emailnotification}" == "on" ]; then |
|||
comms_email.sh |
|||
fi |
|||
|
|||
if [ "${pushbulletnotification}" == "on" ]; then |
|||
comms_pushbullet.sh |
|||
fi |
@ -0,0 +1,241 @@ |
|||
#!/bin/bash |
|||
# LGSM email.sh function |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
lgsm_version="140516" |
|||
|
|||
# Description: Sends email notification if monitor picks up a failure. |
|||
|
|||
local modulename="Email" |
|||
|
|||
|
|||
fn_details_email(){ |
|||
# |
|||
# Failure reason: Testing bb2-server email notification |
|||
# Action Taken: Sent test email...hello is this thing on? |
|||
|
|||
echo -e "${commsbody}" >> "${emaillog}" |
|||
} |
|||
|
|||
|
|||
fn_details_os(){ |
|||
# |
|||
# Distro Details |
|||
# ===================================== |
|||
# Distro: Ubuntu 14.04.4 LTS |
|||
# Arch: x86_64 |
|||
# Kernel: 3.13.0-79-generic |
|||
# Hostname: hostname |
|||
# tmux: tmux 1.8 |
|||
# GLIBC: 2.19 |
|||
|
|||
{ |
|||
echo -e "" |
|||
echo -e "Distro Details" |
|||
echo -e "=================================" |
|||
echo -e "Distro: ${os}" |
|||
echo -e "Arch: ${arch}" |
|||
echo -e "Kernel: ${kernel}" |
|||
echo -e "Hostname: $HOSTNAME" |
|||
echo -e "tmux: ${tmuxv}" |
|||
echo -e "GLIBC: ${glibcversion}" |
|||
} | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" |
|||
} |
|||
|
|||
fn_details_performance(){ |
|||
# |
|||
# Performance |
|||
# ===================================== |
|||
# Uptime: 55d, 3h, 38m |
|||
# Avg Load: 1.00, 1.01, 0.78 |
|||
# |
|||
# Mem: total used free |
|||
# Physical: 741M 656M 85M |
|||
# Swap: 0B 0B 0B |
|||
|
|||
{ |
|||
echo -e "" |
|||
echo -e "Performance" |
|||
echo -e "=================================" |
|||
echo -e "Uptime: ${days}d, ${hours}h, ${minutes}m" |
|||
echo -e "Avg Load: ${load}" |
|||
echo -e "" |
|||
echo -e "Mem: total used free" |
|||
echo -e "Physical: ${physmemtotal} ${physmemused} ${physmemfree}" |
|||
echo -e "Swap: ${swaptotal} ${swapused} ${swapfree}" |
|||
} | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" |
|||
} |
|||
|
|||
fn_details_disk(){ |
|||
# |
|||
# Storage |
|||
# ===================================== |
|||
# Filesystem: /dev/disk/by-uuid/320c8edd-a2ce-4a23-8c9d-e00a7af2d6ff |
|||
# Total: 15G |
|||
# Used: 8.4G |
|||
# Available: 5.7G |
|||
# Serverfiles: 961M |
|||
|
|||
{ |
|||
echo -e "" |
|||
echo -e "Storage" |
|||
echo -e "=================================" |
|||
echo -e "Filesystem: ${filesystem}" |
|||
echo -e "Total: ${totalspace}" |
|||
echo -e "Used: ${usedspace}" |
|||
echo -e "Available: ${availspace}" |
|||
echo -e "Serverfiles: ${filesdirdu}" |
|||
if [ -d "${backupdir}" ]; then |
|||
echo -e "Backups: ${backupdirdu}" |
|||
fi |
|||
} | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" |
|||
} |
|||
|
|||
|
|||
|
|||
fn_details_gameserver(){ |
|||
# |
|||
# Quake Live Server Details |
|||
# ===================================== |
|||
# Server name: ql-server |
|||
# Server IP: 1.2.3.4:27960 |
|||
# RCON password: CHANGE_ME |
|||
# Server password: NOT SET |
|||
# Slots: 16 |
|||
# Status: OFFLINE |
|||
|
|||
{ |
|||
echo -e "" |
|||
echo -e "${gamename} Server Details" |
|||
echo -e "=================================" |
|||
# Server name |
|||
echo -e "Server name: ${servername}" |
|||
|
|||
# Server ip |
|||
echo -e "Server IP: ${ip}:${port}" |
|||
|
|||
# Server password |
|||
if [ -n "${serverpassword}" ]; then |
|||
echo -e "Server password: ********" |
|||
fi |
|||
|
|||
# RCON password |
|||
if [ -n "${rconpassword}" ]; then |
|||
echo -e "RCON password: ********" |
|||
fi |
|||
|
|||
# Admin password |
|||
if [ -n "${adminpassword}" ]; then |
|||
echo -e "Admin password: ********" |
|||
fi |
|||
|
|||
# Stats password (Quake Live) |
|||
if [ -n "${statspassword}" ]; then |
|||
echo -e "Stats password: ********" |
|||
fi |
|||
|
|||
# Slots |
|||
if [ -n "${slots}" ]; then |
|||
echo -e "Slots: ${slots}" |
|||
fi |
|||
|
|||
# Game mode |
|||
if [ -n "${gamemode}" ]; then |
|||
echo -e "Game mode: ${gamemode}" |
|||
fi |
|||
|
|||
# Game world |
|||
if [ -n "${gameworld}" ]; then |
|||
echo -e "Game world: ${gameworld}" |
|||
fi |
|||
|
|||
# Tick rate |
|||
if [ -n "${tickrate}" ]; then |
|||
echo -e "Tick rate: ${tickrate}" |
|||
fi |
|||
|
|||
# Teamspeak dbplugin |
|||
if [ -n "${dbplugin}" ]; then |
|||
echo -e "dbplugin: ${dbplugin}" |
|||
fi |
|||
|
|||
# Online status |
|||
if [ "${status}" == "0" ]; then |
|||
echo -e "Status: OFFLINE" |
|||
else |
|||
echo -e "Status: ONLINE" |
|||
fi |
|||
} | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" |
|||
} |
|||
|
|||
fn_comms_email_template_logs(){ |
|||
{ |
|||
echo -e "" |
|||
echo -e "${servicename} Logs" |
|||
echo -e "=================================" |
|||
|
|||
if [ -n "${scriptlog}" ]; then |
|||
echo -e "\nScript log\n===================" |
|||
if [ ! "$(ls -A ${scriptlogdir})" ]; then |
|||
echo "${scriptlogdir} (NO LOG FILES)" |
|||
elif [ ! -s "${scriptlog}" ]; then |
|||
echo "${scriptlog} (LOG FILE IS EMPTY)" |
|||
else |
|||
echo "${scriptlog}" |
|||
tail -25 "${scriptlog}" |
|||
fi |
|||
echo "" |
|||
fi |
|||
|
|||
if [ -n "${consolelog}" ]; then |
|||
echo -e "\nConsole log\n====================" |
|||
if [ ! "$(ls -A ${consolelogdir})" ]; then |
|||
echo "${consolelogdir} (NO LOG FILES)" |
|||
elif [ ! -s "${consolelog}" ]; then |
|||
echo "${consolelog} (LOG FILE IS EMPTY)" |
|||
else |
|||
echo "${consolelog}" |
|||
tail -25 "${consolelog}" | awk '{ sub("\r$", ""); print }' |
|||
fi |
|||
echo "" |
|||
fi |
|||
|
|||
if [ -n "${gamelogdir}" ]; then |
|||
echo -e "\nServer log\n===================" |
|||
if [ ! "$(ls -A ${gamelogdir})" ]; then |
|||
echo "${gamelogdir} (NO LOG FILES)" |
|||
else |
|||
echo "${gamelogdir}" |
|||
tail "${gamelogdir}"/* | grep -v "==>" | sed '/^$/d' | tail -25 |
|||
fi |
|||
echo "" |
|||
fi |
|||
|
|||
} | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" |
|||
} |
|||
|
|||
fn_print_dots "Sending notification to ${email}" |
|||
info_distro.sh |
|||
info_config.sh |
|||
info_glibc.sh |
|||
check_ip.sh |
|||
|
|||
emaillog="${emaillog}" |
|||
if [ -f "${emaillog}" ]; then |
|||
rm "${emaillog}" |
|||
fi |
|||
fn_details_email |
|||
fn_details_os |
|||
fn_details_performance |
|||
fn_details_disk |
|||
fn_details_gameserver |
|||
fn_comms_email_template_logs |
|||
mail -s "${commssubject}" "${email}" < "${emaillog}" |
|||
exitcode=$? |
|||
if [ "${exitcode}" == "0" ]; then |
|||
fn_print_ok_nl "Sending notification to ${email}" |
|||
fn_scriptlog "Success! Sending notification to ${email}" |
|||
else |
|||
fn_print_fail_nl "Sending notification to ${email}" |
|||
fn_scriptlog "Failure! Sending notification to ${email}" |
|||
fi |
@ -0,0 +1,18 @@ |
|||
#!/bin/bash |
|||
# LGSM comms_pushbullet.sh function |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
lgsm_version="140516" |
|||
|
|||
# Description: Notifications using pushbullet. |
|||
|
|||
fn_comms_pushbullet() { |
|||
PUSHBULLET_TOKEN="userTokenHere"; |
|||
curl -u """$pushbullettoken"":" -d type="note" -d body="${commsbody}" -d title="${commstitle}" 'https://api.pushbullet.com/v2/pushes' >/dev/null 2>&1 |
|||
echo "Message send to pushbullet."; |
|||
} |
|||
|
|||
pushbulletnotification="on" |
|||
pushbullettoken="" |
|||
commsbody="${servicename} process not running" |
|||
fn_comms_pushbullet |
@ -1,67 +0,0 @@ |
|||
#!/bin/bash |
|||
# LGSM email.sh function |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
lgsm_version="240416" |
|||
|
|||
# Description: Sends email notification if monitor picks up a failure. |
|||
|
|||
local modulename="Email" |
|||
fn_print_dots "Sending notification to ${email}" |
|||
info_distro.sh |
|||
info_config.sh |
|||
check_ip.sh |
|||
if [ $(type -t fn_parms;echo $?) == 0 ]; then |
|||
fn_parms |
|||
fi |
|||
{ |
|||
echo -e "========================================\n${servicename} details\n========================================" |
|||
echo -e "Service name: ${servicename}" |
|||
echo -e "Server name: ${servername}" |
|||
echo -e "Game name: ${gamename}" |
|||
echo -e "Server IP: ${ip}:${port}" |
|||
echo -e "Failure reason: ${failurereason}" |
|||
echo -e "Action Taken: ${actiontaken}\n" |
|||
echo -e "" |
|||
echo -e "========================================\nDistro Details\n========================================" |
|||
echo -e "Date: $(date)" |
|||
echo -e "Distro: ${os}" |
|||
echo -e "Arch: ${arch}" |
|||
echo -e "Kernel: ${kernel}" |
|||
echo -e "Hostname: $HOSTNAME" |
|||
echo -e "tmux: ${tmuxv}" |
|||
echo -e "GLIBC: ${glibcversion}" |
|||
echo -e "" |
|||
echo -e "========================================\nPerformance\n========================================" |
|||
echo -e "Uptime: ${days}d, ${hours}h, ${minutes}m" |
|||
echo -e "Avg Load: ${load}" |
|||
echo -e "" |
|||
echo -e "Mem: total used free" |
|||
echo -e "Physical: ${physmemtotal} ${physmemused} ${physmemfree}" |
|||
echo -e "Swap: ${swaptotal}${swapused} ${swapfree}" |
|||
echo -e "" |
|||
echo -e "========================================\nStorage\n========================================" |
|||
echo -e "\e[34mFilesystem:\t\e[0m${filesystem}" |
|||
echo -e "\e[34mTotal:\t\e[0m${totalspace}" |
|||
echo -e "\e[34mUsed:\t\e[0m${usedspace}" |
|||
echo -e "\e[34mAvailable:\t\e[0m${availspace}" |
|||
echo -e "\e[34mServerfiles:\t\e[0m${filesdirdu}" |
|||
if [ -d "${backupdir}" ]; then |
|||
echo -e "\e[34mBackups:\t\e[0m${backupdirdu}" |
|||
fi |
|||
echo -e "" |
|||
echo -e "========================================\nLogs\n========================================" |
|||
}| sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee "${scriptlogdir}/${servicename}-email.log" > /dev/null 2>&1 |
|||
echo -e "\n\n Script log\n===================" >> "${emaillog}" |
|||
tail -25 "${scriptlog}" >> "${emaillog}" |
|||
if [ -n "${consolelog}" ]; then |
|||
echo -e "\n\n Console log\n====================" >> "${emaillog}" |
|||
tail -25 "${consolelog}" | awk '{ sub("\r$", ""); print }' >> "${emaillog}" |
|||
fi |
|||
if [ -n "${gamelogdir}" ]; then |
|||
echo -e "\n\n Server log\n====================" >> "${emaillog}" |
|||
tail "${gamelogdir}"/* | grep -v "==>" | sed '/^$/d' | tail -25 >> "${emaillog}" |
|||
fi |
|||
mail -s "${subject}" ${email} < "${emaillog}" |
|||
fn_print_ok_nl "Sending notification to ${email}" |
|||
fn_scriptlog "Sent notification to ${email}" |
Loading…
Reference in new issue