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 2xx, the bot sends a message to the specified chat.
- HTTP status code monitoring (2xx is considered success)
- Response time monitoring with configurable thresholds
- Expected content verification in responses
- SSL certificate expiration monitoring with configurable alert thresholds
- SSL expiry notifications are limited to once per day to prevent spam
- Availability statistics tracking
- Human-readable time formats for last checks
- Inline buttons for easy server management
- Detailed server statistics
- Telegram commands menu for easy access to all commands
- Built-in
/healthHTTP endpoint for container health checks - Graceful shutdown on SIGINT/SIGTERM
- Install Docker and Docker Compose
- Create your bot and get a token from @BotFather
- Get
chat_idfrom @userinfobot - Set mandatory env in docker-compose.yml:
TELEGRAM_TOKEN- your bot tokenTELEGRAM_CHAT- your chat id- Configure the volumes to persist servers list
- Run:
docker compose up -d
The container includes a built-in health check that monitors Telegram API connectivity via the /health endpoint.
# Build
make build-local
# Run
./server-healthcheck \
--telegram.token=<TOKEN> \
--telegram.chat=<CHAT_ID> \
--super=<USERNAME>| Param | Description | Default |
|---|---|---|
| TELEGRAM_TOKEN | Telegram bot token from @BotFather | (required) |
| TELEGRAM_CHAT | Chat ID where the bot will send messages. @userinfobot can help to get chat id | (required) |
| ALERT_THRESHOLD | The number of failed requests after which the bot will send a notification | 3 |
| CHECKS_CRON | Cron with seconds to check server status | */30 * * * * * |
| HTTP_TIMEOUT | HTTP request timeout in seconds | 10 |
| SSL_EXPIRY_ALERT | Days before SSL expiry to start alerting | 30 |
| DEFAULT_RESPONSE_TIME | Default response time threshold in milliseconds (0 to disable) | 0 |
| HEALTH_PORT | Port for the /health HTTP endpoint |
8081 |
| DEBUG | Enable debug mode | false |
SuperUsers are specified via repeated --super=<username> flags (not environment variables).
All commands are available in the Telegram commands menu (/) for easy access.
| 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 with action buttons |
| /stats | Show detailed statistics for all servers |
| /details [name] | Show detailed information for a specific server |
| /setresponsetime [name] [ms] | Set response time threshold in milliseconds |
| /setcontent [name] [text] | Set expected content that should be present in the response |
| /setsslthreshold [name] [days] | Set SSL expiry threshold for specific server |
| /setglobalsslthreshold [days] | Set global SSL expiry threshold for all servers |
| /help | Show help message with all available commands |
# Install dev tools (golangci-lint)
make tools
# Run tests
make test
# Run tests with race detection
make test-race
# Run tests with coverage report
make test-coverage
# Run linter
make lint
# Format code
make fmt
# Build binary
make buildWe welcome contributions to improve this project.
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
