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.
- package/dist/{en.js → esm/en.js} +171 -180
- package/dist/{zh.cjs → esm/zh.js} +115 -91
- package/dist/{en.cjs → iife/en.js} +242 -196
- package/dist/{zh.js → iife/zh.js} +189 -220
- package/package.json +11 -3
|
@@ -1,115 +1,131 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
title: "Standard Alert Integration Guide"
|
|
3
|
-
description: "Push
|
|
4
|
-
date: "
|
|
1
|
+
(function(n){"use strict";const t=`---
|
|
2
|
+
title: "Standard Alert Event Integration Guide"
|
|
3
|
+
description: "Push alert events from your own system to Flashduty through standard protocols to achieve automated alert noise reduction."
|
|
4
|
+
date: "2025-01-20T10:00:00+08:00"
|
|
5
5
|
url: "https://docs.flashcat.cloud/en/flashduty/custom-alert-integration-guide"
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
-
Push
|
|
8
|
+
Push alert events from your own system to Flashduty through standard protocols to achieve automated alert noise reduction.
|
|
9
9
|
|
|
10
10
|
:::tips
|
|
11
|
-
Flashduty has already adapted webhook protocols for most common alert systems. For these systems, you should first use
|
|
11
|
+
Flashduty has already adapted webhook protocols for most common alert systems. For these systems, you should first use the corresponding integration for simplicity. This integration provides a standard HTTP interface that requires your development for adaptation. The advantage is that you can push any alert events you want to handle through on-call.
|
|
12
12
|
:::
|
|
13
13
|
|
|
14
|
-
<div class="hide">
|
|
15
|
-
|
|
16
14
|
## Steps
|
|
17
15
|
---
|
|
18
16
|
|
|
19
17
|
### In Flashduty
|
|
20
18
|
|
|
21
|
-
You can obtain
|
|
19
|
+
You can obtain an integration push URL through either of the following two methods:
|
|
22
20
|
|
|
23
|
-
#### Using
|
|
21
|
+
#### Using Dedicated Integration
|
|
24
22
|
|
|
25
|
-
|
|
23
|
+
When you don't need to route alert events to different collaboration spaces, this method is preferred as it's simpler.
|
|
26
24
|
|
|
27
25
|
<details>
|
|
28
26
|
<summary>Expand</summary>
|
|
29
27
|
|
|
30
|
-
1.
|
|
31
|
-
2. Select the **
|
|
32
|
-
3.
|
|
33
|
-
4. Click the generated card to view the **
|
|
28
|
+
1. Enter the Flashduty console, select **Collaboration Space**, and enter the details page of a space
|
|
29
|
+
2. Select the **Integrations** tab, click **Add Integration**, and enter the add integration page
|
|
30
|
+
3. Select **Standard Alert Event** integration, click **Save** to generate a card
|
|
31
|
+
4. Click the generated card to view the **Push URL**, copy it for later use, and you're done
|
|
34
32
|
|
|
35
33
|
</details>
|
|
36
34
|
|
|
37
35
|
#### Using Shared Integration
|
|
38
36
|
|
|
39
|
-
|
|
37
|
+
When you need to route alert events to different collaboration spaces based on the alert event's Payload information, this method is preferred.
|
|
40
38
|
|
|
41
39
|
<details>
|
|
42
40
|
<summary>Expand</summary>
|
|
43
41
|
|
|
44
|
-
1.
|
|
45
|
-
2. Select **Standard Alert** integration:
|
|
46
|
-
- **Integration Name**: Define a name for
|
|
47
|
-
3. Click **Save** and copy the newly generated **
|
|
48
|
-
4. Click **Create Route** to configure routing rules for the integration. You can match different alerts to different
|
|
42
|
+
1. Enter the Flashduty console, select **Integration Center => Alert Events** to enter the integration selection page
|
|
43
|
+
2. Select **Standard Alert Event** integration:
|
|
44
|
+
- **Integration Name**: Define a name for the current integration
|
|
45
|
+
3. Click **Save** and copy the newly generated **Push URL** on the current page for later use
|
|
46
|
+
4. Click **Create Route** to configure routing rules for the integration. You can match different alerts to different collaboration spaces based on conditions, or set a default collaboration space as a fallback, and adjust as needed later
|
|
49
47
|
5. Complete
|
|
50
48
|
|
|
51
49
|
</details>
|
|
52
|
-
</div>
|
|
53
50
|
|
|
54
51
|
## I. Request Description
|
|
52
|
+
---
|
|
55
53
|
|
|
56
54
|
### Request Method
|
|
57
55
|
|
|
56
|
+
<div class="md-block">
|
|
57
|
+
|
|
58
58
|
POST, Content-Type:"application/json"
|
|
59
59
|
|
|
60
|
+
</div>
|
|
61
|
+
|
|
60
62
|
### Request Parameters:
|
|
61
63
|
|
|
62
|
-
|
|
64
|
+
<div class="md-block">
|
|
65
|
+
|
|
66
|
+
#### Headers:
|
|
67
|
+
Field|Required|Type|Description
|
|
68
|
+
:-:|:-:|:-:|:---
|
|
69
|
+
| Content-Type | Yes | string | Fixed value: \`application/json\`
|
|
63
70
|
|
|
64
|
-
|
|
71
|
+
#### Query Strings:
|
|
72
|
+
Field|Required|Type|Description
|
|
73
|
+
:-:|:-:|:-:|:---
|
|
74
|
+
| integration_key | Yes | string | Integration key for access control. Obtained after adding integration.
|
|
65
75
|
|
|
66
|
-
|
|
67
|
-
| :----------: | :------: | :----: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
68
|
-
| event_status | Yes | string | Alert event status, enumerated values: Critical, Warning, Info, Ok |
|
|
69
|
-
| alert_key | Yes | string | Event grouping basis, different alert events are grouped into one alert based on this field and time window |
|
|
70
|
-
| title_rule | No | string | Alert title generation rule, in the form of \`$a::b::$c\`, substrings are separated by \`::\`; each substring can be a fixed string or a variable prefixed with \`$\`. Variable content will be extracted from the labels parameter, error if not found. By default, the system will generate rules by extracting service, cluster, resource, and check tags from the labels field |
|
|
71
|
-
| description | No | string | Alert description, no more than 2048 characters |
|
|
72
|
-
| labels | No | map | Alert label collection, key is the label name, value is the label value. Labels are event descriptions, crucial for subsequent correlation and noise reduction. 1. Label keys and values are case-sensitive strings. 2. Label keys should not exceed 128 characters. 3. Maximum 50 labels allowed. \`Label content reference\` [Best Practices](#Best-Practices) |
|
|
76
|
+
#### Payload:
|
|
73
77
|
|
|
78
|
+
Field|Required|Type|Description
|
|
79
|
+
:-:|:-:|:-:|:---
|
|
80
|
+
| title_rule | Yes | string | Alert title, no more than \`512\` characters, will be truncated if exceeded.<br><br>Supports dynamic title generation based on alert content, see [Customizing Incidents](https://docs.flashcat.cloud/en/flashduty/customize-incident-attrs) for generation rules.
|
|
81
|
+
| event_status | Yes | string | Alert status.<br><br>Enumerated values (case-sensitive): *Critical*, *Warning*, *Info*, *Ok*.<br><br>When specified as Ok, it means automatic recovery of the alert.
|
|
82
|
+
| alert_key | No | string | Alert identifier, used to update or automatically recover existing alerts.<br><br>You can customize this value, but it cannot exceed \`255\` characters. You can also rely on system auto-generation, this value will be returned in the response.<br><br>If you're reporting a recovery event, this value must exist.
|
|
83
|
+
| description | No | string | Alert description, no more than \`2048\` characters, will be truncated if exceeded.
|
|
84
|
+
| labels | No | map | Alert label collection, key is the label name, value is the label value:<br><br>1. Both key and value of labels are string type, case-sensitive.<br>2. Label key should not exceed \`128\` characters, following Prometheus label naming conventions. Value should not exceed \`2048\` characters, will be truncated if exceeded.<br>3. Maximum of \`50\` labels. See \`Label Content Reference\` in [Best Practices](#best-practices).<br><br>Example: "resource": "171.26.23.22", "check": "api latency > 500ms"
|
|
85
|
+
|
|
74
86
|
</div>
|
|
75
87
|
|
|
76
88
|
### Response
|
|
77
89
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
Parameter|Required|Type|Description
|
|
83
|
-
----------|---|---|---
|
|
84
|
-
request_id|Yes|string|Request trace id for issue tracking
|
|
90
|
+
Field Name|Required|Type|Description
|
|
91
|
+
:-:|:-:|:-:|:---
|
|
92
|
+
request_id|Yes|string|Request ID for trace tracking
|
|
85
93
|
error|No|[Error](#Error)|Error description, returned only when an error occurs
|
|
94
|
+
data|No|[Data](#Data)|Report information
|
|
95
|
+
|
|
96
|
+
<span id="Data"></span>
|
|
97
|
+
Data:
|
|
98
|
+
|
|
99
|
+
| Field Name | Required | Type | Description |
|
|
100
|
+
:-:|:-:|:-:|:---
|
|
101
|
+
| alert_key | No | string | Alert identifier, can be used to report recovery events. If you specified an alert_key when reporting the event, this value remains unchanged. Otherwise, it's automatically generated by the system. |
|
|
86
102
|
|
|
87
103
|
<span id="Error"></span>
|
|
88
104
|
Error:
|
|
89
105
|
|
|
90
|
-
|
|
|
91
|
-
|
|
92
|
-
| code
|
|
93
|
-
| message
|
|
106
|
+
| Field Name | Required | Type | Description |
|
|
107
|
+
:-:|:-:|:-:|:---
|
|
108
|
+
| code | Yes | string | Error code, see [Code](#Code) for enumerated values |
|
|
109
|
+
| message | No | string | Error description |
|
|
94
110
|
|
|
95
111
|
<span id="Code"></span>
|
|
96
112
|
Code:
|
|
97
113
|
|
|
98
|
-
| Error Code
|
|
99
|
-
|
|
|
100
|
-
| InvalidParameter
|
|
101
|
-
| InvalidContentType
|
|
102
|
-
| MethodNotAllowed
|
|
103
|
-
| Unauthorized
|
|
104
|
-
| AccessDenied
|
|
105
|
-
| RequestTooFrequently | 429
|
|
106
|
-
| RouteNotFound
|
|
107
|
-
| ResourceNotFound
|
|
108
|
-
|
|
|
109
|
-
|
|
110
|
-
</div>
|
|
114
|
+
| Error Code | HTTP Status | Description |
|
|
115
|
+
| :-:|:-:| ------------------ |
|
|
116
|
+
| InvalidParameter | 400 | Parameter error |
|
|
117
|
+
| InvalidContentType | 400 | Content-Type not supported |
|
|
118
|
+
| MethodNotAllowed | 400 | HTTP Method not supported |
|
|
119
|
+
| Unauthorized | 401 | Login authentication failed |
|
|
120
|
+
| AccessDenied | 403 | Permission authentication failed |
|
|
121
|
+
| RequestTooFrequently | 429 | Request too frequent |
|
|
122
|
+
| RouteNotFound | 404 | Request Method+Path not matched |
|
|
123
|
+
| ResourceNotFound | 400 | Account hasn't purchased resources, please go to the cost center to place an order |
|
|
124
|
+
| NoLicense | 400 | Account has insufficient subscription licenses, please upgrade or purchase subscription in the cost center |
|
|
125
|
+
| InternalError | 500 | Internal or unknown error |
|
|
111
126
|
|
|
112
|
-
### Request Example
|
|
127
|
+
### II. Request Example
|
|
128
|
+
---
|
|
113
129
|
|
|
114
130
|
Request:
|
|
115
131
|
|
|
@@ -118,9 +134,7 @@ curl -X POST '{api_host}/event/push/alert/standard?integration_key={integration_
|
|
|
118
134
|
-H 'Content-Type: application/json' \\
|
|
119
135
|
-d '{
|
|
120
136
|
"event_status": "Warning",
|
|
121
|
-
"
|
|
122
|
-
"description": "cpu idle low than 20%",
|
|
123
|
-
"title_rule": "$cluster::$resource::$check",
|
|
137
|
+
"title_rule": "cpu idle low than 20%",
|
|
124
138
|
"labels": {
|
|
125
139
|
"service": "engine",
|
|
126
140
|
"cluster":"nj",
|
|
@@ -131,15 +145,18 @@ curl -X POST '{api_host}/event/push/alert/standard?integration_key={integration_
|
|
|
131
145
|
}' -v
|
|
132
146
|
\`\`\`
|
|
133
147
|
|
|
134
|
-
Successful
|
|
148
|
+
Successful Response:
|
|
135
149
|
|
|
136
150
|
\`\`\`
|
|
137
151
|
{
|
|
138
|
-
"request_id": "0ace00116215ab4ca0ec5244b8fc54b0"
|
|
152
|
+
"request_id": "0ace00116215ab4ca0ec5244b8fc54b0",
|
|
153
|
+
"data": {
|
|
154
|
+
"alert_key": "9qJ798NJoXS4UMVB5SHsNj"
|
|
155
|
+
}
|
|
139
156
|
}
|
|
140
157
|
\`\`\`
|
|
141
158
|
|
|
142
|
-
Failed
|
|
159
|
+
Failed Response:
|
|
143
160
|
|
|
144
161
|
\`\`\`
|
|
145
162
|
{
|
|
@@ -151,20 +168,49 @@ Failed response:
|
|
|
151
168
|
}
|
|
152
169
|
\`\`\`
|
|
153
170
|
|
|
154
|
-
<span id="
|
|
155
|
-
|
|
156
|
-
## II. Best Practices
|
|
171
|
+
## III. Best Practices <span id="best-practices"></span>
|
|
172
|
+
---
|
|
157
173
|
|
|
158
|
-
1. Send events to
|
|
174
|
+
1. Send events to Flashduty when alert status changes
|
|
159
175
|
2. When an alert recovers, send an event with status Ok to close the alert. Otherwise, the alert will remain open. If your alert system doesn't have recovery events, we recommend manually sending recovery events
|
|
160
|
-
3. Labels are event descriptions
|
|
161
|
-
- Alert source
|
|
162
|
-
- Alert ownership information
|
|
163
|
-
- Alert category information
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
176
|
+
3. Labels are event descriptions, and label content should be as rich as possible (specified when sending, or generated through enrichment rules), such as:
|
|
177
|
+
- Alert source, like host, cluster, check, or metric
|
|
178
|
+
- Alert ownership information, like team, owner
|
|
179
|
+
- Alert category information, like class (api, db, net)
|
|
180
|
+
|
|
181
|
+
## IV. FAQ
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
<details>
|
|
185
|
+
<summary>Why haven't I received alerts in Flashduty?</summary>
|
|
186
|
+
|
|
187
|
+
#### In Flashduty
|
|
188
|
+
|
|
189
|
+
1. Check if the integration shows **Latest Event Time**? If not, it means Flashduty hasn't received the push, prioritize checking your system.
|
|
190
|
+
2. If you're using **Shared Integration**, first confirm if you've configured **Routing Rules**. Without routing rules, the system will directly reject new pushes as there's no collaboration space to handle your alerts. In this case, simply configure routing rules to your desired space.
|
|
191
|
+
|
|
192
|
+
#### In Your System
|
|
193
|
+
|
|
194
|
+
1. Confirm that your request URL exactly matches the URL in the integration details.
|
|
195
|
+
2. Confirm that your service can access the external domain api.flashcat.cloud. If not, you need to enable external network access for the server or specifically for Flashduty's domain.
|
|
196
|
+
3. Print Flashduty service's response to check for clear information.
|
|
197
|
+
|
|
198
|
+
If you still can't find the root cause after these steps, please contact us with the **request_id** from the request response.
|
|
199
|
+
|
|
200
|
+
</details>
|
|
201
|
+
|
|
202
|
+
<details>
|
|
203
|
+
<summary>Why was the push request successful but no new alerts or incidents were generated?</summary>
|
|
204
|
+
|
|
205
|
+
Flashduty uses a 2-layer noise reduction mechanism:
|
|
206
|
+
|
|
207
|
+
1. First, it checks for duplicate alert events. If your pushed event is identical to a previously pushed event, the new event will be discarded.
|
|
208
|
+
2. If the new event's status and description match the status, title, and description of the last event of its corresponding alert, the new event will be discarded while updating the alert's attributes.
|
|
209
|
+
3. The new event might be discarded due to matching exclusion, discard, suppression, or silence rules.
|
|
210
|
+
4. When a new event triggers a new alert, the system enters the second layer of noise reduction check, determining if the new alert can be merged into an active incident. If possible, it will only merge into the existing incident without generating a new one.
|
|
211
|
+
|
|
212
|
+
For more information, please refer to [Alert Noise Reduction](https://docs.flashcat.cloud/en/flashduty/what-is-noise-reduction).
|
|
213
|
+
</details> `,a=`---
|
|
168
214
|
title: "Email Integration"
|
|
169
215
|
description: "Generate a unique email address in Flashduty to synchronize alert triggers and recoveries through email"
|
|
170
216
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -265,7 +311,7 @@ attachment_stripped = true
|
|
|
265
311
|
|
|
266
312
|
Currently, all alerts pushed to Flashduty through email integration are set to Warning severity.
|
|
267
313
|
|
|
268
|
-
`,
|
|
314
|
+
`,o=`---
|
|
269
315
|
title: "Nightingale/FlashCat Integration"
|
|
270
316
|
description: "Push alert events from Nightingale (n9e) or Flashcat to Flashduty via webhook. When an alert is triggered, send a trigger event to Flashduty; when an alert recovers, send a recovery event to Flashduty"
|
|
271
317
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -423,7 +469,7 @@ Nightingale/Flashcat to Flashduty alert severity mapping:
|
|
|
423
469
|
|
|
424
470
|
</details>
|
|
425
471
|
|
|
426
|
-
`,
|
|
472
|
+
`,i=`---
|
|
427
473
|
title: "Prometheus Integration Guide"
|
|
428
474
|
description: "Push Prometheus alert events to Flashduty through AlertManager using webhooks. When an alert is triggered, it sends a trigger event to Flashduty, and when the alert recovers, it sends a recovery event."
|
|
429
475
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -605,7 +651,7 @@ Prometheus to Flashduty severity mapping:
|
|
|
605
651
|
|
|
606
652
|
|
|
607
653
|
|
|
608
|
-
`,
|
|
654
|
+
`,s=`---
|
|
609
655
|
title: "Grafana Integration"
|
|
610
656
|
description: "Sync Grafana alert events to Flashduty via webhook to achieve automated alert noise reduction."
|
|
611
657
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -718,7 +764,7 @@ The system extracts the \`severity\`, \`priority\`, and \`level\` labels from al
|
|
|
718
764
|
| ok | Ok | Resolved |
|
|
719
765
|
|
|
720
766
|
</div>
|
|
721
|
-
`,
|
|
767
|
+
`,r=`---
|
|
722
768
|
title: "Zabbix Integration"
|
|
723
769
|
description: "Synchronize Zabbix alert events to Flashduty via webhook (supports Zabbix 3.x ~ 6.x versions, with different configuration requirements) to achieve automated alert noise reduction"
|
|
724
770
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -1024,7 +1070,7 @@ Zabbix to Flashduty alert severity mapping:
|
|
|
1024
1070
|
| Information | Info | Info |
|
|
1025
1071
|
| Not classified | Info | Info |
|
|
1026
1072
|
|
|
1027
|
-
</dv>`,
|
|
1073
|
+
</dv>`,l=`---
|
|
1028
1074
|
title: "Uptime Kuma Integration"
|
|
1029
1075
|
description: "Sync Uptime Kuma alert events to Flashduty via webhook for automated alert noise reduction"
|
|
1030
1076
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -1110,7 +1156,7 @@ Uptime Kuma to Flashduty alert severity mapping:
|
|
|
1110
1156
|
| Warning | Warning | Warning |
|
|
1111
1157
|
| Info | Info | Info |
|
|
1112
1158
|
|
|
1113
|
-
</div>`,
|
|
1159
|
+
</div>`,d=`---
|
|
1114
1160
|
title: "Alibaba Cloud ARMS Integration"
|
|
1115
1161
|
description: "Sync Alibaba Cloud ARMS monitoring alerts to Flashduty via webhook for automated alert noise reduction"
|
|
1116
1162
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -1196,7 +1242,7 @@ Alibaba Cloud ARMS monitoring to Flashduty alert severity mapping:
|
|
|
1196
1242
|
| P4 | Info | Info |
|
|
1197
1243
|
|
|
1198
1244
|
</div>
|
|
1199
|
-
`,
|
|
1245
|
+
`,c=`---
|
|
1200
1246
|
title: "Alibaba Cloud Monitor CM Event Integration"
|
|
1201
1247
|
description: "Sync Alibaba Cloud Monitor event center alerts to Flashduty via webhook for automated alert noise reduction"
|
|
1202
1248
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -1283,7 +1329,7 @@ Alibaba Cloud Monitor event alert to Flashduty severity level mapping:
|
|
|
1283
1329
|
| WARNING | Warning | Warning |
|
|
1284
1330
|
| INFO | Info | Info |
|
|
1285
1331
|
|
|
1286
|
-
</div>`,
|
|
1332
|
+
</div>`,h=`---
|
|
1287
1333
|
title: "Alibaba Cloud Monitor CM Metrics Integration"
|
|
1288
1334
|
description: "Sync Alibaba Cloud Monitor alert events to Flashduty via webhook for automated alert noise reduction"
|
|
1289
1335
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -1508,7 +1554,7 @@ Alibaba Cloud SLS monitoring to Flashduty alert severity mapping:
|
|
|
1508
1554
|
| 2 | Info | Info |
|
|
1509
1555
|
|
|
1510
1556
|
</div>
|
|
1511
|
-
`,h
|
|
1557
|
+
`,u={CustomAlert:t,Email:a,N9e:o,Prometheus:i,Grafana:s,Zabbix:r,UptimeKuma:l,AliyunARMS:d,AliyunCmEvent:c,AliyunCm:h,AliyunSLS:e,AWSCW:e,AzureMonitor:`---
|
|
1512
1558
|
title: "AWS CloudWatch Integration"
|
|
1513
1559
|
description: "Sync AWS CloudWatch alert events to Flashduty via webhook to achieve automated alert noise reduction"
|
|
1514
1560
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -1587,7 +1633,7 @@ Choose this method when you need to route alerts to different channels based on
|
|
|
1587
1633
|
All CloudWatch metric alarms correspond to Flashduty "warning" severity level alerts.
|
|
1588
1634
|
|
|
1589
1635
|
</div>
|
|
1590
|
-
`,
|
|
1636
|
+
`,BaiDuBCM:`---
|
|
1591
1637
|
title: "Baidu Cloud BCM Integration"
|
|
1592
1638
|
description: "Sync Baidu Cloud BCM alerts to Flashduty via webhook for automated alert noise reduction"
|
|
1593
1639
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -1662,7 +1708,7 @@ Severity level mapping from Baidu Cloud Monitor to Flashduty:
|
|
|
1662
1708
|
| Notice | Info | Info |
|
|
1663
1709
|
|
|
1664
1710
|
</div>
|
|
1665
|
-
`,
|
|
1711
|
+
`,HuaWeiCES:`---
|
|
1666
1712
|
title: "Huawei Cloud CES Integration"
|
|
1667
1713
|
description: "Sync Huawei Cloud CES alerts to Flashduty via webhook to achieve automated alert noise reduction"
|
|
1668
1714
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -1751,7 +1797,7 @@ Huawei Cloud CES to Flashduty alert severity mapping:
|
|
|
1751
1797
|
| Info | Info | info |
|
|
1752
1798
|
|
|
1753
1799
|
</div>
|
|
1754
|
-
`,
|
|
1800
|
+
`,InfluxDB:`Sync Influxdata alert events to Flashduty via webhook to achieve automated alert noise reduction.
|
|
1755
1801
|
|
|
1756
1802
|
<div class="hide">
|
|
1757
1803
|
|
|
@@ -1848,7 +1894,7 @@ Mapping relationship between Influxdata alert events and Flashduty alert severit
|
|
|
1848
1894
|
| unknow | Info | Info |
|
|
1849
1895
|
|
|
1850
1896
|
</div>
|
|
1851
|
-
`,
|
|
1897
|
+
`,OpenFalcon:`---
|
|
1852
1898
|
title: "Open Falcon Integration"
|
|
1853
1899
|
description: "Sync Open-Falcon alert events to Flashduty via webhook to achieve automated alert noise reduction"
|
|
1854
1900
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -1932,7 +1978,7 @@ Open-Falcon to Flashduty alert severity mapping:
|
|
|
1932
1978
|
| 6 | Info | Info |
|
|
1933
1979
|
|
|
1934
1980
|
</div>
|
|
1935
|
-
`,
|
|
1981
|
+
`,PagerDuty:`---
|
|
1936
1982
|
title: "PagerDuty Integration"
|
|
1937
1983
|
description: "Push alert events to Flashduty through PagerDuty protocol for automated alert noise reduction"
|
|
1938
1984
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -2094,7 +2140,7 @@ pagerduty_v2_payload_source: mysql.host.name
|
|
|
2094
2140
|
4. Step 4: Restart ElastAlert and wait for alerts to trigger
|
|
2095
2141
|
|
|
2096
2142
|
</div>
|
|
2097
|
-
`,
|
|
2143
|
+
`,TencentBK:`---
|
|
2098
2144
|
title: "Tencent BlueKing Integration"
|
|
2099
2145
|
description: "Sync Tencent BlueKing monitoring events to Flashduty via webhook for automated alert noise reduction"
|
|
2100
2146
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -2192,7 +2238,7 @@ Alert severity mapping between BlueKing and Flashduty:
|
|
|
2192
2238
|
| Notice | Info | info |
|
|
2193
2239
|
|
|
2194
2240
|
</div>
|
|
2195
|
-
`,
|
|
2241
|
+
`,TencentCLS:`---
|
|
2196
2242
|
title: "Tencent Cloud CLS Integration"
|
|
2197
2243
|
description: "Sync Tencent Cloud Log Service (CLS) monitoring alerts to Flashduty via webhook for automated alert noise reduction"
|
|
2198
2244
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -2334,7 +2380,7 @@ Tencent Cloud CLS monitoring alert level mapping to Flashduty:
|
|
|
2334
2380
|
| Critical | Critical | Critical
|
|
2335
2381
|
|
|
2336
2382
|
</div>
|
|
2337
|
-
`,
|
|
2383
|
+
`,TencentCm:`---
|
|
2338
2384
|
title: "Tencent Cloud Monitor CM Integration"
|
|
2339
2385
|
description: "Sync Tencent Cloud Monitor CM alert events to Flashduty via webhook for automated alert noise reduction"
|
|
2340
2386
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -2407,7 +2453,7 @@ Choose this option when you need to route alerts to different channels based on
|
|
|
2407
2453
|
All metric alerts from Tencent Cloud Monitor correspond to "warning" severity level alerts in Flashduty.
|
|
2408
2454
|
|
|
2409
2455
|
</div>
|
|
2410
|
-
`,
|
|
2456
|
+
`,TencentEb:`---
|
|
2411
2457
|
title: "Tencent Cloud EventBridge"
|
|
2412
2458
|
description: "Sync Tencent Cloud EventBridge events to Flashduty via webhook for automated alert noise reduction"
|
|
2413
2459
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -2499,7 +2545,7 @@ As shown below:
|
|
|
2499
2545
|
All Tencent Cloud EventBridge events correspond to "warning" severity level alerts in Flashduty.
|
|
2500
2546
|
|
|
2501
2547
|
</div>
|
|
2502
|
-
`,
|
|
2548
|
+
`,OceanBase:`---
|
|
2503
2549
|
title: "OceanBase Alert Events"
|
|
2504
2550
|
description: "Synchronize OceanBase alert events to Flashduty via webhook for automated alert noise reduction"
|
|
2505
2551
|
date: "2024-05-23T10:00:00+08:00"
|
|
@@ -2687,7 +2733,7 @@ OCP Alert Notification - Single Alert
|
|
|
2687
2733
|
|Notice|Info|Info|
|
|
2688
2734
|
|
|
2689
2735
|
</div>
|
|
2690
|
-
`,
|
|
2736
|
+
`,Graylog:`---
|
|
2691
2737
|
title: "Graylog Alert Events"
|
|
2692
2738
|
description: "Sync Graylog alert events to Flashduty via webhook for automated alert noise reduction"
|
|
2693
2739
|
date: "2024-06-18T10:00:00+08:00"
|
|
@@ -2782,7 +2828,7 @@ Choose this option when you need to route alerts to different channels based on
|
|
|
2782
2828
|
|1|Info|Info|
|
|
2783
2829
|
|
|
2784
2830
|
</div>
|
|
2785
|
-
`,
|
|
2831
|
+
`,Skywalking:`---
|
|
2786
2832
|
title: "Skywalking Alert Events"
|
|
2787
2833
|
description: "Sync Skywalking alert events to Flashduty via webhook for automated alert noise reduction"
|
|
2788
2834
|
date: "2024-06-20T10:00:00+08:00"
|
|
@@ -2881,7 +2927,7 @@ hooks:
|
|
|
2881
2927
|
|Others or Empty|Info|Info|
|
|
2882
2928
|
|
|
2883
2929
|
</div>
|
|
2884
|
-
`,
|
|
2930
|
+
`,Sentry:`---
|
|
2885
2931
|
title: "Sentry Alert Events"
|
|
2886
2932
|
description: "Sync Sentry alert events to Flashduty via webhook for automated alert noise reduction"
|
|
2887
2933
|
date: "2024-07-05T10:00:00+08:00"
|
|
@@ -2987,7 +3033,7 @@ Sentry provides two types of alert mechanisms: Issue Alerts and Metric Alerts. W
|
|
|
2987
3033
|
|resolved|Ok|Resolved|
|
|
2988
3034
|
|
|
2989
3035
|
</div>
|
|
2990
|
-
`,
|
|
3036
|
+
`,Jiankongbao:`---
|
|
2991
3037
|
title: "Jiankongbao Alert Events"
|
|
2992
3038
|
description: "Sync Jiankongbao alert events to Flashduty via webhook for automated alert noise reduction"
|
|
2993
3039
|
date: "2024-08-20T10:00:00+08:00"
|
|
@@ -3078,7 +3124,7 @@ Choose this option when you need to route alerts to different channels based on
|
|
|
3078
3124
|
|2|Info|Info|
|
|
3079
3125
|
|
|
3080
3126
|
</div>
|
|
3081
|
-
`,
|
|
3127
|
+
`,AWSEventBridge:`---
|
|
3082
3128
|
title: "AWS EventBridge Alert Events"
|
|
3083
3129
|
description: "Sync AWS EventBridge alert events to Flashduty via webhook for automated alert noise reduction"
|
|
3084
3130
|
date: "2024-08-20T10:00:00+08:00"
|
|
@@ -3180,7 +3226,7 @@ Choose this option when you need to route alerts to different channels based on
|
|
|
3180
3226
|
|
|
3181
3227
|
</div>
|
|
3182
3228
|
|
|
3183
|
-
`,
|
|
3229
|
+
`,Dynatrace:`---
|
|
3184
3230
|
title: "Dynatrace Alert Events"
|
|
3185
3231
|
description: "Sync Dynatrace alert events to Flashduty via webhook to achieve automated alert noise reduction."
|
|
3186
3232
|
date: "2024-08-20T10:00:00+08:00"
|
|
@@ -3287,7 +3333,7 @@ Choose this option when you need to route alerts to different channels based on
|
|
|
3287
3333
|
|CUSTOM_ALERT|Info|info|
|
|
3288
3334
|
|
|
3289
3335
|
</div>
|
|
3290
|
-
`,
|
|
3336
|
+
`,HuaweiyunLTS:`---
|
|
3291
3337
|
title: "Huawei Cloud LTS Alert Events"
|
|
3292
3338
|
description: "Sync Huawei Cloud Log Tank Service (LTS) alert events to Flashduty via webhook for automated alert noise reduction."
|
|
3293
3339
|
date: "2024-08-20T10:00:00+08:00"
|
|
@@ -3400,7 +3446,7 @@ Choose this option when you need to route alerts to different channels based on
|
|
|
3400
3446
|
|Info|Info|Info|
|
|
3401
3447
|
|
|
3402
3448
|
</div>
|
|
3403
|
-
`,
|
|
3449
|
+
`,GoogleCM:`---
|
|
3404
3450
|
title: "Google Cloud Monitoring Alert Events"
|
|
3405
3451
|
description: "Sync Google Cloud Monitoring alert events to Flashduty via webhook for automated alert noise reduction"
|
|
3406
3452
|
date: "2024-07-05T10:00:00+08:00"
|
|
@@ -3491,7 +3537,80 @@ Choose this option when you need to route alerts to different channels based on
|
|
|
3491
3537
|
|No severity|Info|Info|
|
|
3492
3538
|
|
|
3493
3539
|
</div>
|
|
3494
|
-
`,
|
|
3540
|
+
`,Zilliz:`---
|
|
3541
|
+
title: "Zilliz Alert Events"
|
|
3542
|
+
description: "Sync Zilliz alert events to Flashduty via webhook for automated alert noise reduction"
|
|
3543
|
+
date: "2024-07-05T10:00:00+08:00"
|
|
3544
|
+
url: "https://docs.flashcat.cloud/en/flashduty/zilliz-integration-guide"
|
|
3545
|
+
---
|
|
3546
|
+
|
|
3547
|
+
Sync Zilliz alert events to Flashduty via webhook for automated alert noise reduction.
|
|
3548
|
+
|
|
3549
|
+
<div class="hide">
|
|
3550
|
+
|
|
3551
|
+
## In Flashduty
|
|
3552
|
+
---
|
|
3553
|
+
You can obtain an integration push URL through either of these two methods:
|
|
3554
|
+
|
|
3555
|
+
### Using Dedicated Integration
|
|
3556
|
+
|
|
3557
|
+
Choose this method when you don't need to route alert events to different channels. It's simpler and recommended.
|
|
3558
|
+
|
|
3559
|
+
<details>
|
|
3560
|
+
<summary>Expand</summary>
|
|
3561
|
+
|
|
3562
|
+
1. Go to the Flashduty console, select **Channel**, and enter a channel's details page
|
|
3563
|
+
2. Select the **Integration** tab, click **Add Integration** to enter the integration page
|
|
3564
|
+
3. Choose **Zilliz** integration and click **Save** to generate a card
|
|
3565
|
+
4. Click the generated card to view the **push URL**, copy it for later use, and you're done
|
|
3566
|
+
|
|
3567
|
+
</details>
|
|
3568
|
+
|
|
3569
|
+
### Using Shared Integration
|
|
3570
|
+
|
|
3571
|
+
Choose this method when you need to route alerts to different channels based on the alert event's payload information.
|
|
3572
|
+
|
|
3573
|
+
<details>
|
|
3574
|
+
<summary>Expand</summary>
|
|
3575
|
+
|
|
3576
|
+
1. Go to the Flashduty console, select **Integration Center=>Alert Events** to enter the integration selection page
|
|
3577
|
+
2. Select **Zilliz** integration:
|
|
3578
|
+
- **Integration Name**: Define a name for this integration
|
|
3579
|
+
3. Click **Save** and copy the newly generated **push URL** for later use
|
|
3580
|
+
4. Click **Create Route** to configure routing rules for the integration. You can match different alerts to different channels based on conditions, or set a default channel as a fallback and adjust as needed later
|
|
3581
|
+
5. Done
|
|
3582
|
+
|
|
3583
|
+
</details>
|
|
3584
|
+
</div>
|
|
3585
|
+
|
|
3586
|
+
## In Zilliz
|
|
3587
|
+
---
|
|
3588
|
+
|
|
3589
|
+
<div class="md-block">
|
|
3590
|
+
|
|
3591
|
+
## I. Alert Push Configuration
|
|
3592
|
+
|
|
3593
|
+
1. Log in to your \`Zilliz\` console, create or modify an \`Alert\` in \`Project Alerts\`
|
|
3594
|
+
2. In the \`Send to\` section of the \`Alert\` editing page, select \`Webhook\` and fill in the <span class='integration_url'>push URL</span> from your alert integration
|
|
3595
|
+
3. Check \`Alert Resolution Notification\`, select other options as needed
|
|
3596
|
+
4. Click \`Save\` or \`Create\` to complete the configuration
|
|
3597
|
+
|
|
3598
|
+
<img alt="drawing" width="600" src="https://download.flashcat.cloud/flashduty/doc/zh/fd/zilliz-1.png" />
|
|
3599
|
+
|
|
3600
|
+
</dev>
|
|
3601
|
+
|
|
3602
|
+
## II. Status Mapping
|
|
3603
|
+
|
|
3604
|
+
<div class="md-block">
|
|
3605
|
+
|
|
3606
|
+
| Zilliz | Flashduty | Status |
|
|
3607
|
+
| --------- | --------- | -------- |
|
|
3608
|
+
| CRITICAL | Critical | Critical |
|
|
3609
|
+
| WARNING | Warning | Warning |
|
|
3610
|
+
|
|
3611
|
+
</div>
|
|
3612
|
+
|
|
3613
|
+
`,Splunk:`---
|
|
3495
3614
|
title: "Splunk Alert Events"
|
|
3496
3615
|
description: "Sync Splunk alert events to Flashduty via webhook for automated alert noise reduction"
|
|
3497
3616
|
date: "2024-08-20T10:00:00+08:00"
|
|
@@ -3566,7 +3685,7 @@ Choose this method when you need to route alerts to different channels based on
|
|
|
3566
3685
|
<div class="md-block">
|
|
3567
3686
|
Since Splunk alert events don't differentiate severity levels, all alert events pushed from Splunk to Flashduty will have a Warning status and won't include recovery events.
|
|
3568
3687
|
</div>
|
|
3569
|
-
`,
|
|
3688
|
+
`,AppDynamics:`---
|
|
3570
3689
|
title: "AppDynamics Alert Integration"
|
|
3571
3690
|
description: "Sync AppDynamics alerts to Flashduty via webhook for automated alert noise reduction"
|
|
3572
3691
|
date: "2024-07-05T10:00:00+08:00"
|
|
@@ -3726,7 +3845,7 @@ If you need to configure \`Custom Templating Variables\`, you can refer to the f
|
|
|
3726
3845
|
|INFO|Info|Info|
|
|
3727
3846
|
|
|
3728
3847
|
</div>
|
|
3729
|
-
`,
|
|
3848
|
+
`,SolarWinds:`---
|
|
3730
3849
|
title: "SolarWinds Alert Events"
|
|
3731
3850
|
description: "Sync SolarWinds alert events to Flashduty via webhook for automated alert noise reduction"
|
|
3732
3851
|
date: "2024-08-20T10:00:00+08:00"
|
|
@@ -3829,7 +3948,7 @@ Choose this option when you need to route alerts to different channels based on
|
|
|
3829
3948
|
|Info|Info|Info|
|
|
3830
3949
|
|
|
3831
3950
|
</div>
|
|
3832
|
-
`,
|
|
3951
|
+
`,VolcEngineMetric:`---
|
|
3833
3952
|
title: "Volcengine Cloud Monitor Alert Events"
|
|
3834
3953
|
description: "Sync Volcengine Cloud Monitor alert events to Flashduty via webhook for automated alert noise reduction"
|
|
3835
3954
|
date: "2024-08-20T10:00:00+08:00"
|
|
@@ -3918,7 +4037,7 @@ Choose this method when you need to route alerts to different channels based on
|
|
|
3918
4037
|
|Notice|Info|Info|
|
|
3919
4038
|
|
|
3920
4039
|
</div>
|
|
3921
|
-
`,
|
|
4040
|
+
`,VolcEngineEvent:`---
|
|
3922
4041
|
title: "Volcengine Cloud Monitor Event Center Alert Events"
|
|
3923
4042
|
description: "Sync Volcengine Cloud Monitor Event Center alert events to Flashduty via webhook for automated alert noise reduction"
|
|
3924
4043
|
date: "2024-07-05T10:00:00+08:00"
|
|
@@ -4005,7 +4124,7 @@ Choose this method when you need to route alerts to different channels based on
|
|
|
4005
4124
|
|Notice|Info|Info|
|
|
4006
4125
|
|
|
4007
4126
|
</div>
|
|
4008
|
-
`,
|
|
4127
|
+
`,VolcEngineTLS:`---
|
|
4009
4128
|
title: "Volcengine Log Service (TLS) Alert Events"
|
|
4010
4129
|
description: "Sync Volcengine Log Service (TLS) alert events to Flashduty via webhook for automated alert noise reduction"
|
|
4011
4130
|
date: "2024-07-05T10:00:00+08:00"
|
|
@@ -4142,7 +4261,7 @@ Choose this method when you need to route alerts to different channels based on
|
|
|
4142
4261
|
</div>
|
|
4143
4262
|
|
|
4144
4263
|
</div>
|
|
4145
|
-
`,
|
|
4264
|
+
`,OpManager:`---
|
|
4146
4265
|
title: "OpManager Alert Events"
|
|
4147
4266
|
description: "Sync OpManager alert events to Flashduty via webhook for automated alert noise reduction"
|
|
4148
4267
|
date: "2024-07-05T10:00:00+08:00"
|
|
@@ -4276,7 +4395,7 @@ Choose this method when you need to route alerts to different channels based on
|
|
|
4276
4395
|
| Attention | Info | Info |
|
|
4277
4396
|
|
|
4278
4397
|
</div>
|
|
4279
|
-
`,
|
|
4398
|
+
`,Meraki:`---
|
|
4280
4399
|
title: "Meraki Alert Events"
|
|
4281
4400
|
description: "Sync Meraki alert events to Flashduty via webhook for automated alert noise reduction"
|
|
4282
4401
|
date: "2024-07-05T10:00:00+08:00"
|
|
@@ -4348,7 +4467,7 @@ Choose this option when you need to route alerts to different channels based on
|
|
|
4348
4467
|
| informational | Info | Info |
|
|
4349
4468
|
|
|
4350
4469
|
</div>
|
|
4351
|
-
`,
|
|
4470
|
+
`,StateCloud:`---
|
|
4352
4471
|
title: "StateCloud Alert Events"
|
|
4353
4472
|
description: "Sync StateCloud alert events to Flashduty via webhook for automated alert noise reduction"
|
|
4354
4473
|
date: "2024-07-05T10:00:00+08:00"
|
|
@@ -4435,7 +4554,7 @@ Choose this option when you need to route alerts to different channels based on
|
|
|
4435
4554
|
| North | Beijing2/Changchun/Harbin/North China/Inner Mongolia3/Qingdao/Shenyang3/Shijiazhuang/Taiyuan/Tianjin/Zhengzhou |
|
|
4436
4555
|
|
|
4437
4556
|
</div>
|
|
4438
|
-
`,
|
|
4557
|
+
`,Guance:`---
|
|
4439
4558
|
title: "Guance Alert Events"
|
|
4440
4559
|
description: "Sync Guance alert events to Flashduty via webhook for automated alert noise reduction"
|
|
4441
4560
|
date: "2024-07-05T10:00:00+08:00"
|
|
@@ -4520,80 +4639,7 @@ Choose this option when you need to route alerts to different channels based on
|
|
|
4520
4639
|
| Data Missing | Info | Info |
|
|
4521
4640
|
|
|
4522
4641
|
</div>
|
|
4523
|
-
`,
|
|
4524
|
-
title: "Zilliz Alert Events"
|
|
4525
|
-
description: "Sync Zilliz alert events to Flashduty via webhook for automated alert noise reduction"
|
|
4526
|
-
date: "2024-07-05T10:00:00+08:00"
|
|
4527
|
-
url: "https://docs.flashcat.cloud/en/flashduty/zilliz-integration-guide"
|
|
4528
|
-
---
|
|
4529
|
-
|
|
4530
|
-
Sync Zilliz alert events to Flashduty via webhook for automated alert noise reduction.
|
|
4531
|
-
|
|
4532
|
-
<div class="hide">
|
|
4533
|
-
|
|
4534
|
-
## In Flashduty
|
|
4535
|
-
---
|
|
4536
|
-
You can obtain an integration push URL through either of these two methods:
|
|
4537
|
-
|
|
4538
|
-
### Using Dedicated Integration
|
|
4539
|
-
|
|
4540
|
-
Choose this method when you don't need to route alert events to different channels. It's simpler and recommended.
|
|
4541
|
-
|
|
4542
|
-
<details>
|
|
4543
|
-
<summary>Expand</summary>
|
|
4544
|
-
|
|
4545
|
-
1. Go to the Flashduty console, select **Channel**, and enter a channel's details page
|
|
4546
|
-
2. Select the **Integration** tab, click **Add Integration** to enter the integration page
|
|
4547
|
-
3. Choose **Zilliz** integration and click **Save** to generate a card
|
|
4548
|
-
4. Click the generated card to view the **push URL**, copy it for later use, and you're done
|
|
4549
|
-
|
|
4550
|
-
</details>
|
|
4551
|
-
|
|
4552
|
-
### Using Shared Integration
|
|
4553
|
-
|
|
4554
|
-
Choose this method when you need to route alerts to different channels based on the alert event's payload information.
|
|
4555
|
-
|
|
4556
|
-
<details>
|
|
4557
|
-
<summary>Expand</summary>
|
|
4558
|
-
|
|
4559
|
-
1. Go to the Flashduty console, select **Integration Center=>Alert Events** to enter the integration selection page
|
|
4560
|
-
2. Select **Zilliz** integration:
|
|
4561
|
-
- **Integration Name**: Define a name for this integration
|
|
4562
|
-
3. Click **Save** and copy the newly generated **push URL** for later use
|
|
4563
|
-
4. Click **Create Route** to configure routing rules for the integration. You can match different alerts to different channels based on conditions, or set a default channel as a fallback and adjust as needed later
|
|
4564
|
-
5. Done
|
|
4565
|
-
|
|
4566
|
-
</details>
|
|
4567
|
-
</div>
|
|
4568
|
-
|
|
4569
|
-
## In Zilliz
|
|
4570
|
-
---
|
|
4571
|
-
|
|
4572
|
-
<div class="md-block">
|
|
4573
|
-
|
|
4574
|
-
## I. Alert Push Configuration
|
|
4575
|
-
|
|
4576
|
-
1. Log in to your \`Zilliz\` console, create or modify an \`Alert\` in \`Project Alerts\`
|
|
4577
|
-
2. In the \`Send to\` section of the \`Alert\` editing page, select \`Webhook\` and fill in the <span class='integration_url'>push URL</span> from your alert integration
|
|
4578
|
-
3. Check \`Alert Resolution Notification\`, select other options as needed
|
|
4579
|
-
4. Click \`Save\` or \`Create\` to complete the configuration
|
|
4580
|
-
|
|
4581
|
-
<img alt="drawing" width="600" src="https://download.flashcat.cloud/flashduty/doc/zh/fd/zilliz-1.png" />
|
|
4582
|
-
|
|
4583
|
-
</dev>
|
|
4584
|
-
|
|
4585
|
-
## II. Status Mapping
|
|
4586
|
-
|
|
4587
|
-
<div class="md-block">
|
|
4588
|
-
|
|
4589
|
-
| Zilliz | Flashduty | Status |
|
|
4590
|
-
| --------- | --------- | -------- |
|
|
4591
|
-
| CRITICAL | Critical | Critical |
|
|
4592
|
-
| WARNING | Warning | Warning |
|
|
4593
|
-
|
|
4594
|
-
</div>
|
|
4595
|
-
|
|
4596
|
-
`,q=`---
|
|
4642
|
+
`,CustomChange:`---
|
|
4597
4643
|
title: "Custom Change Event Integration Guide"
|
|
4598
4644
|
description: "Push change events from your own systems to Flashduty using standard protocols. Most incidents are caused by changes, and the correlation between changes and alerts helps quickly identify incident causes."
|
|
4599
4645
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -4650,7 +4696,7 @@ Labels are descriptions of events. You should enrich label content as much as po
|
|
|
4650
4696
|
|
|
4651
4697
|
</details>
|
|
4652
4698
|
|
|
4653
|
-
`,
|
|
4699
|
+
`,Jira:`---
|
|
4654
4700
|
title: "Jira Issue Events"
|
|
4655
4701
|
description: "Sync Jira Issue events to Flashduty via webhooks to collect change events."
|
|
4656
4702
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -4724,7 +4770,7 @@ Flashduty extracts the status.name information from the webhook payload by defau
|
|
|
4724
4770
|
Please contact Flashduty if you wish to modify this mapping.
|
|
4725
4771
|
|
|
4726
4772
|
</div>
|
|
4727
|
-
`,
|
|
4773
|
+
`,Lark:`---
|
|
4728
4774
|
title: Contributing to our documentation — Meilisearch documentation
|
|
4729
4775
|
description: The Meilisearch documentation is open-source. Learn how to help make it even better.
|
|
4730
4776
|
sidebarDepth: 3
|
|
@@ -4859,7 +4905,7 @@ Once published, you can access the application via mobile/PC client. First-time
|
|
|
4859
4905
|
|Group Bot Webhook|Maximum 100 calls/minute|
|
|
4860
4906
|
|Sending messages to the same user or group|Maximum 5 calls/second|
|
|
4861
4907
|
|
|
4862
|
-
**Note:** Messages cannot be pushed normally when exceeding limits, please use notification channels reasonably
|
|
4908
|
+
**Note:** Messages cannot be pushed normally when exceeding limits, please use notification channels reasonably`,Dingtalk:`---
|
|
4863
4909
|
title: "Dingtalk Integration"
|
|
4864
4910
|
description: "Integrate with Dingtalk custom application to receive and respond to alerts within Dingtalk"
|
|
4865
4911
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -5015,7 +5061,7 @@ After the application is released, you can access it via mobile/PC client. First
|
|
|
5015
5061
|
|Enterprise|5,500,000|60|1st of each month|
|
|
5016
5062
|
|
|
5017
5063
|
**Note:** Messages cannot be pushed normally after exceeding limits, please use notification channels reasonably
|
|
5018
|
-
`,
|
|
5064
|
+
`,Wecom:`---
|
|
5019
5065
|
title: "WeCom Integration"
|
|
5020
5066
|
description: "Integrate WeCom third-party application to receive and respond to alerts within WeCom"
|
|
5021
5067
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -5094,7 +5140,7 @@ Integrate WeCom third-party application to receive and respond to alerts within
|
|
|
5094
5140
|
7. **Incident notification fails with \`WeCom License Not Activated\`?**
|
|
5095
5141
|
|
|
5096
5142
|
- Contact Flashduty customer service or dedicated support for license purchase and activation
|
|
5097
|
-
`,
|
|
5143
|
+
`,Slack:`---
|
|
5098
5144
|
title: "Slack Integration"
|
|
5099
5145
|
description: "Integrate with Slack to receive and respond to alerts within Slack"
|
|
5100
5146
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -5148,7 +5194,7 @@ Integrate with Slack to receive and respond to alerts within Slack.
|
|
|
5148
5194
|
|
|
5149
5195
|
8. **Slack App shows Other questions error**
|
|
5150
5196
|
- Try again, as this might be an unrecorded issue
|
|
5151
|
-
- If the error persists, contact customer support`,
|
|
5197
|
+
- If the error persists, contact customer support`,MicrosoftTeams:`---
|
|
5152
5198
|
title: "Microsoft Teams Integration"
|
|
5153
5199
|
description: "Integrate Microsoft Teams as a third-party application to receive and respond to alerts within Microsoft Teams"
|
|
5154
5200
|
date: "2024-05-11T10:00:00+08:00"
|
|
@@ -5243,7 +5289,7 @@ Please check in Integration Center => Instant Messaging => Microsoft Teams under
|
|
|
5243
5289
|
Currently not supported
|
|
5244
5290
|
</details>
|
|
5245
5291
|
|
|
5246
|
-
`,
|
|
5292
|
+
`,AlertWebhook:`Configure alert webhooks to receive HTTP callbacks at your specified URL when alerts have specific actions (such as triggering or closing). The callback content includes the latest key information about the alert, allowing integration with your custom tools.
|
|
5247
5293
|
|
|
5248
5294
|
<span id="EventTypes"></span>
|
|
5249
5295
|
|
|
@@ -5411,7 +5457,7 @@ curl -X POST 'https://example.com/alert/webhook?a=a' \\
|
|
|
5411
5457
|
4. **Trusted IP whitelist for push sources?**
|
|
5412
5458
|
- {ip_whitelist}
|
|
5413
5459
|
- May be updated in the future, please check periodically
|
|
5414
|
-
`,
|
|
5460
|
+
`,IncidentWebhook:`Configure incident webhooks to receive HTTP callbacks at your specified URL when incidents have specific actions (such as triggering or closing). The callback content includes the latest key information about the incident, allowing integration with your custom tools.
|
|
5415
5461
|
|
|
5416
5462
|
<span id="EventTypes"></span>
|
|
5417
5463
|
|
|
@@ -5617,7 +5663,7 @@ curl -X POST 'https://example.com/incident/webhook?a=a' \\
|
|
|
5617
5663
|
|
|
5618
5664
|
4. **Trusted IP whitelist for push sources?**
|
|
5619
5665
|
- {ip_whitelist}
|
|
5620
|
-
- May be updated in the future, please check periodically`,
|
|
5666
|
+
- May be updated in the future, please check periodically`,CustomAction:`Custom incident actions allow you to quickly invoke external interfaces during incident troubleshooting for incident self-healing, information enrichment, and other custom operations.
|
|
5621
5667
|
|
|
5622
5668
|
## I. Creating Actions
|
|
5623
5669
|
|
|
@@ -5864,7 +5910,7 @@ When an incident occurs and is confirmed to be caused by a change, directly trig
|
|
|
5864
5910
|
|
|
5865
5911
|
### Update Status Page
|
|
5866
5912
|
|
|
5867
|
-
When an incident is confirmed to affect online services, trigger external status page updates to prompt`,
|
|
5913
|
+
When an incident is confirmed to affect online services, trigger external status page updates to prompt`,Templates:`---
|
|
5868
5914
|
title: "Configure Notification Templates"
|
|
5869
5915
|
description: "Customize notification content through template configuration"
|
|
5870
5916
|
date: "2024-05-10T10:00:00+08:00"
|
|
@@ -6467,4 +6513,4 @@ If custom content is not set, the system default template will be used for notif
|
|
|
6467
6513
|
As shown below:
|
|
6468
6514
|
<img src="https://download.flashcat.cloud/flashduty/doc/en/fd/template-mail-1.png" width="800">
|
|
6469
6515
|
|
|
6470
|
-
|
|
6516
|
+
`};n.FlashDocsEn=u})(window);
|