jpdhas / cloudwatch_alarm_to_slack

A python library to send cloudwatch alarm events from sns to slack

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cloudwatch Alarm to Slack Notifier

pypi pyup python-version

A python library to send cloudwatch alarm notifications to Slack.

Usage

  • Install the package.
pip install cloudwatch_alarm_to_slack
  • It is expected this will be used as a part of a lambda.
from cloudwatch_alarm_to_slack.entrypoint import CloudwatchAlarmNotifier

def lambda_handler(event, context):
    CloudwatchAlarmNotifier.handle_event(event)
  • It is required the following environment variable be set:

    • SLACK_BOT_TOKEN: Bot token of the slack app which should have the chat:write permissions.
    • SLACK_CHANNEL: ID of the Slack channel to which notification should be sent to.

If there is another usecase, please open an issue and let me know :)

About

A python library to send cloudwatch alarm events from sns to slack

License:MIT License


Languages

Language:Python 95.9%Language:Makefile 4.1%