tglogger
contains utilities to build and redirect logs to Telegram chat via a bot.
- It has a formatter for beautiful log messages in Telegram.
- It tends to tag common logs so that you can easily filter out related log messages.
- You can send logs to individuals, channels or groups.
- It works with Django (See badges for supported versions).
Build | Coverage | |
---|---|---|
master | ||
development |
Install via pip
:
pip install tglogger
tglogger
contains a formatter which formats log records for Telegram chats and a handler which sends log records to a Telegram chat.
Assuming you have a logger instance:
logger = logging.getLogger(__name__)
You need to have an instance of TelegramHandler
and TelegramFormatter
.
from tglogger import TelegramHandler, TelegramFormatter
handler = TelegramHandler(bot_token="foo", receiver="bar")
# you can also set TELEGRAM_BOT_TOKEN and TELEGRAM_RECEIVER
# environment variables so as not to pass these on initialization
formatter = TelegramFormatter() # initialize formatter
handler.setFormatter(formatter) # inject formatter into handler
logger.addHandler(handler) # inject handler into logger
And now your log records that has level above ERROR
will be sent to the chat you have defined with receiver
by the bot that you have defined by bot_token
.
logger.error("foo") # you will receive a message by your bot
Documentation has more information about how to use tglogger
. Refer to the documentation.