Skip to content
Advertisement

Best practice how to send Django app logs to phone [closed]

I would like to send my logs from my Django app to my phone. I thought of using slack mail integration to send mails to a dedicated channel but this is only available in the paid slack version.

Do you have any ideas with what kind of setup I could achieve this? I don’t want to use plain mail since this is too spammy… Discord is also not working well with the webhook since it only pushed all 30 mins.

Thanks and all the best

Advertisement

Answer

You can look to Telegram Bot. It’s pretty simple to send messages with it.

All you need is register bot, add it to the Telegram group in which he should send messages and send GET requests when you need.

import requests

url = f"https://api.telegram.org/bot{your_bot_token}/sendMessage?chat_id= 
{your_group_with_bot_id}&parse_mode=Markdown&text={your_message}"
requests.get(url)
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement