The Server Health Check Telegram Bot monitors the status of your servers and sends notifications to Telegram if the server is unavailable.
Bot sends requests to the servers and checks the response code. If the response code is not 200, the bot sends a message to the specified chat.
To run from Docker, you need to do the following:
- Install Docker and Docker Compose.
- Create your bot and get a token from @BotFather.
- Get
chat_id
from @userinfobot. - Set mandatory
env docker-compose.yml:
TELEGRAM_TOKEN
,TELEGRAM_CHAT
and argssuper
.server-healthcheck-telegram-bot/docker/docker-compose.yml
Lines 1 to 15 in f3eaf9e
- Configure the volumes in
docker-compose.yml
to persist servers list. - Run command
docker-compose up -d
.
You can also run the bot from source code, build Go binary and run it.
Param | Description |
---|---|
TELEGRAM_TOKEN | Telegram bot token, take from @BotFather |
TELEGRAM_CHAT | Chat ID where the bot will send messages. @userinfobot Can help to get chat id |
ALERT_THRESHOLD | The number of failed requests after which the bot will send a notification. Default 3 |
CHECKS_CRON | Cron with seconds to checks server status. Default */30 * * * * * |
DEBUG | Enable debug mode. Default false |
Command | Description |
---|---|
/add [url] [name] | Add server to monitor. For example: /add github.com github |
/remove [name] | Remove server from monitor. For example: /remove github |
/removeAll | Remove all servers from monitor |
/list | Show list of monitored servers |
We welcome contributions to improve this project.
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.