Notifications
The updater can notify you whenever it pushes record changes (and when a batch update fails). Both channels are optional and disabled by default.
Telegram
Section titled “Telegram”- Talk to @BotFather, send
/newbotand follow the prompts. Copy the bot token. - Get your chat ID: send any message to your new bot, then open
https://api.telegram.org/bot<TOKEN>/getUpdatesin a browser and readchat.idfrom the response. (For a group, add the bot to the group first.) - Configure:
notifications: telegram: enabled: true bot_token: "123456789:AAF..." chat_id: "123456789"Message text is URL-encoded automatically, so IPs and spaces arrive intact.
Discord
Section titled “Discord”- In your server: Server Settings → Integrations → Webhooks → New Webhook.
- Pick the channel and copy the webhook URL.
- Configure:
notifications: discord: enabled: true webhook_url: "https://discord.com/api/webhooks/..."Message content is JSON-escaped automatically.
When are notifications sent?
Section titled “When are notifications sent?”- After a successful batch update: one message listing how many records changed and the new IP(s).
- After a failed batch update: a failure notice.
- Never when nothing changed — a quiet cron run stays quiet.