Skip to content

Commit

Permalink
docs(notifications): slack notification docs (datahub-project#5871)
Browse files Browse the repository at this point in the history
  • Loading branch information
anshbansal authored and hsheth2 committed Sep 8, 2022
1 parent 561882f commit bc6b5b2
Show file tree
Hide file tree
Showing 11 changed files with 112 additions and 15 deletions.
2 changes: 1 addition & 1 deletion docs-website/genJsonSchema/generateJsonSchema.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ if [ -f "${SCHEMA_ROOT_DIR}/${SCHEMA_FILE_NAME}" ]; then
fi

echo "Generating Json schema..."
python gen_json_schema.py ../../docs/generated/ingestion/config_schemas/ ${SCHEMA_ROOT_DIR}/${SCHEMA_FILE_NAME}
python3 gen_json_schema.py ../../docs/generated/ingestion/config_schemas/ ${SCHEMA_ROOT_DIR}/${SCHEMA_FILE_NAME}
10 changes: 5 additions & 5 deletions docs-website/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -445,11 +445,11 @@ module.exports = {
"docs/domains",
"docs/how/business-glossary-guide",
"docs/tags",
// {
// type: "doc",
// id: "docs/wip/slack-notifications",
// className: "saasOnly",
// },
{
type: "doc",
id: "docs/managed-datahub/saas-slack-setup",
className: "saasOnly",
},
// "docs/wip/ui-ingestion-guide", -- not needed
// "docs/wip/personal-access-tokens-guide", -- not needed

Expand Down
2 changes: 1 addition & 1 deletion docs-website/src/pages/docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const featureGuideContent = [
{ title: "Metadata Tests", icon: <CheckCircleTwoTone />, to: "docs/wip/metadata-tests" },
{ title: "Approval Flows", icon: <SafetyCertificateTwoTone />, to: "docs/wip/approval-workflows" },
{ title: "Personal Access Tokens", icon: <LockTwoTone />, to: "docs/authentication/personal-access-tokens" },
{ title: "Slack Notifications", icon: <SlackOutlined />, to: "docs/wip/slack-notifications" },
{ title: "Slack Notifications", icon: <SlackOutlined />, to: "docs/managed-datahub/saas-slack-setup" },
{ title: "Schema History", icon: <HistoryOutlined />, to: "docs/schema-history" },
];

Expand Down
Binary file added docs/imgs/slack/slack_add_token.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/imgs/slack/slack_basic_info.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/imgs/slack/slack_channel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/imgs/slack/slack_channel_url.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/imgs/slack/slack_user_id.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
106 changes: 105 additions & 1 deletion docs/managed-datahub/saas-slack-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,108 @@ import FeatureAvailability from '@site/src/components/FeatureAvailability';

<FeatureAvailability saasOnly />

This page is under construction - more details coming soon!
## Install the DataHub Slack App into your Slack workspace

The following steps should be performed by a Slack Workspace Admin.
- Navigate to https://api.slack.com/apps/
- Click Create New App
- Use “From an app manifest” option
- Select your workspace
- Paste this Manifest in YAML. Suggest changing name and `display_name` to be `DataHub App YOUR_TEAM_NAME` but not required. This name will show up in your slack workspace
```yml
display_information:
name: DataHub App
description: An app to integrate DataHub with Slack
background_color: "#000000"
features:
bot_user:
display_name: DataHub App
always_online: false
oauth_config:
scopes:
bot:
- channels:read
- chat:write
- commands
- groups:read
- im:read
- mpim:read
- team:read
- users:read
- users:read.email
settings:
org_deploy_enabled: false
socket_mode_enabled: false
token_rotation_enabled: false
```
Confirm you see the Basic Information Tab
![](../imgs/slack/slack_basic_info.png)
- Click **Install to Workspace**
- It will show you permissions the Slack App is asking for, what they mean and a default channel in which you want to add the slack app
- Note that the Slack App will only be able to post in channels that the app has been added to. This is made clear by slack’s Authentication screen also.
- Select the channel you'd like notifications to go to and click **Allow**
- Go to DataHub App page
- You can find your workspace's list of apps at https://api.slack.com/apps/
## Generating a Bot Token
- Go to **OAuth & Permissions** Tab
![](../imgs/slack/slack_oauth_and_permissions.png)
Here you'll find a “Bot User OAuth Token” which DataHub will need to communicate with your slack through the bot.
In the next steps, we'll show you how to configure the Slack Integration inside of Acryl DataHub.
## Configuring Notifications
> In order to set up the Slack integration, the user must have the `Manage Platform Settings` privilege.

To enable the integration with slack
- Navigate to **Settings > Integrations**
- Click **Slack**
- Enable the Integration
- Enter the **Bot Token** obtained in the previous steps
- Enter a **Default Slack Channel** - this is where all notifications will be routed unless
- Click **Update** to save your settings

![](../imgs/slack/slack_add_token.png)

To enable and disable specific types of notifications, or configure custom routing for notifications, start by navigating to **Settings > Notifications**.
To enable or disable a specific notification type in Slack, simply click the check mark. By default, all notification types are enabled.
To customize the channel where notifications are send, click the button to the right of the check box.

![](../imgs/slack/slack_channel.png)

If provided, a custom channel will be used to route notifications of the given type. If not provided, the default channel will be used.
That's it! You should begin to receive notifications on Slack. Note that it may take up to 1 minute for notification settings to take effect after saving.

## Sending Notifications

For now we support sending notifications to
- Slack Channel ID (e.g. `C029A3M079U`)
- Slack Channel Name (e.g. `#troubleshoot`)
- Specific Users (aka Direct Messages or DMs) via user ID

## How to find Team ID and Channel ID in Slack

- Go to the Slack channel for which you want to get channel ID
- Check the URL e.g. for the troubleshoot channel in OSS DataHub slack

![](../imgs/slack/slack_channel_url.png)

- Notice `TUMKD5EGJ/C029A3M079U` in the URL
- Team ID = `TUMKD5EGJ` from above
- Channel ID = `C029A3M079U` from above

## How to find User ID in Slack

- Go to user DM
- Click on their profile picture
- Click on View Full Profile
- Click on “More”
- Click on “Copy member ID”

![](../imgs/slack/slack_user_id.png)
7 changes: 0 additions & 7 deletions docs/wip/slack-notifications.md

This file was deleted.

0 comments on commit bc6b5b2

Please sign in to comment.