https://github.com/andruten/healthcheckbot
A python telegram bot for health checking services
https://github.com/andruten/healthcheckbot
bot healthcheck python telegram-bot
Last synced: 3 months ago
JSON representation
A python telegram bot for health checking services
- Host: GitHub
- URL: https://github.com/andruten/healthcheckbot
- Owner: andruten
- Created: 2021-11-30T20:22:45.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-20T21:44:58.000Z (5 months ago)
- Last Synced: 2025-02-20T22:30:43.778Z (5 months ago)
- Topics: bot, healthcheck, python, telegram-bot
- Language: Python
- Homepage:
- Size: 112 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Health check bot
Welcome to Health check bot 👋!! I'm a python bot for telegram which intends to implement a (very basic) healthcheck
system. I perform HTTP requests and I'll let you know if your service is healthy :).## Available commands
### list
List all polling services
```
/list
```### add
Add new service to the polling list
```
/add
```
- `name` is the name that will be stored
- `url` is the url that will be reached by the service### remove
Unsubscribe a service from the polling list by name
```
/remove
```## Environment variables
| Key | example value | Description |
|---------------------|---------------|------------------------------------------------------------------------------|
| BOT_TOKEN | 1234:abcde | Bot token obtained by Bot father |
| ALLOW_LIST_CHAT_IDS | 1234,5678 | A comma-separated list for allow list groups which can interact with the bot |
| POLLING_INTERVAL | 60 | The polling interval |
| LOG_LEVEL | INFO | Log level of the application |