Send Slack messages spiced with data from Snowflake.
Project description
snowflake-to-slack
Easily send Slack messages templated with data from Snowflake.
snowflake-to-slack
can be executed as:
Use cases
- send daily / weekly / monthly reports to your SDR or any channel in human words.
- send information on whether anomalies were detected in the selected metrics. With e.g. SQL anomaly detection.
- view information about yesterday's credit spend in Slack.
- monitor dbt model execution and dependencies from Slack with dbt_artifacts.
How to setup snowflake-to-slack
- First you need to generate Slack Token.
- Design your Slack message with Slack Block Kit
- Inside your repository (it can be also
dbt
repository) create new folder. e.g.slack_templates
and copy designed message here. I recommend you to use.j2
suffix, e.g.test.j2
. - Inside your Slack template, replace all dynamic values you want to replace with Snowflake data with
{{<COLUMN NAME>}}
. E.g.
{
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Hello {{GREETINGS}}"
}
}
]
}
Then if I will have SQL query in Snowflake like this:
SELECT 'guys!' AS GREETINGS
The message Hello guys!
will be sent to Slack.
BEWARE you need to uppercase your variable names in template since Snowflake is uppercasing column names by default!!
Inside templates you can use anything from Jinja templating language (as you probably know from dbt
), e.g.:
-- default
"text": "Hello {{GREETINGS|default('girls!')}}"
-- conditions
{% if SLACK_CHANNEL == '#general' %}
"text": "Hello people"
{% else %}
"text": "Hello {{USERNAME}}!"
{% endif %}
-- for loop
"text": "You have:
{% for i in range(3) %}
{{ i }}
{% endfor %}
seconds to answer!
"
You can also include and import other templates!
See Template Designer Documentation for full reference of Jinja2 syntax.
-
Create Snowflake SQL script. Here are some things you should know:
- Every row from SQL will be send as separated Slack Message. It means that if you want to send PM to different Slack users you do not have to create separete SQL for her/him, but you create one SQL and add column
SLACK_CHANNEL
with Slack user id. With this you are able to burst it. - There are some special columns that influence the message distribution:
SLACK_MESSAGE_TEMPLATE
: full name of Jinja template (e.g.test.j2
) from template path. This value can be overriden with cli parameters (see later).SLACK_MESSAGE_TEXT
: useful if you want to send just simple message without block kit and without templating. So you can useSLACK_MESSAGE_TEMPLATE
orSLACK_MESSAGE_TEXT
. If you use both,SLACK_MESSAGE_TEMPLATE
will be used for main message in Slack andSLACK_MESSAGE_TEXT
for notification message. This value can be overriden with cli parameters (see later).SLACK_CHANNEL
: name of Slack channel (with#
) where you want to send your message. Can also be the name (john.doe
) or ID of Slack user.SLACK_FREQUENCY
: useful e.g. in cases when you have one SQL and you want to burst it to many users. Some users wants this report daily but some weekly. Specify list of values separated with comma e.g.weekly,monthly
. Allowed values are:daily,weekly,monthly,quartely,yearly,monday,tuesday,wednesday,thursday,friday,saturday,sunday,never,always
- Name of column can be used in template (but it doesn't have to).
Example
SELECT 'test.j2' AS SLACK_MESSAGE_TEMPLATE, 'This is notification' AS SLACK_MESSAGE_TEXT, 'weekly,monthly' AS SLACK_FREQUENCY, '#random' as SLACK_CHANNEL, ------- 'guys!' as GREETINGS
- Every row from SQL will be send as separated Slack Message. It means that if you want to send PM to different Slack users you do not have to create separete SQL for her/him, but you create one SQL and add column
-
You of course need some Snowflake credentials :). You can use simple name/password or key-pair authorization.
Sending messages
You can send Slack messages with:
Github Actions
Quickstart
- inside your Github repository create folder
.github/workflows
(unless it already exists). - create new file e.g.
main.yml
- specify your workflow, e.g.:
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 0 * * *'
jobs:
snowflake-to-slack:
runs-on: ubuntu-latest
name: snowflake to slack
steps:
- name: Checkout repository
uses: actions/checkout@v2.3.3
- name: Slack message 1
uses: offbi/snowflake-to-slack@1.0.0
with:
user: ${{ secrets.USER }}
password: "${{ secrets.PASSWORD }}"
account: "<your Snowflake account name>"
warehouse: "<your Snowflake warehouse name>"
database: "<your Snowflake database name>"
role: "<your Snowflake role name>"
slack-token: ${{ secrets.SLACK_TOKEN }}
sql: "<your Snowflake select statement>"
template-path: /github/workspace/<name of template folder in your repo>
Beware before you run snowflake-to-slack
you needt to run actions/checkout
action. template-path
hash to be specified ad /github/workspace/<name of template folder>
- it is adviced to use Github Secrets to specify passwords and slack-tokens.
- push to Github :)
To learn more about Github actions see https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions.
Github Action parameters
user
: Snowflake Username. Required: truepassword
: Snowflake Password. Required: falsersa-key-uri
: URI of RSA key for authorization. Required: falseprivate-key-pass
: RSA key password. Required: falseaccount
: Snowflake Account. Required: truewarehouse
: Snowflake Warehouse. Required: truedatabase
: Snowflake Database. Required: truerole
: Snowflake Role. Required: trueslack-token
: Slack Token. Required: trueslack-channel
: Slack Channel. This parameter overrides value from database Required: falsefail-fast
: Raise error and stop execution if error shows during sending message. Required: falsedry-run
: Just print message into stdout. Do not send message to Slack. Required: falsedate-valid
: Date valid for deciding if message should be executed. Default current date. Required: falsesql
: SQL command to run. Required: truetemplate-path
: Path with your Jinja templates. Required: trueslack-frequency
: Frequency. Together with date-valid determines whether the message is sent. This parameter overrides value from database. Required: false.slack-message-template
: Message template. It overridesSLACK_MESSAGE_TEMPLATE
from Snowflake. Required: false.slack-message-text
: Message text. It overridesSLACK_MESSAGE_TEXT
from Snowflake. Required: false.
Docker container
To run Docker container execute:
docker run <list of envs> offbi/snowflake-to-slack <params>
Python script
Install snowflake-to-slack
with:
pip install snowflake-to-slack=='1.0.0'
snowflake-to-slack <params>
List of snowflake-to-slack
params
--user
: Snowflake Username. Required: true. Env variableSNOWFLAKE_USER
.--password
: Snowflake Password. Required: false. Env variableSNOWFLAKE_PASS
.--rsa-key-uri
: URI of RSA key for authorization. Required: false. Env variableSNOWFLAKE_RSA_KEY_URI
.--private-key-pass
: RSA key password. Required: false. Env variableSNOWFLAKE_PRIVATE_KEY_PASS
.--account
: Snowflake Account. Required: true. Env variableSNOWFLAKE_ACCOUNT
.--warehouse
: Snowflake Warehouse. Required: true. Env variableSNOWFLAKE_WAREHOUSE
.--database
: Snowflake Database. Required: true. Env variableSNOWFLAKE_USER
.--role
: Snowflake Role. Required: true. Env variableSNOWFLAKE_ROLE
.--slack-token
: Slack Token. Required: true. Env variableSLACK_TOKEN
.--slack-channel
: Slack Channel. This parameter overrides value from database Required: false. Env variableSLACK_CHANNEL
.--fail-fast
: Raise error and stop execution if error shows during sending message. Required: false. Env variableFAIL_FAST
.--dry-run
: Just print message into stdout. Do not send message to Slack. Required: false. Env variableDRY_RUN
.--date-valid
: Date valid for deciding if message should be executed. Default current date. Required: false. Env variableDATE_VALID
.--sql
: SQL command to run. Required: true. Env variableSQL
.--template-path
: Path with your Jinja templates. Required: true. Env variableTEMPLATE_PATH
.--slack-frequency
: Frequency. Together with date-valid determines whether the message is sent. This parameter overrides value from database. Required: false. Env variableSLACK_FREQUENCY
.--slack-message-template
: Message template. It overridesSLACK_MESSAGE_TEMPLATE
from Snowflake. Required: false. Env variableSLACK_MESSAGE_TEMPLATE
.--slack-message-text
: Message text. It overridesSLACK_MESSAGE_TEXT
from Snowflake. Required: false. Env variableSLACK_MESSAGE_TEXT
.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file snowflake_to_slack-1.0.0.tar.gz
.
File metadata
- Download URL: snowflake_to_slack-1.0.0.tar.gz
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c8ac4af9e2c4fff7fb4b66a42e4ecae4594225efd5b77f3f6cd7e5de71a0ea8 |
|
MD5 | 3244e0bb4d34818fdf7fe22abf72c4af |
|
BLAKE2b-256 | de34ab0528fa7f29a9a9053e9dcfa6dfc84476be45363da4b3377216f4ad2a83 |