better-slack-logger


Namebetter-slack-logger JSON
Version 0.12.0.post2 PyPI version JSON
download
home_pagehttps://github.com/Kayenta/better-slack-logger
SummarySlack Logger is a custom message logger to Slack for Python 3
upload_time2023-05-30 08:42:51
maintainerJay Turner
docs_urlNone
authorChinni Chaitanya
requires_python>=3.7
licenseMIT
keywords monitoring slack messaging logging health-check notification-service notification slack-api
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Better Slack Logger

This is a fork is [`python-slack-logger`](https://github.com/chinnichaitanya/python-slack-logger) package by [Chaitanya Chinni](https://github.com/chinnichaitanya/). If using this, please remove that from your environment.

A custom message logger to Slack for Python 3.
This project was built using [`slackclient`](https://github.com/slackapi/python-slackclient)
and the latest [Block Kit UI](https://api.slack.com/block-kit).

<a href="https://pypi.org/project/better-slack-logger/"><img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/better-slack-logger"></a>
[![PyPI version](https://badge.fury.io/py/better-slack-logger.svg)](https://badge.fury.io/py/better-slack-logger)
<a href="https://pepy.tech/project/better-slack-logger"><img alt="Downloads" src="https://static.pepy.tech/badge/better-slack-logger"></a>
<a href="https://pypi.org/project/better-slack-logger/#files"><img alt="PyPI - Wheel" src="https://img.shields.io/pypi/wheel/better-slack-logger"></a>
[![License: MIT](https://img.shields.io/pypi/l/better-slack-logger)](https://github.com/TurnrDev/better-slack-logger/blob/master/LICENSE)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/python/black)

## Install

Uninstall [`python-slack-logger`](https://github.com/chinnichaitanya/python-slack-logger) package by [Chaitanya Chinni](https://github.com/chinnichaitanya/) first: `pip uninstall python-slack-logger`  

Install via pip: `pip install better-slack-logger`

## Basic Usage

```python
from slack_logger import SlackLogger

token = "your slack app token"
options = {
    "service_name": "Backend API",
    "service_environment": "Production",
    "display_hostname": True,
    "default_level": "info",
}

logger = SlackLogger(token=token, **options)

channel = "#my_channel"
response = logger.send(
    channel=channel,
    title="Health Check",
    description="All services are running normally!",
)
```

![Image](https://raw.githubusercontent.com/TurnrDev/better-slack-logger/master/images/basic_message.png "Basic Usage")

## Configure various options

There are numerous configurations available to customise the message.

```python
options = {
    # Service name would be the name of the service sending the message to your Slack channel
    # This would usually be the name of the application sending the notification
    # If unset, the default value would be "Service"
    "service_name": "Backend API",

    # Usually services would run in staging and production environments
    # This field is to specify the environment from which the application is reponding for easy identification
    # If unset, this block would not appear in the message
    "service_environment": "Production",

    # An option to specify whether or not to display the hostname in the messages
    # The hostname is set by default, but it could be disabled by specifically setting this to `False`
    "display_hostname": True,

    # The default importance level of the message
    # The left bar color of the message would change depending on this
    # Available options are
    # - default: #1F2225
    # - error: #DB2828
    # - warn: #FBBD08
    # - info: #2185D0
    # - verbose: #6417C9
    # - debug: #2185D0
    # - success: #21BA45
    # If the `error` field is set during the construction of the message, the `level` is automatically set to `error`
    # If nothing is specified, `default` color would be used
    "default_level": "info",
}
```

## Emojis inbuilt! 😃

An appropriate emoji is automatically added before the title depending on the `level`.

Following is the map between `level` and the emoji added.

- default = `:mega:` 📣
- error = `:x:` ❌
- warn = `:warning:` ⚠️
- info = `:bell:` 🔔
- verbose = `:loud_sound:` 🔊
- debug = `:microscope:` 🔬
- success = `:rocket:` 🚀

## Examples

### Set Service Name and Environment for easy identification

You can configure the log message with service name and environment for easy identification.
The `Host` field which is the hostname of the server is automatically added for every message.

You can even send any meta information like the data in the variables, module names, metrics etc with the `metadata` field while constructing the message.
These data should be passed as a dictionary.

```python
from slack_logger import SlackLogger

token = "your slack app token"
options = {
    "service_name": "Backend API",
    "service_environment": "Production",
    "default_level": "info",
}

logger = SlackLogger(token=token, **options)

channel = "#my_channel"
response = logger.send(
    channel=channel,
    title="Health Check",
    description="Issue in establishing DB connections!",
    error="Traceback (most recent call last):\n ValueError: Database connect accepts only string as a parameter!",
    metadata={"module": "DBConnector", "host": 123.332},
)
```

![Image](https://raw.githubusercontent.com/TurnrDev/better-slack-logger/master/images/error_message.png "Message with Service Name, Icon and Environment")

### Send messages without Hostname

In case you do not want the hostname to be displayed in the message, disable it by setting `"display_hostname": False` in the `options` as follows.

```python
from slack_logger import SlackLogger

token = "your slack app token"
options = {
    "service_name": "Backend API",
    "service_environment": "Production",
    "display_hostname": False,
    "default_level": "info",
}

logger = SlackLogger(token=token, **options)

channel = "#my_channel"
response = logger.send(
    channel=channel,
    title="Health Check",
    description="All services are running normally!",
)
```

![Image](https://raw.githubusercontent.com/TurnrDev/better-slack-logger/master/images/basic_message_without_hostname.png "Basic message without Hostname")

### Send messages with different log-levels

The log-level indicates the importance of the message.
It changes the color of the Slack message in particular.
Currently supported levels are,

- `error`
- `warn`
- `info`
- `verbose`
- `debug`
- `success`

The log-level can be set during construction of the message like through the parameter `level`.

If the parameter isn't provided, it'll be set to the one given in `default_level`.
Any invalid input would be ignored and the log-level would be automatically be set to `default`.

Any complicated nested dictionary can be passed to the `metadata` field and the message gets forrmatted accordingly for easy reading.

```python
from slack_logger import SlackLogger

token = "your slack app token"
options = {
    "service_name": "Backend API",
    "service_environment": "Production",
    "default_level": "info",
}

logger = SlackLogger(token=token, **options)

channel = "#my_channel"
response = logger.send(
    channel=channel,
    title="Celery Task Manager",
    description="Successfully completed training job for model v1.3.3!",
    level="success",
    metadata={
        "Metrics": {
            "Accuracy": 78.9,
            "Inference time": "0.8 sec",
            "Model size": "32 MB",
        },
        "Deployment status": "progress",
    },
)
```

![Image](https://raw.githubusercontent.com/TurnrDev/better-slack-logger/master/images/success_message.png "Message with success log-level")

### Send complete error traceback

The `error` field can contain any error message.
It will be automatically be formatted in the final message.
For example, you can send a complete traceback of an error message to debug faster!

```python
import traceback

from slack_logger import SlackLogger


def get_traceback(e):
    tb = (
        "Traceback (most recent call last):\n"
        + "".join(traceback.format_list(traceback.extract_tb(e.__traceback__)))
        + type(e).__name__
        + ": "
        + str(e)
    )
    return tb


token = "your slack app token"
options = {
    "service_name": "Backend API",
    "service_environment": "Production",
    "default_level": "info",
}

err = KeyError("'email' field cannot be None")

logger = SlackLogger(token=token, **options)

channel = "#my_channel"
response = logger.send(
    channel=channel,
    title="Runtime Exception",
    description=err.__str__(),
    error=get_traceback(err),
    metadata={"email": None, "module": "auth", "method": "POST"},
)
```

![Image](https://raw.githubusercontent.com/TurnrDev/better-slack-logger/master/images/complete_error_traceback.png "Message with complete error traceback")

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Kayenta/better-slack-logger",
    "name": "better-slack-logger",
    "maintainer": "Jay Turner",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "jay.turner@kayenta.io",
    "keywords": "monitoring,slack,messaging,logging,health-check,notification-service,notification,slack-api",
    "author": "Chinni Chaitanya",
    "author_email": "chchaitanya95@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/c5/fc/5f80179964b601a60c30fb239119cccaedfdc1762bdad4ed54d4d743d520/better_slack_logger-0.12.0.post2.tar.gz",
    "platform": null,
    "description": "# Better Slack Logger\n\nThis is a fork is [`python-slack-logger`](https://github.com/chinnichaitanya/python-slack-logger) package by [Chaitanya Chinni](https://github.com/chinnichaitanya/). If using this, please remove that from your environment.\n\nA custom message logger to Slack for Python 3.\nThis project was built using [`slackclient`](https://github.com/slackapi/python-slackclient)\nand the latest [Block Kit UI](https://api.slack.com/block-kit).\n\n<a href=\"https://pypi.org/project/better-slack-logger/\"><img alt=\"PyPI - Python Version\" src=\"https://img.shields.io/pypi/pyversions/better-slack-logger\"></a>\n[![PyPI version](https://badge.fury.io/py/better-slack-logger.svg)](https://badge.fury.io/py/better-slack-logger)\n<a href=\"https://pepy.tech/project/better-slack-logger\"><img alt=\"Downloads\" src=\"https://static.pepy.tech/badge/better-slack-logger\"></a>\n<a href=\"https://pypi.org/project/better-slack-logger/#files\"><img alt=\"PyPI - Wheel\" src=\"https://img.shields.io/pypi/wheel/better-slack-logger\"></a>\n[![License: MIT](https://img.shields.io/pypi/l/better-slack-logger)](https://github.com/TurnrDev/better-slack-logger/blob/master/LICENSE)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/python/black)\n\n## Install\n\nUninstall [`python-slack-logger`](https://github.com/chinnichaitanya/python-slack-logger) package by [Chaitanya Chinni](https://github.com/chinnichaitanya/) first: `pip uninstall python-slack-logger`  \n\nInstall via pip: `pip install better-slack-logger`\n\n## Basic Usage\n\n```python\nfrom slack_logger import SlackLogger\n\ntoken = \"your slack app token\"\noptions = {\n    \"service_name\": \"Backend API\",\n    \"service_environment\": \"Production\",\n    \"display_hostname\": True,\n    \"default_level\": \"info\",\n}\n\nlogger = SlackLogger(token=token, **options)\n\nchannel = \"#my_channel\"\nresponse = logger.send(\n    channel=channel,\n    title=\"Health Check\",\n    description=\"All services are running normally!\",\n)\n```\n\n![Image](https://raw.githubusercontent.com/TurnrDev/better-slack-logger/master/images/basic_message.png \"Basic Usage\")\n\n## Configure various options\n\nThere are numerous configurations available to customise the message.\n\n```python\noptions = {\n    # Service name would be the name of the service sending the message to your Slack channel\n    # This would usually be the name of the application sending the notification\n    # If unset, the default value would be \"Service\"\n    \"service_name\": \"Backend API\",\n\n    # Usually services would run in staging and production environments\n    # This field is to specify the environment from which the application is reponding for easy identification\n    # If unset, this block would not appear in the message\n    \"service_environment\": \"Production\",\n\n    # An option to specify whether or not to display the hostname in the messages\n    # The hostname is set by default, but it could be disabled by specifically setting this to `False`\n    \"display_hostname\": True,\n\n    # The default importance level of the message\n    # The left bar color of the message would change depending on this\n    # Available options are\n    # - default: #1F2225\n    # - error: #DB2828\n    # - warn: #FBBD08\n    # - info: #2185D0\n    # - verbose: #6417C9\n    # - debug: #2185D0\n    # - success: #21BA45\n    # If the `error` field is set during the construction of the message, the `level` is automatically set to `error`\n    # If nothing is specified, `default` color would be used\n    \"default_level\": \"info\",\n}\n```\n\n## Emojis inbuilt! \ud83d\ude03\n\nAn appropriate emoji is automatically added before the title depending on the `level`.\n\nFollowing is the map between `level` and the emoji added.\n\n- default = `:mega:` \ud83d\udce3\n- error = `:x:` \u274c\n- warn = `:warning:` \u26a0\ufe0f\n- info = `:bell:` \ud83d\udd14\n- verbose = `:loud_sound:` \ud83d\udd0a\n- debug = `:microscope:` \ud83d\udd2c\n- success = `:rocket:` \ud83d\ude80\n\n## Examples\n\n### Set Service Name and Environment for easy identification\n\nYou can configure the log message with service name and environment for easy identification.\nThe `Host` field which is the hostname of the server is automatically added for every message.\n\nYou can even send any meta information like the data in the variables, module names, metrics etc with the `metadata` field while constructing the message.\nThese data should be passed as a dictionary.\n\n```python\nfrom slack_logger import SlackLogger\n\ntoken = \"your slack app token\"\noptions = {\n    \"service_name\": \"Backend API\",\n    \"service_environment\": \"Production\",\n    \"default_level\": \"info\",\n}\n\nlogger = SlackLogger(token=token, **options)\n\nchannel = \"#my_channel\"\nresponse = logger.send(\n    channel=channel,\n    title=\"Health Check\",\n    description=\"Issue in establishing DB connections!\",\n    error=\"Traceback (most recent call last):\\n ValueError: Database connect accepts only string as a parameter!\",\n    metadata={\"module\": \"DBConnector\", \"host\": 123.332},\n)\n```\n\n![Image](https://raw.githubusercontent.com/TurnrDev/better-slack-logger/master/images/error_message.png \"Message with Service Name, Icon and Environment\")\n\n### Send messages without Hostname\n\nIn case you do not want the hostname to be displayed in the message, disable it by setting `\"display_hostname\": False` in the `options` as follows.\n\n```python\nfrom slack_logger import SlackLogger\n\ntoken = \"your slack app token\"\noptions = {\n    \"service_name\": \"Backend API\",\n    \"service_environment\": \"Production\",\n    \"display_hostname\": False,\n    \"default_level\": \"info\",\n}\n\nlogger = SlackLogger(token=token, **options)\n\nchannel = \"#my_channel\"\nresponse = logger.send(\n    channel=channel,\n    title=\"Health Check\",\n    description=\"All services are running normally!\",\n)\n```\n\n![Image](https://raw.githubusercontent.com/TurnrDev/better-slack-logger/master/images/basic_message_without_hostname.png \"Basic message without Hostname\")\n\n### Send messages with different log-levels\n\nThe log-level indicates the importance of the message.\nIt changes the color of the Slack message in particular.\nCurrently supported levels are,\n\n- `error`\n- `warn`\n- `info`\n- `verbose`\n- `debug`\n- `success`\n\nThe log-level can be set during construction of the message like through the parameter `level`.\n\nIf the parameter isn't provided, it'll be set to the one given in `default_level`.\nAny invalid input would be ignored and the log-level would be automatically be set to `default`.\n\nAny complicated nested dictionary can be passed to the `metadata` field and the message gets forrmatted accordingly for easy reading.\n\n```python\nfrom slack_logger import SlackLogger\n\ntoken = \"your slack app token\"\noptions = {\n    \"service_name\": \"Backend API\",\n    \"service_environment\": \"Production\",\n    \"default_level\": \"info\",\n}\n\nlogger = SlackLogger(token=token, **options)\n\nchannel = \"#my_channel\"\nresponse = logger.send(\n    channel=channel,\n    title=\"Celery Task Manager\",\n    description=\"Successfully completed training job for model v1.3.3!\",\n    level=\"success\",\n    metadata={\n        \"Metrics\": {\n            \"Accuracy\": 78.9,\n            \"Inference time\": \"0.8 sec\",\n            \"Model size\": \"32 MB\",\n        },\n        \"Deployment status\": \"progress\",\n    },\n)\n```\n\n![Image](https://raw.githubusercontent.com/TurnrDev/better-slack-logger/master/images/success_message.png \"Message with success log-level\")\n\n### Send complete error traceback\n\nThe `error` field can contain any error message.\nIt will be automatically be formatted in the final message.\nFor example, you can send a complete traceback of an error message to debug faster!\n\n```python\nimport traceback\n\nfrom slack_logger import SlackLogger\n\n\ndef get_traceback(e):\n    tb = (\n        \"Traceback (most recent call last):\\n\"\n        + \"\".join(traceback.format_list(traceback.extract_tb(e.__traceback__)))\n        + type(e).__name__\n        + \": \"\n        + str(e)\n    )\n    return tb\n\n\ntoken = \"your slack app token\"\noptions = {\n    \"service_name\": \"Backend API\",\n    \"service_environment\": \"Production\",\n    \"default_level\": \"info\",\n}\n\nerr = KeyError(\"'email' field cannot be None\")\n\nlogger = SlackLogger(token=token, **options)\n\nchannel = \"#my_channel\"\nresponse = logger.send(\n    channel=channel,\n    title=\"Runtime Exception\",\n    description=err.__str__(),\n    error=get_traceback(err),\n    metadata={\"email\": None, \"module\": \"auth\", \"method\": \"POST\"},\n)\n```\n\n![Image](https://raw.githubusercontent.com/TurnrDev/better-slack-logger/master/images/complete_error_traceback.png \"Message with complete error traceback\")\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Slack Logger is a custom message logger to Slack for Python 3",
    "version": "0.12.0.post2",
    "project_urls": {
        "Homepage": "https://github.com/Kayenta/better-slack-logger",
        "Repository": "https://github.com/Kayenta/better-slack-logger"
    },
    "split_keywords": [
        "monitoring",
        "slack",
        "messaging",
        "logging",
        "health-check",
        "notification-service",
        "notification",
        "slack-api"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b1939fe379ad9597843bdc55e91eb50a35985e0120e7074749106ad2b9d614c",
                "md5": "c25886155af275fac558599d6e2563ee",
                "sha256": "7e8e2080f3056bfe592390d0eccf7f3be2eb735d33210ed002fd81a60c811116"
            },
            "downloads": -1,
            "filename": "better_slack_logger-0.12.0.post2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c25886155af275fac558599d6e2563ee",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 6903,
            "upload_time": "2023-05-30T08:42:49",
            "upload_time_iso_8601": "2023-05-30T08:42:49.369815Z",
            "url": "https://files.pythonhosted.org/packages/3b/19/39fe379ad9597843bdc55e91eb50a35985e0120e7074749106ad2b9d614c/better_slack_logger-0.12.0.post2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5fc5f80179964b601a60c30fb239119cccaedfdc1762bdad4ed54d4d743d520",
                "md5": "accc9b68873a6c179e01d1150bd20b06",
                "sha256": "9a0b368cfc218049bde377eeb0688e97d7910b22d50c1a951d04d7ea4a584df0"
            },
            "downloads": -1,
            "filename": "better_slack_logger-0.12.0.post2.tar.gz",
            "has_sig": false,
            "md5_digest": "accc9b68873a6c179e01d1150bd20b06",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 6097,
            "upload_time": "2023-05-30T08:42:51",
            "upload_time_iso_8601": "2023-05-30T08:42:51.107544Z",
            "url": "https://files.pythonhosted.org/packages/c5/fc/5f80179964b601a60c30fb239119cccaedfdc1762bdad4ed54d4d743d520/better_slack_logger-0.12.0.post2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-30 08:42:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Kayenta",
    "github_project": "better-slack-logger",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "better-slack-logger"
}
        
Elapsed time: 0.07137s