Skip to main content
Version: Next

Slack

Slack sink connector

Support Those Engines

Spark
Flink
SeaTunnel Zeta

Key features

Description

Used to send data to Slack Channel. Both support streaming and batch mode.

For example, if the data from upstream is [age: 12, name: huan], the content send to socket server is the following: {"name":"huan","age":17}

Data Type Mapping

All data types are mapped to string.

Options

NameTypeRequiredDefaultDescription
webhooks_urlStringYes-Slack webhook url
oauth_tokenStringYes-Slack oauth token used for the actual authentication
slack_channelStringYes-slack channel for data write
common-optionsno-Sink plugin common parameters, please refer to Sink Common Options for details

Task Example

Simple:

sink {
SlackSink {
webhooks_url = "https://hooks.slack.com/services/xxxxxxxxxxxx/xxxxxxxxxxxx/xxxxxxxxxxxxxxxx"
oauth_token = "xoxp-xxxxxxxxxx-xxxxxxxx-xxxxxxxxx-xxxxxxxxxxx"
slack_channel = "channel name"
}
}

Changelog

new version

  • Add Slack Sink Connector