CREATE NOTIFICATION INTEGRATION
引入或更新: v1.2.371
创建一个命名的通知集成,可用于向外部消息服务发送 通知。
注意: 此功能在 Databend Cloud 中开箱即用。
语法
Webhook 通知
CREATE NOTIFICATION INTEGRATION [ IF NOT EXISTS ] <name>
TYPE = <type>
ENABLED = <bool>
[ WEBHOOK = ( url = <string_literal>, method = <string_literal>, authorization_header = <string_literal> ) ]
[ COMMENT = '<string_literal>' ]
必填参数 | 描述 |
---|---|
name | 通知集成的名称。这是一个必填字段。 |
type | 通知集成的类型。目前仅支持 webhook 。 |
enabled | 通知集成是否启用。 |
可选参数 (Webhook) | 描述 |
---|---|
url | Webhook 的 URL。 |
method | 发送 Webhook 时使用的 HTTP 方法。默认是 GET |
authorization_header | 发送 Webhook 时使用的授权头。 |
示例
Webhook 通知
CREATE NOTIFICATION INTEGRATION IF NOT EXISTS SampleNotification type = webhook enabled = true webhook = (url = 'https://example.com', method = 'GET', authorization_header = 'bearer auth')
此示例创建了一个名为 SampleNotification
的通知集成,类型为 webhook
,已启用,并使用 GET
方法和 bearer auth
授权头发送通知到 https://example.com
URL。