Skip to main content

Custom handlers for standard logging module

Project description

Async handlers to throw logs to telegram and discord via Telegram Bot API and Discord Webhook

Note! These handlers are asynchronous, so the order of the logs is not guaranteed!

Usage:

Specify these environment variables:

TELEGRAM_CHANNEL_ID - telegram user of channel id
TELEGRAM_TOKEN - token, that you can obtain from BotFather
SERVER_NAME - Machine name (useful, if you want to receive logs from different machines)
DISCORD_WEBHOOK_URL - Webhook url for discord
Special discord parameters Open Discord docs
SENDER_NAME
REGULAR_MESSAGE_TEXT
EMBEDS_TITLE

You also can configure handlers directly

from custom_handlers.logging_handlers import DiscordHandler, TelegramHandler
import logging
from logging import Formatter

logger = logging.getLogger(__name__)
logger.setLevel("DEBUG")

handler = TelegramHandler(token="ABCD",
                          channel_id="1234567890",
                          formatter=Formatter("%(asctime)s - "))
handler.setLevel("DEBUG")
logger.addHandler(handler)

d_handler = DiscordHandler(sender_name="Again testing",
                           regular_message_text="regular message",
                           embeds_title="Embedded title",
                           )

d_handler.setLevel("DEBUG")
logger.addHandler(d_handler)


logger.error("Error log message")
logger.info("Info log message")
logger.debug("Debug log message")
logger.warning("Warning log message")
logger.critical("Critical log message")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

external-logging-handlers-0.1.2.tar.gz (4.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page