4 changed files with 31 additions and 27 deletions
@ -2,7 +2,7 @@ |
|||
# LinuxGSM alert_telegram.sh function |
|||
# Author: Bennet Becker <[email protected]> |
|||
# Website: https://bytegaming.de |
|||
# Description: Sends Telegram Message alert including the server status. |
|||
# Description: Sends Telegram Message alert. |
|||
|
|||
local commandname="ALERT" |
|||
local commandaction="Alert" |
|||
@ -12,14 +12,15 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
json=$(cat <<EOF |
|||
{ |
|||
"chat_id": "${telegramchatid}", |
|||
"text": "${alertemoji} <b><a href="${alerturl}">${alertsubject}</a></b> ${alertemoji}\n\n${alertbody}", |
|||
"parse_mode": "HTML", |
|||
"text": "${alertemoji} <b>${alertsubject}</b> ${alertemoji}\n<b>Message:</b> ${alertbody}\n<b>Server name:</b> ${servername}\n<b>Hostname:</b> ${HOSTNAME}\n<b>More info:</b> <a href='${alerturl}'>${alerturl}</a>", |
|||
"disable_web_page_preview": "yes", |
|||
} |
|||
EOF |
|||
) |
|||
|
|||
fn_print_dots "Sending Telegram Message" |
|||
sleep 1 |
|||
fn_print_dots "Sending Telegram Alert" |
|||
sleep 0.5 |
|||
telegramsend=$(curl -sSL -H "Content-Type: application/json" -X POST -d """$json""" "https://api.telegram.org/bot${telegramtoken}/sendMessage" | grep -Po '(?<="description":").*?(?=")'|uniq) |
|||
|
|||
if [ -n "${telegramsend}" ]; then |
|||
|
Loading…
Reference in new issue