flashduty-knowledge-base 1.1.0 → 1.2.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- const n = `---
1
+ (function(n){"use strict";const t={CustomAlert:`---
2
2
  title: "标准告警事件集成指引"
3
3
  description: "通过标准协议推送自有系统告警事件到 Flashduty,实现告警事件自动化降噪处理。"
4
4
  date: "2024-05-11T10:00:00+08:00"
@@ -67,55 +67,67 @@ POST, Content-Type:"application/json"
67
67
 
68
68
  <div class="md-block">
69
69
 
70
- QueryString 必须需要包含参数 integration_key,用于访问控制。
70
+ #### Headers:
71
+ 字段|必含|类型|释义
72
+ :-:|:-:|:-:|:---
73
+ | Content-Type | 是 | string | 固定值:\`application/json\`。
71
74
 
72
- JsonBody 参数如下:
75
+ #### Query Strings:
76
+ 字段|必含|类型|释义
77
+ :-:|:-:|:-:|:---
78
+ | integration_key | 是 | string | 集成秘钥,用于访问控制。添加集成后获得。
73
79
 
74
- | 字段 | 必含 | 类型 | 释义 |
75
- | :----------: | :--: | :----: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
76
- | event_status | 是 | string | 告警 event 状态,枚举值:Critical:严重,Warning:警告,Info:提醒,Ok:恢复 |
77
- | alert_key | 是 | string | event 合并依据,不同告警 event 根据该字段和时间窗口合并为一个 alert |
78
- | title_rule | 否 | string | 告警 title 生成规则,形如\`$a::b::$c\`,用\`::\`分割子串,每一个子串可以是一个固定字符串或用\`$\`作为前缀的变量,变量内容将从 labels 参数中提取,提取不到将会报错。缺省时,系统将提取 labels 字段中的 service、cluster、resource 和 check 等标签生成规则 |
79
- | description | 否 | string | 告警描述,不超过 2048 个字符 |
80
- | labels | 否 | map | 告警标签集合,key 为标签名称,value 为标签值。标签是事件的描述,用于后续的关联和降噪,非常重要。1. 标签的 key 和 value 均为 string 类型,区分大小写。2. 标签的 key 不要超过 128 个字符。3. 至多传入 50 个标签。\`标签内容参考\`[最佳实践](#最佳实践) |
80
+ #### Payload:
81
81
 
82
+ 字段|必含|类型|释义
83
+ :-:|:-:|:-:|:---
84
+ | title_rule | 是 | string | 告警标题,不超过\`512\`个字符,超出后将自动截断。<br><br>支持根据告警内容动态生成标题,生成规则请参考 [定制故障标题](https://docs.flashcat.cloud/zh/flashduty/customize-incident-attrs)。
85
+ | event_status | 是 | string | 告警状态。<br><br>枚举值(\`首字母大写\`):*Critical*:严重,*Warning*:警告,*Info*:提醒,*Ok*:恢复。<br><br>当指定为Ok时,意味着对告警进行自动恢复。
86
+ | alert_key | 否 | string | 告警标识,用于对已经存在的告警进行更新或自动恢复。<br><br>您可以自定义此值,但不可超过\`255\`个字符。您也可以依赖系统自动生成,该值会在响应中返回。<br><br>如果您上报的是恢复事件,则此值必须存在。
87
+ | description | 否 | string | 告警描述,不超过\`2048\`个字符,超出后将自动截断。
88
+ | labels | 否 | map | 告警标签集合,key 为标签名称,value 为标签值:<br><br>1. 标签的 key 和 value 均为 string 类型,区分大小写。<br>2. 标签的 key 不要超过\`128\`个字符,遵循Prometheus标签命名规范。value 不超过\`2048\`个字符,超出后将自动截断。<br>3. 至多传入\`50\`个标签。\`标签内容参考\`[最佳实践](#最佳实践)。<br><br>示例:"resource": "171.26.23.22", "check": "api latency > 500ms"
89
+
82
90
  </div>
83
91
 
84
92
  ### 请求响应
85
93
 
86
- <div class="md-block">
87
-
88
- Body:
89
-
90
- 参数名称|必选|类型|描述
91
- ----------|---|---|---
92
- request_id|是|string|请求 trace id,用于问题追踪
93
- error|否|[Error](#Error)|错误描述,仅当出现错误时返回
94
+ 字段名称|必选|类型|描述
95
+ :-:|:-:|:-:|:---
96
+ request_id|是|string|请求 ID,用于链路追踪
97
+ error |否|[Error](#Error)|错误描述,仅当出现错误时返回
98
+ data |否|[Data](#Data)| 上报信息
99
+
100
+ <span id="Data"></span>
101
+ Data:
102
+
103
+ | 字段名称 | 必选 | 类型 | 描述 |
104
+ :-:|:-:|:-:|:---
105
+ | alert_key| 否 | string | 告警标识,可依据此值上报恢复事件。如果您上报事件时,已经指定了 alert_key,则此值不变。否则,系统自动生成。 |
94
106
 
95
107
  <span id="Error"></span>
96
108
  Error:
97
109
 
98
- | 参数名称 | 可选 | 类型 | 描述 |
99
- | -------- | ---- | ------ | -------- |
100
- | code | 是 | string | 错误码 |
101
- | message | | string | 错误描述 |
110
+ | 字段名称 | 必选 | 类型 | 描述 |
111
+ :-:|:-:|:-:|:---
112
+ | code | 是 | string | 错误码,枚举值参考 [Code](#Code) |
113
+ | message | | string | 错误描述 |
102
114
 
103
115
  <span id="Code"></span>
104
116
  Code:
105
117
 
106
- | 错误码 | HTTP Status | 描述 |
107
- | -------------------- | ----------- | -------------------------------------- |
108
- | InvalidParameter | 400 | 参数错误 |
109
- | InvalidContentType | 400 | Conten-Type 不支持 |
110
- | MethodNotAllowed | 400 | http method 不支持 |
111
- | Unauthorized | 401 | 登录认证失败 |
112
- | AccessDenied | 403 | 权限认证失败 |
113
- | RequestTooFrequently | 429 | 请求过于频繁 |
114
- | RouteNotFound | 404 | 请求 Method+Path 未匹配 |
115
- | ResourceNotFound | 400 | 账户未购买资源,前往费用中心线操作下单 |
116
- | InternalError | 500 | 内部或未知错误 |
118
+ | 错误码 | HTTP Status | 描述 |
119
+ | :-:|:-:| ------------------ |
120
+ | InvalidParameter | 400 | 参数错误 |
121
+ | InvalidContentType | 400 | Conten-Type 不支持 |
122
+ | MethodNotAllowed | 400 | HTTP Method 不支持 |
123
+ | Unauthorized | 401 | 登录认证未通过 |
124
+ | AccessDenied | 403 | 权限认证未通过 |
125
+ | RequestTooFrequently | 429 | 请求过于频繁 |
126
+ | RouteNotFound | 404 | 请求 Method+Path 未匹配 |
127
+ | ResourceNotFound | 400 | 账户未购买资源,先前往费用中心线操作下单|
128
+ | NoLicense | 400 | 账户无充足订阅 License,先前往费用中心升级或购买订阅
129
+ | InternalError | 500 | 内部或未知错误 |
117
130
 
118
- </div>
119
131
 
120
132
  ### 二、请求示例
121
133
  ---
@@ -127,9 +139,7 @@ curl -X POST '{api_host}/event/push/alert/standard?integration_key={integration_
127
139
  -H 'Content-Type: application/json' \\
128
140
  -d '{
129
141
  "event_status": "Warning",
130
- "alert_key": "asdfjl1234asdf2s",
131
- "description": "cpu idle low than 20%",
132
- "title_rule": "$cluster::$resource::$check",
142
+ "title_rule": "cpu idle low than 20%",
133
143
  "labels": {
134
144
  "service": "engine",
135
145
  "cluster":"nj",
@@ -145,7 +155,10 @@ curl -X POST '{api_host}/event/push/alert/standard?integration_key={integration_
145
155
 
146
156
  \`\`\`
147
157
  {
148
- "request_id": "0ace00116215ab4ca0ec5244b8fc54b0"
158
+ "request_id": "0ace00116215ab4ca0ec5244b8fc54b0",
159
+ "data": {
160
+ "alert_key": "9qJ798NJoXS4UMVB5SHsNj"
161
+ }
149
162
  }
150
163
  \`\`\`
151
164
 
@@ -193,9 +206,20 @@ curl -X POST '{api_host}/event/push/alert/standard?integration_key={integration_
193
206
 
194
207
  </details>
195
208
 
209
+ <details>
210
+ <summary>为什么推送请求成功?但是没有看到新告警或故障产生?</summary>
211
+
212
+ Flashduty 使用2层降噪机制:
196
213
 
214
+ 1. 首先对告警event进行去重检查,如果您推送的event和之前推送的event内容完全一致,则新的event将被直接丢弃。
215
+ 2. 如果新的event的状态和描述和其对应的告警的上一条event的状态、标题、描述均一致,则新的event将被直接丢弃,同时更新归属告警属性。
216
+ 3. 新的event可能由于匹配到排除、丢弃、抑制或静默规则,而被丢弃。
217
+ 4. 当新的event触发了新告警,则系统会进入第二层降噪检查,判断新告警是否可以被合并到某个活跃的故障中,如果可以,则只会并入已有的故障,而不会产生新故障。
197
218
 
198
- `, t = `---
219
+ 更多内容请参考 [告警降噪](https://docs.flashcat.cloud/zh/flashduty/what-is-noise-reduction)。
220
+ </details>
221
+
222
+ `,Email:`---
199
223
  title: "邮件Email集成"
200
224
  description: "在 Flashduty 生成唯一的邮件地址,通过邮件的方式将告警的发生与恢复同步到 Flashduty"
201
225
  date: "2024-05-11T10:00:00+08:00"
@@ -296,7 +320,7 @@ attachment_stripped = true
296
320
 
297
321
  当前邮件集成推送到 Flashduty 的告警等级均为Warning。
298
322
 
299
- `, e = `---
323
+ `,N9e:`---
300
324
  title: "夜莺/FlahCat集成"
301
325
  description: "通过 webhook 的方式将夜莺(Nightingale / n9e)或 Flashcat 告警事件推送到 Flashduty。当告警触发时,向 Flashduty 发送触发事件,当告警恢复时,向 Flashduty 发送恢复事件"
302
326
  date: "2024-05-11T10:00:00+08:00"
@@ -453,7 +477,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/nightingale-integration-guide"
453
477
 
454
478
  </details>
455
479
 
456
- `, a = `---
480
+ `,Prometheus:`---
457
481
  title: "Prometheus告警集成"
458
482
  description: "通过 webhook 的方式将 Prometheus 告警事件通过 AlertManager 推送到 Flashduty。当告警触发时,向 Flashduty 发送触发事件,当告警恢复时,向 Flashduty 发送恢复事件。"
459
483
  date: "2024-05-11T10:00:00+08:00"
@@ -637,7 +661,7 @@ Promtheus 到 Flashduty 告警等级映射关系:
637
661
 
638
662
 
639
663
 
640
- `, i = `---
664
+ `,Grafana:`---
641
665
  title: "Grafana集成"
642
666
  description: "通过 webhook 的方式同步 Grafana 告警事件到 Flashduty,实现告警事件自动化降噪处理。"
643
667
  date: "2024-05-11T10:00:00+08:00"
@@ -752,7 +776,7 @@ Grafana Alerting 到 Flashduty 告警等级映射关系:
752
776
  | ok | Ok | 恢复 |
753
777
 
754
778
  </div>
755
- `, s = `---
779
+ `,Zabbix:`---
756
780
  title: "Zabbix集成"
757
781
  description: "通过 webhook 的方式同步 Zabbix 告警事件到 Flashduty(支持 Zabbix 3.x ~ 6.x 版本,不同版本配置有差异),实现告警事件自动化降噪处理"
758
782
  date: "2024-05-11T10:00:00+08:00"
@@ -1114,7 +1138,7 @@ Zabbix 到快猫星云告警等级映射关系:
1114
1138
  | Not classified | Info | 提醒 |
1115
1139
 
1116
1140
  </div>
1117
- `, l = `---
1141
+ `,UptimeKuma:`---
1118
1142
  title: "Uptime Kuma 集成"
1119
1143
  description: "通过 webhook 的方式同步 Uptime Kuma 告警事件到 Flashduty,实现告警事件自动化降噪处理"
1120
1144
  date: "2024-05-11T10:00:00+08:00"
@@ -1198,7 +1222,7 @@ Uptime Kuma 到 Flashduty 告警等级映射关系:
1198
1222
  | Warning | Warning | 警告 |
1199
1223
  | Info | Info | 提醒 |
1200
1224
 
1201
- </div>`, d = `---
1225
+ </div>`,AliyunARMS:`---
1202
1226
  title: "阿里云 ARMS 集成"
1203
1227
  description: "通过 webhook 的方式同步阿里云 ARMS 监控告警事件到 Flashduty,实现告警事件自动化降噪处理"
1204
1228
  date: "2024-05-11T10:00:00+08:00"
@@ -1285,7 +1309,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/aliyun-arms-integration-guide"
1285
1309
  | P4 | Info | 提醒 |
1286
1310
 
1287
1311
  </div>
1288
- `, o = `---
1312
+ `,AliyunCmEvent:`---
1289
1313
  title: "阿里云监控 CM 事件集成"
1290
1314
  description: "通过 webhook 的方式同步阿里云云监控事件中心告警到 Flashduty,实现告警事件自动化降噪处理"
1291
1315
  date: "2024-05-11T10:00:00+08:00"
@@ -1374,7 +1398,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/aliyun-cm-event-integration-guide
1374
1398
  | INFO | Info | 提醒 |
1375
1399
 
1376
1400
  </div>
1377
- `, r = `---
1401
+ `,AliyunCm:`---
1378
1402
  title: "阿里云监控 CM 指标集成"
1379
1403
  description: "通过 webhook 的方式同步阿里云云监控告警事件到 Flashduty,实现告警事件自动化降噪处理"
1380
1404
  date: "2024-05-11T10:00:00+08:00"
@@ -1474,7 +1498,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/aliyun-cm-metric-integration-guid
1474
1498
  | NODATA | Info | 提醒 |
1475
1499
 
1476
1500
  </div>
1477
- `, c = `---
1501
+ `,AliyunSLS:`---
1478
1502
  title: "阿里云 SLS集成"
1479
1503
  description: "通过 webhook 的方式同步阿里云日志服务 SLS 监控告警事件到 Flashduty,实现告警事件自动化降噪处理"
1480
1504
  date: "2024-05-11T10:00:00+08:00"
@@ -1602,7 +1626,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/aliyun-sls-integration-guide"
1602
1626
  | 2 | Info | 提醒 |
1603
1627
 
1604
1628
  </div>
1605
- `, u = `---
1629
+ `,AWSCW:`---
1606
1630
  title: "AWS CloudWatch集成"
1607
1631
  description: "通过 webhook 的方式同步 AWS CloudWatch 告警事件到 Flashduty,实现告警事件自动化降噪处理"
1608
1632
  date: "2024-05-11T10:00:00+08:00"
@@ -1682,7 +1706,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/aws-cloudwatch-integration-guide"
1682
1706
  CloudWatch 监控所有指标告警均对应到 Flashduty “警告(warning)”级别告警。
1683
1707
 
1684
1708
  </div>
1685
- `, h = `---
1709
+ `,AzureMonitor:`---
1686
1710
  title: "Azure Monitor集成"
1687
1711
  description: "通过 webhook 的方式同步 Azure Monitor 告警事件到 Flashduty,实现告警事件自动化降噪处理"
1688
1712
  date: "2024-05-11T10:00:00+08:00"
@@ -1770,7 +1794,7 @@ Azure Monitor 到 Flashduty 告警等级映射关系:
1770
1794
  | Sev4 | Info | 提醒 |
1771
1795
 
1772
1796
  </div>
1773
- `, m = `---
1797
+ `,BaiDuBCM:`---
1774
1798
  title: "百度云BCM监控集成"
1775
1799
  description: "通过 webhook 的方式同步百度云 BCM 告警事件到 Flashduty,实现告警事件自动化降噪处理"
1776
1800
  date: "2024-05-11T10:00:00+08:00"
@@ -1846,7 +1870,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/baidu-bcm-integration-guide"
1846
1870
  | 通知 | Info | 提醒 |
1847
1871
 
1848
1872
  </div>
1849
- `, p = `---
1873
+ `,HuaWeiCES:`---
1850
1874
  title: "华为云监控 CES集成"
1851
1875
  description: 通过 webhook 的方式同步华为云监控 CES 告警事件到 Flashduty,实现告警事件自动化降噪处理"
1852
1876
  date: "2024-05-11T10:00:00+08:00"
@@ -1935,7 +1959,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/huawei-ces-integration-guide"
1935
1959
  | 提示 | Info | 提醒 |
1936
1960
 
1937
1961
  </div>
1938
- `, g = `---
1962
+ `,InfluxDB:`---
1939
1963
  title: "Influxdata 集成"
1940
1964
  description: "通过 webhook 的方式同步 Influxdata 告警事件到 Flashduty,实现告警事件自动化降噪处理"
1941
1965
  date: "2024-05-11T10:00:00+08:00"
@@ -2041,7 +2065,7 @@ Influxdata 告警事件到快猫星云告警等级映射关系:
2041
2065
  | unknow | Info | 提醒 |
2042
2066
 
2043
2067
  </div>
2044
- `, y = `---
2068
+ `,OpenFalcon:`---
2045
2069
  title: "Open Falcon集成"
2046
2070
  description: "通过 webhook 的方式同步 Open-Falcon 告警事件到 Flashduty,实现告警事件自动化降噪处理"
2047
2071
  date: "2024-05-11T10:00:00+08:00"
@@ -2127,7 +2151,7 @@ Open-Falcon 到 Flashduty 告警等级映射关系:
2127
2151
  | 6 | Info | 提醒 |
2128
2152
 
2129
2153
  </div>
2130
- `, _ = `---
2154
+ `,PagerDuty:`---
2131
2155
  title: "PagerDuty集成"
2132
2156
  description: "可以通过 PagerDuty 协议推送告警事件到 Flashduty,实现告警事件自动化降噪处理"
2133
2157
  date: "2024-05-11T10:00:00+08:00"
@@ -2291,7 +2315,7 @@ pagerduty_v2_payload_source: mysql.host.name
2291
2315
  4. 步骤 4:重启 ElastAlert,等待告警触发
2292
2316
 
2293
2317
  </div>
2294
- `, f = `---
2318
+ `,TencentBK:`---
2295
2319
  title: "蓝鲸智云集成"
2296
2320
  description: "通过 webhook 的方式同步蓝鲸智云监控事件到 Flashduty,实现告警事件自动化降噪处理"
2297
2321
  date: "2024-05-11T10:00:00+08:00"
@@ -2390,7 +2414,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/tencent-bk-integration-guide"
2390
2414
  | 提醒 | Info | 提醒 |
2391
2415
 
2392
2416
  </div>
2393
- `, b = `---
2417
+ `,TencentCLS:`---
2394
2418
  title: "腾讯云日志服务CLS集成"
2395
2419
  description: "通过 webhook 的方式同步腾讯云日志服务 CLS 监控告警事件到 Flashduty,实现告警事件自动化降噪处理"
2396
2420
  date: "2024-05-11T10:00:00+08:00"
@@ -2536,7 +2560,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/tencent-cls-integration-guide"
2536
2560
  | Critical | Critical | 紧急
2537
2561
 
2538
2562
  </div>
2539
- `, v = `---
2563
+ `,TencentCm:`---
2540
2564
  title: "腾讯云监控 CM集成"
2541
2565
  description: "通过 webhook 的方式同步腾讯云监控 CM 告警事件到 Flashduty,实现告警事件自动化降噪处理"
2542
2566
  date: "2024-05-11T10:00:00+08:00"
@@ -2610,7 +2634,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/tencent-cm-integration-guide"
2610
2634
  腾讯云监控所有指标告警均对应到 Flashduty “警告(warning)”级别告警。
2611
2635
 
2612
2636
  </div>
2613
- `, w = `---
2637
+ `,TencentEb:`---
2614
2638
  title: "腾讯云EventBridge"
2615
2639
  description: "通过 webhook 的方式同步腾讯云事件总线 EB 事件到 Flashduty,实现告警事件自动化降噪处理"
2616
2640
  date: "2024-05-11T10:00:00+08:00"
@@ -2703,7 +2727,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/tencent-event-bridge-integration-
2703
2727
  腾讯云事件总线所有事件均对应到 Flashduty “警告(warning)”级别告警。
2704
2728
 
2705
2729
  </div>
2706
- `, k = `---
2730
+ `,OceanBase:`---
2707
2731
  title: "OceanBase 告警事件"
2708
2732
  description: "通过 webhook 的方式同步OceanBase告警事件到 Flashduty,实现告警事件自动化降噪处理"
2709
2733
  date: "2024-05-23T10:00:00+08:00"
@@ -2917,7 +2941,7 @@ OCP告警通知-单条告警
2917
2941
  |提醒|Info|提醒|
2918
2942
 
2919
2943
  </div>
2920
- `, F = `---
2944
+ `,Graylog:`---
2921
2945
  title: "Graylog 告警事件"
2922
2946
  description: "通过 webhook 的方式同步Graylog告警事件到 Flashduty,实现告警事件自动化降噪处理"
2923
2947
  date: "2024-06-18T10:00:00+08:00"
@@ -3014,7 +3038,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/graylog-integration-guide"
3014
3038
  |1|Info|提醒|
3015
3039
 
3016
3040
  </div>
3017
- `, x = `---
3041
+ `,Skywalking:`---
3018
3042
  title: "Skywalking 告警事件"
3019
3043
  description: "通过 webhook 的方式同步 Skywalking 告警事件到 Flashduty,实现告警事件自动化降噪处理"
3020
3044
  date: "2024-06-20T10:00:00+08:00"
@@ -3116,7 +3140,7 @@ hooks:
3116
3140
 
3117
3141
 
3118
3142
  </div>
3119
- `, T = `---
3143
+ `,Sentry:`---
3120
3144
  title: "Sentry 告警事件"
3121
3145
  description: "通过 webhook 的方式同步 Sentry 告警事件到 Flashduty,实现告警事件自动化降噪处理"
3122
3146
  date: "2024-07-05T10:00:00+08:00"
@@ -3227,7 +3251,7 @@ Sentry 提供了两类告警机制:Issue Alerts 和 Metric Alerts。Issue Aler
3227
3251
  |resolved|Ok|恢复|
3228
3252
 
3229
3253
  </div>
3230
- `, L = `---
3254
+ `,Jiankongbao:`---
3231
3255
  title: "监控宝告警事件"
3232
3256
  description: "通过 webhook 的方式同步监控宝告警事件到 Flashduty,实现告警事件自动化降噪处理"
3233
3257
  date: "2024-08-20T10:00:00+08:00"
@@ -3322,7 +3346,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/jiankongbao-integration-guide"
3322
3346
  |2|Info|提醒|
3323
3347
 
3324
3348
  </div>
3325
- `, S = `---
3349
+ `,AWSEventBridge:`---
3326
3350
  title: "AWS EventBridge 告警事件"
3327
3351
  description: "通过 webhook 的方式同步 AWS EventBridge 告警事件到 Flashduty,实现告警事件自动化降噪处理"
3328
3352
  date: "2024-08-20T10:00:00+08:00"
@@ -3427,7 +3451,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/aws-eventbridge-integration-guide
3427
3451
 
3428
3452
  </div>
3429
3453
 
3430
- `, A = `---
3454
+ `,Dynatrace:`---
3431
3455
  title: "Dynatrace 告警事件"
3432
3456
  description: "通过 webhook 的方式同步 Dynatrace 告警事件到 Flashduty,实现告警事件自动化降噪处理。"
3433
3457
  date: "2024-08-20T10:00:00+08:00"
@@ -3541,7 +3565,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/dynatrace-integration-guide"
3541
3565
  |CUSTOM_ALERT|Info|提醒|
3542
3566
 
3543
3567
  </div>
3544
- `, C = `---
3568
+ `,HuaweiyunLTS:`---
3545
3569
  title: "华为云日志服务 LTS 告警事件"
3546
3570
  description: "通过 webhook 的方式同步华为云日志服务 LTS 告警事件到 Flashduty,实现告警事件自动化降噪处理。"
3547
3571
  date: "2024-08-20T10:00:00+08:00"
@@ -3657,7 +3681,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/huaweilts-integration-guide"
3657
3681
  |Info|Info|提醒|
3658
3682
 
3659
3683
  </div>
3660
- `, I = `---
3684
+ `,GoogleCM:`---
3661
3685
  title: "GoogleCloudMonitoring 告警事件"
3662
3686
  description: "通过 webhook 的方式同步 GoogleCloudMonitoring 告警事件到 Flashduty,实现告警事件自动化降噪处理"
3663
3687
  date: "2024-07-05T10:00:00+08:00"
@@ -3751,7 +3775,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/gcpcm-integration-guide"
3751
3775
  |No severity|Info|提醒|
3752
3776
 
3753
3777
  </div>
3754
- `, D = `---
3778
+ `,Splunk:`---
3755
3779
  title: "Splunk 告警事件"
3756
3780
  description: "通过 webhook 的方式同步 Splunk 告警事件到 Flashduty,实现告警事件自动化降噪处理"
3757
3781
  date: "2024-08-20T10:00:00+08:00"
@@ -3828,7 +3852,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/splunk-integration-guide"
3828
3852
  <div class="md-block">
3829
3853
  由于 Splunk 的告警事件没有区分严重程度,所以 Splunk 推送到 Flashduty的所有告警事件状态都为 Warning 且没有恢复事件。
3830
3854
  </div>
3831
- `, P = `---
3855
+ `,AppDynamics:`---
3832
3856
  title: "AppDynamics 告警事件"
3833
3857
  description: "通过 webhook 的方式同步 AppDynamics 告警事件到 Flashduty,实现告警事件自动化降噪处理"
3834
3858
  date: "2024-07-05T10:00:00+08:00"
@@ -3995,7 +4019,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/appdynamics-integration-guide"
3995
4019
  |INFO|Info|提醒|
3996
4020
 
3997
4021
  </div>
3998
- `, M = `---
4022
+ `,SolarWinds:`---
3999
4023
  title: "SolarWinds 告警事件"
4000
4024
  description: "通过 webhook 的方式同步 SolarWinds 告警事件到 Flashduty,实现告警事件自动化降噪处理"
4001
4025
  date: "2024-08-20T10:00:00+08:00"
@@ -4100,7 +4124,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/solarwinds-integration-guide"
4100
4124
  |Info|Info|提醒|
4101
4125
 
4102
4126
  </div>
4103
- `, $ = `---
4127
+ `,VolcEngineMetric:`---
4104
4128
  title: "火山引擎云监控告警事件"
4105
4129
  description: "通过 webhook 的方式同步火山引擎云监控告警事件到 Flashduty,实现告警事件自动化降噪处理"
4106
4130
  date: "2024-08-20T10:00:00+08:00"
@@ -4191,7 +4215,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/volcengine-metric-integration-gui
4191
4215
  |通知|Info|提醒|
4192
4216
 
4193
4217
  </div>
4194
- `, E = `---
4218
+ `,VolcEngineEvent:`---
4195
4219
  title: "火山引擎云监控事件中心告警事件"
4196
4220
  description: "通过 webhook 的方式同步火山引擎云监控事件中心告警事件到 Flashduty,实现告警事件自动化降噪处理"
4197
4221
  date: "2024-07-05T10:00:00+08:00"
@@ -4280,7 +4304,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/volcengine-event-integration-guid
4280
4304
  |通知|Info|提醒|
4281
4305
 
4282
4306
  </div>
4283
- `, N = `---
4307
+ `,VolcEngineTLS:`---
4284
4308
  title: "火山引擎日志服务 TLS 告警事件"
4285
4309
  description: "通过 webhook 的方式同步火山引擎日志服务 TLS 告警事件到 Flashduty,实现告警事件自动化降噪处理"
4286
4310
  date: "2024-07-05T10:00:00+08:00"
@@ -4417,7 +4441,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/volcengine-tls-integration-guide"
4417
4441
  |通知|Info|提醒|
4418
4442
 
4419
4443
  </div>
4420
- `, W = `---
4444
+ `,OpManager:`---
4421
4445
  title: "Opmanager 告警事件"
4422
4446
  description: "通过 webhook 的方式同步 Opmanager 告警事件到 Flashduty,实现告警事件自动化降噪处理"
4423
4447
  date: "2024-07-05T10:00:00+08:00"
@@ -4552,7 +4576,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/opmanager-integration-guide"
4552
4576
  | Attention | Info | 提醒 |
4553
4577
 
4554
4578
  </div>
4555
- `, R = `---
4579
+ `,Meraki:`---
4556
4580
  title: "Meraki 告警事件"
4557
4581
  description: "通过 webhook 的方式同步 Meraki 告警事件到 Flashduty,实现告警事件自动化降噪处理"
4558
4582
  date: "2024-07-05T10:00:00+08:00"
@@ -4628,7 +4652,82 @@ url: "https://docs.flashcat.cloud/zh/flashduty/meraki-integration-guide"
4628
4652
  | informational | Info | 提醒 |
4629
4653
 
4630
4654
  </div>
4631
- `, z = `---
4655
+ `,Zilliz:`---
4656
+ title: "zilliz 告警事件"
4657
+ description: "通过 webhook 的方式同步 zilliz 告警事件到 Flashduty,实现告警事件自动化降噪处理"
4658
+ date: "2024-07-05T10:00:00+08:00"
4659
+ url: "https://docs.flashcat.cloud/zh/flashduty/zilliz-integration-guide"
4660
+ ---
4661
+
4662
+ 通过 webhook 的方式同步 Zilliz 告警事件到 Flashduty,实现告警事件自动化降噪处理。
4663
+
4664
+ <div class="hide">
4665
+
4666
+ ## 在 Flashduty
4667
+ ---
4668
+ 您可通过以下2种方式,获取一个集成推送地址,任选其一即可。
4669
+
4670
+ ### 使用专属集成
4671
+
4672
+ 当您不需要将告警事件路由到不同的协作空间,优先选择此方式,更简单。
4673
+
4674
+ <details>
4675
+ <summary>展开</summary>
4676
+
4677
+ 1. 进入 Flashduty 控制台,选择 **协作空间**,进入某个空间的详情页面
4678
+ 2. 选择 **集成数据** tab,点击 **添加一个集成**,进入添加集成页面
4679
+ 3. 选择 **zilliz** 集成,点击 **保存**,生成卡片。
4680
+ 4. 点击生成的卡片,可以查看到 **推送地址**,复制备用,完成。
4681
+
4682
+
4683
+ </details>
4684
+
4685
+ ### 使用共享集成
4686
+
4687
+ 当您需要根据告警事件的 Payload 信息,将告警路由到不同的协作空间,优先选择此方式。
4688
+
4689
+ <details>
4690
+ <summary>展开</summary>
4691
+
4692
+ 1. 进入 Flashduty 控制台,选择 **集成中心=>告警事件**,进入集成选择页面。
4693
+ 2. 选择 **zilliz** 集成:
4694
+ - **集成名称**:为当前集成定义一个名称。
4695
+ 3. 点击 **保存** 后,复制当前页面的新生成的 **推送地址** 备用。
4696
+ 4. 点击 **创建路由**,为集成配置路由规则。您可以按条件匹配不同的告警到不同的协作空间,也可以直接设置默认协作空间作为兜底,后续再按需调整。
4697
+ 5. 完成。
4698
+
4699
+ </details>
4700
+ </div>
4701
+
4702
+ ## 在 zilliz
4703
+ ---
4704
+
4705
+ <div class="md-block">
4706
+
4707
+ ## 一、告警推送配置
4708
+
4709
+ 1. 登录您的 \`zilliz\` 控制台,在 \`Project Alerts\` 中,创建或修改 \`Alert\`。
4710
+ 2. 在 \`Alert\` 编辑页面中的 \`Send to\` 部分,选择 \`Webhook\`,Webhook URL 填写告警集成的<span class='integration_url'>推送地址</span>。
4711
+ 3. 选中 \`Alert Resolution Notification\`,其他按需选择。
4712
+ 4. 点击 \`Save\` 或 \`Create\` 完成配置。
4713
+
4714
+ <img alt="drawing" width="600" src="https://download.flashcat.cloud/flashduty/doc/zh/fd/zilliz-1.png" />
4715
+
4716
+ </dev>
4717
+
4718
+ ## 二、状态对照
4719
+
4720
+ <div class="md-block">
4721
+
4722
+ | zilliz | Flashduty | 状态 |
4723
+ | ---------- | -------- | ---- |
4724
+ | CRITICAL | Critical | 严重 |
4725
+ | WARNING | Warning | 警告 |
4726
+
4727
+
4728
+ </div>
4729
+
4730
+ `,StateCloud:`---
4632
4731
  title: "天翼云告警事件"
4633
4732
  description: "通过 webhook 的方式同步天翼云告警事件到 Flashduty,实现告警事件自动化降噪处理"
4634
4733
  date: "2024-07-05T10:00:00+08:00"
@@ -4716,7 +4815,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/statecloud-integration-guide"
4716
4815
 
4717
4816
 
4718
4817
  </div>
4719
- `, j = `---
4818
+ `,Guance:`---
4720
4819
  title: "观测云告警事件"
4721
4820
  description: "通过 webhook 的方式同步观测云告警事件到 Flashduty,实现告警事件自动化降噪处理"
4722
4821
  date: "2024-07-05T10:00:00+08:00"
@@ -4804,82 +4903,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/guance-integration-guide"
4804
4903
  | 数据断档 | Info | 提醒 |
4805
4904
 
4806
4905
  </div>
4807
- `, U = `---
4808
- title: "zilliz 告警事件"
4809
- description: "通过 webhook 的方式同步 zilliz 告警事件到 Flashduty,实现告警事件自动化降噪处理"
4810
- date: "2024-07-05T10:00:00+08:00"
4811
- url: "https://docs.flashcat.cloud/zh/flashduty/zilliz-integration-guide"
4812
- ---
4813
-
4814
- 通过 webhook 的方式同步 Zilliz 告警事件到 Flashduty,实现告警事件自动化降噪处理。
4815
-
4816
- <div class="hide">
4817
-
4818
- ## 在 Flashduty
4819
- ---
4820
- 您可通过以下2种方式,获取一个集成推送地址,任选其一即可。
4821
-
4822
- ### 使用专属集成
4823
-
4824
- 当您不需要将告警事件路由到不同的协作空间,优先选择此方式,更简单。
4825
-
4826
- <details>
4827
- <summary>展开</summary>
4828
-
4829
- 1. 进入 Flashduty 控制台,选择 **协作空间**,进入某个空间的详情页面
4830
- 2. 选择 **集成数据** tab,点击 **添加一个集成**,进入添加集成页面
4831
- 3. 选择 **zilliz** 集成,点击 **保存**,生成卡片。
4832
- 4. 点击生成的卡片,可以查看到 **推送地址**,复制备用,完成。
4833
-
4834
-
4835
- </details>
4836
-
4837
- ### 使用共享集成
4838
-
4839
- 当您需要根据告警事件的 Payload 信息,将告警路由到不同的协作空间,优先选择此方式。
4840
-
4841
- <details>
4842
- <summary>展开</summary>
4843
-
4844
- 1. 进入 Flashduty 控制台,选择 **集成中心=>告警事件**,进入集成选择页面。
4845
- 2. 选择 **zilliz** 集成:
4846
- - **集成名称**:为当前集成定义一个名称。
4847
- 3. 点击 **保存** 后,复制当前页面的新生成的 **推送地址** 备用。
4848
- 4. 点击 **创建路由**,为集成配置路由规则。您可以按条件匹配不同的告警到不同的协作空间,也可以直接设置默认协作空间作为兜底,后续再按需调整。
4849
- 5. 完成。
4850
-
4851
- </details>
4852
- </div>
4853
-
4854
- ## 在 zilliz
4855
- ---
4856
-
4857
- <div class="md-block">
4858
-
4859
- ## 一、告警推送配置
4860
-
4861
- 1. 登录您的 \`zilliz\` 控制台,在 \`Project Alerts\` 中,创建或修改 \`Alert\`。
4862
- 2. 在 \`Alert\` 编辑页面中的 \`Send to\` 部分,选择 \`Webhook\`,Webhook URL 填写告警集成的<span class='integration_url'>推送地址</span>。
4863
- 3. 选中 \`Alert Resolution Notification\`,其他按需选择。
4864
- 4. 点击 \`Save\` 或 \`Create\` 完成配置。
4865
-
4866
- <img alt="drawing" width="600" src="https://download.flashcat.cloud/flashduty/doc/zh/fd/zilliz-1.png" />
4867
-
4868
- </dev>
4869
-
4870
- ## 二、状态对照
4871
-
4872
- <div class="md-block">
4873
-
4874
- | zilliz | Flashduty | 状态 |
4875
- | ---------- | -------- | ---- |
4876
- | CRITICAL | Critical | 严重 |
4877
- | WARNING | Warning | 警告 |
4878
-
4879
-
4880
- </div>
4881
-
4882
- `, H = `---
4906
+ `,CustomChange:`---
4883
4907
  title: "自定义变更事件集成指引"
4884
4908
  description: "通过标准协议推送自有系统变更事件到 Flashduty,大部分故障由变更导致,变更和告警事件联动有助于快速定位故障原因。"
4885
4909
  date: "2024-05-11T10:00:00+08:00"
@@ -4936,7 +4960,7 @@ Flashduty 已经适配部分常用工单、部署系统的 webhook 协议,对
4936
4960
 
4937
4961
  </details>
4938
4962
 
4939
- `, O = `---
4963
+ `,Jira:`---
4940
4964
  title: ""
4941
4965
  description: ""
4942
4966
  date: "2024-05-11T10:00:00+08:00"
@@ -5010,7 +5034,7 @@ Flashduty 默认提取 webhook payload 中 status.name 信息,并按照下边
5010
5034
  如您希望变更此映射关系,请联系 Flashduty。
5011
5035
 
5012
5036
  </div>
5013
- `, q = `---
5037
+ `,Lark:`---
5014
5038
  title: Contributing to our documentation — Meilisearch documentation
5015
5039
  description: The Meilisearch documentation is open-source. Learn how to help make it even better.
5016
5040
  sidebarDepth: 3
@@ -5127,7 +5151,7 @@ sidebarDepth: 3
5127
5151
 
5128
5152
  <img alt="drawing" width="800" src="https://download.flashcat.cloud/feishu-self-app-invite-to-chat.jpeg" />
5129
5153
  <img src="https://download.flashcat.cloud/feishu-self-app-notify-rule.png" alt="drawing" width="800"/>
5130
- `, B = `---
5154
+ `,Dingtalk:`---
5131
5155
  title: "钉钉集成"
5132
5156
  description: "通过集成钉钉自建应用,实现在钉钉端内接收和响应告警的能力"
5133
5157
  date: "2024-05-11T10:00:00+08:00"
@@ -5278,7 +5302,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/dingtalk-integration-guide"
5278
5302
 
5279
5303
  <img src="https://download.flashcat.cloud/dingtalk-self-app-notify-rule.png" alt="drawing" width="800"/>
5280
5304
 
5281
- `, G = `---
5305
+ `,Wecom:`---
5282
5306
  title: "企业微信集成"
5283
5307
  description: "通过集成企业微信第三方应用,实现在企业微信端内接收和响应告警的能力"
5284
5308
  date: "2024-05-11T10:00:00+08:00"
@@ -5358,7 +5382,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/wecom-integration-guide"
5358
5382
  7. **故障通知失败,提示\`未开通企微许可\`?**
5359
5383
 
5360
5384
  - 联系 Flashduty 客服或专属支持,为您购买开通
5361
- `, V = `---
5385
+ `,Slack:`---
5362
5386
  title: "Slack 集成"
5363
5387
  description: "通过集成Slack第三方应用,实现在Slack内接收和响应告警的能力"
5364
5388
  date: "2024-05-11T10:00:00+08:00"
@@ -5412,7 +5436,7 @@ url: "https://docs.flashcat.cloud/zh/flashduty/slack-integration-guide"
5412
5436
 
5413
5437
  8. **Slack App 内 Other questions,报错**
5414
5438
  - 重新操作,遇到了还没被记录的问题
5415
- - 重试后仍然报错,联系客服`, Z = `---
5439
+ - 重试后仍然报错,联系客服`,MicrosoftTeams:`---
5416
5440
  title: "Microsoft Teams集成"
5417
5441
  description: "通过集成 Microsoft Teams 第三方应用,实现在 Microsoft Teams 内接收和响应告警的能力"
5418
5442
  date: "2024-05-11T10:00:00+08:00"
@@ -5507,7 +5531,7 @@ Microsoft Teams 集成现处于 Beta 阶段,在关联前您需要先完成以
5507
5531
  暂不支持
5508
5532
  </details>
5509
5533
 
5510
- `, K = `配置告警 Webhook,当告警发生特定操作(如触发、关闭)时,系统通过 HTTP 回调您配置的地址。回调内容将包含告警最新关键信息,您可以与自研工具进行集成。
5534
+ `,AlertWebhook:`配置告警 Webhook,当告警发生特定操作(如触发、关闭)时,系统通过 HTTP 回调您配置的地址。回调内容将包含告警最新关键信息,您可以与自研工具进行集成。
5511
5535
 
5512
5536
  <span id="EventTypes"></span>
5513
5537
 
@@ -5675,7 +5699,7 @@ curl -X POST 'https://example.com/alert/webhook?a=a' \\
5675
5699
  4. **推送来源可信 IP 白名单?**
5676
5700
  - {ip_whitelist}
5677
5701
  - 未来可能会更新,请定期查验
5678
- `, J = `配置故障 Webhook,当故障发生特定操作(如触发、关闭)时,系统通过 HTTP 回调您配置的地址。回调内容将包含故障最新关键信息,您可以与自研工具进行集成。
5702
+ `,IncidentWebhook:`配置故障 Webhook,当故障发生特定操作(如触发、关闭)时,系统通过 HTTP 回调您配置的地址。回调内容将包含故障最新关键信息,您可以与自研工具进行集成。
5679
5703
 
5680
5704
  <span id="EventTypes"></span>
5681
5705
 
@@ -5882,7 +5906,7 @@ curl -X POST 'https://example.com/incident/webhook?a=a' \\
5882
5906
 
5883
5907
  4. **推送来源可信 IP 白名单?**
5884
5908
  - {ip_whitelist}
5885
- - 未来可能会更新,请定期查验`, X = `配置故障 自定义操作,允许您在故障排查期间,快速调用外部接口,实现故障自愈、信息丰富等任何自定义操作。
5909
+ - 未来可能会更新,请定期查验`,CustomAction:`配置故障 自定义操作,允许您在故障排查期间,快速调用外部接口,实现故障自愈、信息丰富等任何自定义操作。
5886
5910
 
5887
5911
  ## 一、创建操作
5888
5912
 
@@ -6141,7 +6165,7 @@ curl -X POST 'https://example.com/incident/action?a=a' \\
6141
6165
 
6142
6166
  2. **推送来源可信 IP 白名单?**
6143
6167
  - {ip_whitelist}
6144
- - 未来可能会更新,请定期查验`, Q = `---
6168
+ - 未来可能会更新,请定期查验`,Templates:`---
6145
6169
  title: "配置通知模版"
6146
6170
  description: "通过自定义配置模版,可以实现个性化通知内容的需求"
6147
6171
  date: "2024-05-10T10:00:00+08:00"
@@ -6971,59 +6995,4 @@ CloseTime | int64 | 否 | 关闭时间,EndTime 为告警恢复时间,CloseTi
6971
6995
  <img src="https://download.flashcat.cloud/flashduty/changelog/20230720/email_render.png" alt="drawing" style="display: block; margin: 0 auto;" width="500"/>
6972
6996
 
6973
6997
 
6974
- `;
6975
- export {
6976
- u as AWSCW,
6977
- S as AWSEventBridge,
6978
- K as AlertWebhook,
6979
- d as AliyunARMS,
6980
- r as AliyunCm,
6981
- o as AliyunCmEvent,
6982
- c as AliyunSLS,
6983
- P as AppDynamics,
6984
- h as AzureMonitor,
6985
- m as BaiDuBCM,
6986
- X as CustomAction,
6987
- n as CustomAlert,
6988
- H as CustomChange,
6989
- B as Dingtalk,
6990
- A as Dynatrace,
6991
- t as Email,
6992
- I as GoogleCM,
6993
- i as Grafana,
6994
- F as Graylog,
6995
- j as Guance,
6996
- p as HuaWeiCES,
6997
- C as HuaweiyunLTS,
6998
- J as IncidentWebhook,
6999
- g as InfluxDB,
7000
- L as Jiankongbao,
7001
- O as Jira,
7002
- q as Lark,
7003
- R as Meraki,
7004
- Z as MicrosoftTeams,
7005
- e as N9e,
7006
- k as OceanBase,
7007
- W as OpManager,
7008
- y as OpenFalcon,
7009
- _ as PagerDuty,
7010
- a as Prometheus,
7011
- T as Sentry,
7012
- x as Skywalking,
7013
- V as Slack,
7014
- M as SolarWinds,
7015
- D as Splunk,
7016
- z as StateCloud,
7017
- Q as Templates,
7018
- f as TencentBK,
7019
- b as TencentCLS,
7020
- v as TencentCm,
7021
- w as TencentEb,
7022
- l as UptimeKuma,
7023
- E as VolcEngineEvent,
7024
- $ as VolcEngineMetric,
7025
- N as VolcEngineTLS,
7026
- G as Wecom,
7027
- s as Zabbix,
7028
- U as Zilliz
7029
- };
6998
+ `};n.FlashDocsZh=t})(window);