flashduty-knowledge-base 1.0.1 → 1.0.3

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.
Files changed (5) hide show
  1. package/dist/en.cjs +280 -48
  2. package/dist/en.js +298 -64
  3. package/dist/zh.cjs +187 -17
  4. package/dist/zh.js +201 -29
  5. package/package.json +1 -1
package/dist/en.js CHANGED
@@ -51,42 +51,120 @@ Choose this method when you need to route alerts to different channels based on
51
51
  </details>
52
52
  </div>
53
53
 
54
- ## Implementation Protocol
55
- ---
54
+ ## I. Request Description
56
55
 
57
- Please refer to the [Developer Documentation](https://developer.flashcat.cloud/zh/flashduty/event-api/alert-event) to complete the protocol development.
56
+ ### Request Method
58
57
 
59
- ## Best Practices
60
- ---
58
+ POST, Content-Type:"application/json"
61
59
 
62
- 1. Send events to Flashduty when alert status changes
63
- 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
64
- 3. Labels are event descriptions. You should enrich label content as much as possible (specified when sending or generated through enrichment rules), such as:
65
- - Alert source, like host, cluster, check, or metric
66
- - Alert ownership information, like team, owner
67
- - Alert category information, like class (api, db, net)
60
+ ### Request Parameters:
68
61
 
62
+ QueryString must include the integration_key parameter for access control.
69
63
 
70
- ## FAQ
71
- ---
64
+ JsonBody parameters are as follows:
72
65
 
73
- <details>
74
- <summary>Why haven't I received alerts in Flashduty?</summary>
66
+ | Field | Required | Type | Description |
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) |
75
73
 
76
- #### In Flashduty
77
-
78
- 1. Check if the integration shows **Latest Event Time**? If not, Flashduty hasn't received the push, prioritize checking your system
79
- 2. If you're using **Shared Integration**, first confirm whether you've configured **Routing Rules**. Without routing rules, the system will reject new pushes since there's no channel to receive your alerts. In this case, simply configure routing rules to your desired channel
80
-
81
- #### In Your System
74
+ </div>
82
75
 
83
- 1. Confirm that your request URL exactly matches the URL in the integration details
84
- 2. Verify that your service can access the external domain api.flashcat.cloud. If not, you need to enable external network access for your server or specifically for the Flashduty domain
85
- 3. Print the response from the Flashduty service to check for specific messages
76
+ ### Response
86
77
 
87
- If you still can't identify the root cause after these steps, please contact us with the **request_id** from the request response
78
+ <div class="md-block">
79
+
80
+ Body:
88
81
 
89
- </details>`, n = `---
82
+ Parameter|Required|Type|Description
83
+ ----------|---|---|---
84
+ request_id|Yes|string|Request trace id for issue tracking
85
+ error|No|[Error](#Error)|Error description, returned only when an error occurs
86
+
87
+ <span id="Error"></span>
88
+ Error:
89
+
90
+ | Parameter | Optional | Type | Description |
91
+ | --------- | -------- | ------ | --------------- |
92
+ | code | Yes | string | Error code |
93
+ | message | Yes | string | Error message |
94
+
95
+ <span id="Code"></span>
96
+ Code:
97
+
98
+ | Error Code | HTTP Status | Description |
99
+ | -------------------- | ----------- | -------------------------------------------------- |
100
+ | InvalidParameter | 400 | Parameter error |
101
+ | InvalidContentType | 400 | Content-Type not supported |
102
+ | MethodNotAllowed | 400 | HTTP method not supported |
103
+ | Unauthorized | 401 | Login authentication failed |
104
+ | AccessDenied | 403 | Permission authentication failed |
105
+ | RequestTooFrequently | 429 | Request too frequent |
106
+ | RouteNotFound | 404 | Request Method+Path not matched |
107
+ | ResourceNotFound | 400 | Account resource not purchased, proceed to billing |
108
+ | InternalError | 500 | Internal or unknown error |
109
+
110
+ </div>
111
+
112
+ ### Request Example
113
+
114
+ Request:
115
+
116
+ \`\`\`
117
+ curl -X POST '{api_host}/event/push/alert/standard?integration_key=$key' \\
118
+ -H 'Content-Type: application/json' \\
119
+ -d '{
120
+ "event_status": "Warning",
121
+ "alert_key": "asdfjl1234asdf2s",
122
+ "description": "cpu idle low than 20%",
123
+ "title_rule": "$cluster::$resource::$check",
124
+ "labels": {
125
+ "service": "engine",
126
+ "cluster":"nj",
127
+ "resource":"es.nj.01",
128
+ "check":"cpu.idle<20%",
129
+ "metric":"node_cpu_seconds_total"
130
+ }
131
+ }' -v
132
+ \`\`\`
133
+
134
+ Successful response:
135
+
136
+ \`\`\`
137
+ {
138
+ "request_id": "0ace00116215ab4ca0ec5244b8fc54b0"
139
+ }
140
+ \`\`\`
141
+
142
+ Failed response:
143
+
144
+ \`\`\`
145
+ {
146
+ "request_id": "0ace00116215abc0ba4e52449bd305b0",
147
+ "error": {
148
+ "code": "InvalidParameter",
149
+ "message": "integration_key is not a valid one"
150
+ }
151
+ }
152
+ \`\`\`
153
+
154
+ <span id="Best-Practices"></span>
155
+
156
+ ## II. Best Practices
157
+
158
+ 1. Send events to Flashcat Cloud when alert status changes or labels are updated
159
+ 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. You should enrich label content as much as possible (specified when sending or generated through enrichment rules), such as:
161
+ - Alert source information: host, cluster, check, or metric
162
+ - Alert ownership information: team, owner
163
+ - Alert category information: class (api, db, net)
164
+ - Alert details link for jumping to the alert system
165
+ 4. alert_key is used to group different alert events into one alert. For example, when a host's cpu.idle drops below threshold, escalates, and recovers, you should send 3 events with the same alert_key, which will be grouped into one alert
166
+ 5. title_rule is used to generate alert display titles. It's recommended to include the source system alert name (commonly defined as rule_name or check) and add cluster, host, and other information as auxiliary reminders
167
+ `, n = `---
90
168
  title: "Email Integration"
91
169
  description: "Generate a unique email address in Flashduty to synchronize alert triggers and recoveries through email"
92
170
  date: "2024-05-11T10:00:00+08:00"
@@ -527,7 +605,7 @@ Prometheus to Flashduty severity mapping:
527
605
 
528
606
 
529
607
 
530
- `, i = `---
608
+ `, o = `---
531
609
  title: "Grafana Integration"
532
610
  description: "Sync Grafana alert events to Flashduty via webhook to achieve automated alert noise reduction."
533
611
  date: "2024-05-11T10:00:00+08:00"
@@ -640,7 +718,7 @@ The system extracts the \`severity\`, \`priority\`, and \`level\` labels from al
640
718
  | ok | Ok | Resolved |
641
719
 
642
720
  </div>
643
- `, o = `---
721
+ `, i = `---
644
722
  title: "Zabbix Integration"
645
723
  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"
646
724
  date: "2024-05-11T10:00:00+08:00"
@@ -689,14 +767,9 @@ Choose this method when you need to route alerts to different channels based on
689
767
  ## In Zabbix
690
768
  ---
691
769
 
692
- <<<<<<< HEAD
693
-
694
770
  - [7.x version](#v7)
695
771
  - [5.x~6.x version](#v5)
696
772
  - [3.x~4.x version](#v4)
697
- =======
698
- <div class="md-block">
699
- >>>>>>> 798fffa6edf238347e9cac531eac2314fae21c18
700
773
 
701
774
  <span id="v7"></span>
702
775
 
@@ -3418,7 +3491,7 @@ Choose this option when you need to route alerts to different channels based on
3418
3491
  |No severity|Info|Info|
3419
3492
 
3420
3493
  </div>
3421
- `, T = `---
3494
+ `, R = `---
3422
3495
  title: "Splunk Alert Events"
3423
3496
  description: "Sync Splunk alert events to Flashduty via webhook for automated alert noise reduction"
3424
3497
  date: "2024-08-20T10:00:00+08:00"
@@ -3493,7 +3566,7 @@ Choose this method when you need to route alerts to different channels based on
3493
3566
  <div class="md-block">
3494
3567
  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.
3495
3568
  </div>
3496
- `, R = `---
3569
+ `, T = `---
3497
3570
  title: "AppDynamics Alert Integration"
3498
3571
  description: "Sync AppDynamics alerts to Flashduty via webhook for automated alert noise reduction"
3499
3572
  date: "2024-07-05T10:00:00+08:00"
@@ -4069,7 +4142,7 @@ Choose this method when you need to route alerts to different channels based on
4069
4142
  </div>
4070
4143
 
4071
4144
  </div>
4072
- `, M = `---
4145
+ `, N = `---
4073
4146
  title: "OpManager Alert Events"
4074
4147
  description: "Sync OpManager alert events to Flashduty via webhook for automated alert noise reduction"
4075
4148
  date: "2024-07-05T10:00:00+08:00"
@@ -4203,7 +4276,7 @@ Choose this method when you need to route alerts to different channels based on
4203
4276
  | Attention | Info | Info |
4204
4277
 
4205
4278
  </div>
4206
- `, N = `---
4279
+ `, M = `---
4207
4280
  title: "Meraki Alert Events"
4208
4281
  description: "Sync Meraki alert events to Flashduty via webhook for automated alert noise reduction"
4209
4282
  date: "2024-07-05T10:00:00+08:00"
@@ -4276,6 +4349,165 @@ Choose this option when you need to route alerts to different channels based on
4276
4349
 
4277
4350
  </div>
4278
4351
  `, W = `---
4352
+ title: "StateCloud Alert Events"
4353
+ description: "Sync StateCloud alert events to Flashduty via webhook for automated alert noise reduction"
4354
+ date: "2024-07-05T10:00:00+08:00"
4355
+ url: "https://docs.flashcat.cloud/en/flashduty/statecloud-integration-guide"
4356
+ ---
4357
+
4358
+ Sync StateCloud monitoring alert events to Flashduty via webhook for automated alert noise reduction.
4359
+
4360
+ <div class="hide">
4361
+
4362
+ ## In Flashduty
4363
+ ---
4364
+ You can obtain an integration push URL through either of these two methods:
4365
+
4366
+ ### Using Dedicated Integration
4367
+
4368
+ Choose this simpler option when you don't need to route alert events to different channels.
4369
+
4370
+ <details>
4371
+ <summary>Expand</summary>
4372
+
4373
+ 1. Go to the Flashduty console, select **Channel**, and enter a channel's details page
4374
+ 2. Select the **Integration** tab, click **Add Integration** to enter the integration page
4375
+ 3. Select **StateCloud** integration and click **Save** to generate a card
4376
+ 4. Click the generated card to view the **push URL**, copy it for later use, and you're done
4377
+
4378
+ </details>
4379
+
4380
+ ### Using Shared Integration
4381
+
4382
+ Choose this option when you need to route alerts to different channels based on the alert event's payload information.
4383
+
4384
+ <details>
4385
+ <summary>Expand</summary>
4386
+
4387
+ 1. Go to the Flashduty console, select **Integration Center=>Alert Events** to enter the integration selection page
4388
+ 2. Select **StateCloud** integration:
4389
+ - **Integration Name**: Define a name for this integration
4390
+ 3. Click **Save** and copy the newly generated **push URL** for later use
4391
+ 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
4392
+ 5. Done
4393
+
4394
+ </details>
4395
+ </div>
4396
+
4397
+ ## In StateCloud
4398
+ ---
4399
+
4400
+ <div class="md-block">
4401
+
4402
+ ## I. StateCloud Alert Push Configuration
4403
+
4404
+ 1. Log in to your \`StateCloud\` console, search for the \`Cloud Eye\` product, and enter its console
4405
+ 2. In \`Alarm Service\`, select \`Alarm Contact/Group\` and create corresponding alert contact/group
4406
+ 3. In \`Alarm Rules\`, choose to create or modify Alarm rule
4407
+ 4. In the alarm rule editing page, fill in the integration <span class='integration_url' >push URL</span> under \`Alert Callback\` and click test
4408
+ 5. After successful testing, click \`Save\`
4409
+
4410
+ <img alt="drawing" width="600" src="https://download.flashcat.cloud/flashduty/doc/zh/statecloud/state-1.png" />
4411
+
4412
+ </dev>
4413
+
4414
+ ## II. Status Mapping
4415
+
4416
+ <div class="md-block">
4417
+
4418
+ | StateCloud | Flashduty | Status |
4419
+ | ---------- | --------- | ------ |
4420
+ | Urgent | Critical | critical |
4421
+ | Warning | Warning | warning |
4422
+ | Normal | Info | info |
4423
+
4424
+ </div>
4425
+ `, G = `---
4426
+ title: "Guance Alert Events"
4427
+ description: "Sync Guance alert events to Flashduty via webhook for automated alert noise reduction"
4428
+ date: "2024-07-05T10:00:00+08:00"
4429
+ url: "https://docs.flashcat.cloud/en/flashduty/statecloud-integration-guide"
4430
+ ---
4431
+
4432
+ Sync Guance monitoring alert events to Flashduty via webhook for automated alert noise reduction.
4433
+
4434
+ <div class="hide">
4435
+
4436
+ ## In Flashduty
4437
+ ---
4438
+ You can obtain an integration push URL through either of these two methods:
4439
+
4440
+ ### Using Dedicated Integration
4441
+
4442
+ Choose this simpler option when you don't need to route alert events to different channels.
4443
+
4444
+ <details>
4445
+ <summary>Expand</summary>
4446
+
4447
+ 1. Go to the Flashduty console, select **Channel**, and enter a specific channel's details page
4448
+ 2. Select the **Integrations** tab, click **Add Integration** to enter the integration page
4449
+ 3. Select **Guance** integration and click **Save** to generate a card
4450
+ 4. Click the generated card to view the **push URL**, copy it for later use, and you're done
4451
+
4452
+ </details>
4453
+
4454
+ ### Using Shared Integration
4455
+
4456
+ Choose this option when you need to route alerts to different channels based on the alert event's payload information.
4457
+
4458
+ <details>
4459
+ <summary>Expand</summary>
4460
+
4461
+ 1. Go to the Flashduty console, select **Integration Center=>Alert Events** to enter the integration selection page
4462
+ 2. Select **Guance** integration:
4463
+ - **Integration Name**: Define a name for this integration
4464
+ 3. Click **Save** and copy the newly generated **push URL** for later use
4465
+ 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
4466
+ 5. Done
4467
+
4468
+ </details>
4469
+ </div>
4470
+
4471
+ ## In Guance
4472
+ ---
4473
+
4474
+ <div class="md-block">
4475
+
4476
+ ## I. Alert Push Configuration
4477
+
4478
+ ### Step 1: Create Notification Object
4479
+ 1. Log in to your \`Guance\` console, select \`Notification Targets\` under \`Monitoring\`
4480
+ 2. Click \`Create\` and select \`Webhook\`
4481
+ 3. Fill in the name as \`Flashduty\` and enter the alert integration's <span class='integration_url'>push URL</span> in the \`Webhook URL\` field
4482
+ 4. Configure other options as needed and click \`Confirm\` to complete
4483
+
4484
+ <img alt="drawing" width="600" src="https://download.flashcat.cloud/flashduty/doc/en/fd/guance-1.png" />
4485
+
4486
+ ### Step 2: Create Alert Strategies
4487
+
4488
+ 1. Log in to your \`Guance\` console, select \`Alert Strategies\` under \`Monitoring\`
4489
+ 2. Create new or modify existing alert policies on the \`Alert Strategies\` page
4490
+ 3. In the notification configuration section of the alert strategies editing page, select \`severity\` and choose \`FlashDuty\` created in Step 1 as the \`Notification Tragets\`
4491
+ 4. Configure other options as needed and click \`Save\` to complete
4492
+
4493
+ <img alt="drawing" width="600" src="https://download.flashcat.cloud/flashduty/doc/zh/en/guance-2.png" />
4494
+
4495
+ </dev>
4496
+
4497
+ ## II. Status Mapping
4498
+
4499
+ <div class="md-block">
4500
+
4501
+ | Guance | Flashduty | Status |
4502
+ | ---------- | -------- | ---- |
4503
+ | Emergency | Critical | Critical |
4504
+ | Important | Warning | Warning |
4505
+ | Warning | Warning | Warning |
4506
+ | Info | Info | Info |
4507
+ | Data Gap | Info | Info |
4508
+
4509
+ </div>
4510
+ `, Y = `---
4279
4511
  title: "Custom Change Event Integration Guide"
4280
4512
  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."
4281
4513
  date: "2024-05-11T10:00:00+08:00"
@@ -4332,7 +4564,7 @@ Labels are descriptions of events. You should enrich label content as much as po
4332
4564
 
4333
4565
  </details>
4334
4566
 
4335
- `, G = `---
4567
+ `, q = `---
4336
4568
  title: "Jira Issue Events"
4337
4569
  description: "Sync Jira Issue events to Flashduty via webhooks to collect change events."
4338
4570
  date: "2024-05-11T10:00:00+08:00"
@@ -4406,7 +4638,7 @@ Flashduty extracts the status.name information from the webhook payload by defau
4406
4638
  Please contact Flashduty if you wish to modify this mapping.
4407
4639
 
4408
4640
  </div>
4409
- `, Y = `---
4641
+ `, O = `---
4410
4642
  title: Contributing to our documentation — Meilisearch documentation
4411
4643
  description: The Meilisearch documentation is open-source. Learn how to help make it even better.
4412
4644
  sidebarDepth: 3
@@ -4541,7 +4773,7 @@ Once published, you can access the application via mobile/PC client. First-time
4541
4773
  |Group Bot Webhook|Maximum 100 calls/minute|
4542
4774
  |Sending messages to the same user or group|Maximum 5 calls/second|
4543
4775
 
4544
- **Note:** Messages cannot be pushed normally when exceeding limits, please use notification channels reasonably`, O = `---
4776
+ **Note:** Messages cannot be pushed normally when exceeding limits, please use notification channels reasonably`, $ = `---
4545
4777
  title: "Dingtalk Integration"
4546
4778
  description: "Integrate with Dingtalk custom application to receive and respond to alerts within Dingtalk"
4547
4779
  date: "2024-05-11T10:00:00+08:00"
@@ -4697,7 +4929,7 @@ After the application is released, you can access it via mobile/PC client. First
4697
4929
  |Enterprise|5,500,000|60|1st of each month|
4698
4930
 
4699
4931
  **Note:** Messages cannot be pushed normally after exceeding limits, please use notification channels reasonably
4700
- `, q = `---
4932
+ `, j = `---
4701
4933
  title: "WeCom Integration"
4702
4934
  description: "Integrate WeCom third-party application to receive and respond to alerts within WeCom"
4703
4935
  date: "2024-05-11T10:00:00+08:00"
@@ -4776,7 +5008,7 @@ Integrate WeCom third-party application to receive and respond to alerts within
4776
5008
  7. **Incident notification fails with \`WeCom License Not Activated\`?**
4777
5009
 
4778
5010
  - Contact Flashduty customer service or dedicated support for license purchase and activation
4779
- `, $ = `---
5011
+ `, H = `---
4780
5012
  title: "Slack Integration"
4781
5013
  description: "Integrate with Slack to receive and respond to alerts within Slack"
4782
5014
  date: "2024-05-11T10:00:00+08:00"
@@ -4830,7 +5062,7 @@ Integrate with Slack to receive and respond to alerts within Slack.
4830
5062
 
4831
5063
  8. **Slack App shows Other questions error**
4832
5064
  - Try again, as this might be an unrecorded issue
4833
- - If the error persists, contact customer support`, j = `---
5065
+ - If the error persists, contact customer support`, B = `---
4834
5066
  title: "Microsoft Teams Integration"
4835
5067
  description: "Integrate Microsoft Teams as a third-party application to receive and respond to alerts within Microsoft Teams"
4836
5068
  date: "2024-05-11T10:00:00+08:00"
@@ -4925,7 +5157,7 @@ Please check in Integration Center => Instant Messaging => Microsoft Teams under
4925
5157
  Currently not supported
4926
5158
  </details>
4927
5159
 
4928
- `, H = `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.
5160
+ `, V = `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.
4929
5161
 
4930
5162
  <span id="EventTypes"></span>
4931
5163
 
@@ -5093,7 +5325,7 @@ curl -X POST 'https://example.com/alert/webhook?a=a' \\
5093
5325
  4. **Trusted IP whitelist for push sources?**
5094
5326
  - {ip_whitelist}
5095
5327
  - May be updated in the future, please check periodically
5096
- `, B = `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.
5328
+ `, z = `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.
5097
5329
 
5098
5330
  <span id="EventTypes"></span>
5099
5331
 
@@ -5299,7 +5531,7 @@ curl -X POST 'https://example.com/incident/webhook?a=a' \\
5299
5531
 
5300
5532
  4. **Trusted IP whitelist for push sources?**
5301
5533
  - {ip_whitelist}
5302
- - May be updated in the future, please check periodically`, V = `Custom incident actions allow you to quickly invoke external interfaces during incident troubleshooting for incident self-healing, information enrichment, and other custom operations.
5534
+ - May be updated in the future, please check periodically`, K = `Custom incident actions allow you to quickly invoke external interfaces during incident troubleshooting for incident self-healing, information enrichment, and other custom operations.
5303
5535
 
5304
5536
  ## I. Creating Actions
5305
5537
 
@@ -5546,7 +5778,7 @@ When an incident occurs and is confirmed to be caused by a change, directly trig
5546
5778
 
5547
5779
  ### Update Status Page
5548
5780
 
5549
- When an incident is confirmed to affect online services, trigger external status page updates to prompt`, z = `---
5781
+ When an incident is confirmed to affect online services, trigger external status page updates to prompt`, J = `---
5550
5782
  title: "Configure Notification Templates"
5551
5783
  description: "Customize notification content through template configuration"
5552
5784
  date: "2024-05-10T10:00:00+08:00"
@@ -6153,44 +6385,46 @@ As shown below:
6153
6385
  export {
6154
6386
  c as AWSCW,
6155
6387
  A as AWSEventBridge,
6156
- H as AlertWebhook,
6388
+ V as AlertWebhook,
6157
6389
  r as AliyunARMS,
6158
6390
  d as AliyunCm,
6159
6391
  l as AliyunCmEvent,
6160
6392
  c as AliyunSLS,
6161
- R as AppDynamics,
6393
+ T as AppDynamics,
6162
6394
  h as AzureMonitor,
6163
6395
  u as BaiDuBCM,
6164
- V as CustomAction,
6396
+ K as CustomAction,
6165
6397
  e as CustomAlert,
6166
- W as CustomChange,
6167
- O as Dingtalk,
6398
+ Y as CustomChange,
6399
+ $ as Dingtalk,
6168
6400
  L as Dynatrace,
6169
6401
  n as Email,
6170
6402
  F as GoogleCM,
6171
- i as Grafana,
6403
+ o as Grafana,
6172
6404
  k as Graylog,
6405
+ G as Guance,
6173
6406
  g as HuaWeiCES,
6174
6407
  x as HuaweiyunLTS,
6175
- B as IncidentWebhook,
6408
+ z as IncidentWebhook,
6176
6409
  p as InfluxDB,
6177
6410
  _ as Jiankongbao,
6178
- G as Jira,
6179
- Y as Lark,
6180
- N as Meraki,
6181
- j as MicrosoftTeams,
6411
+ q as Jira,
6412
+ O as Lark,
6413
+ M as Meraki,
6414
+ B as MicrosoftTeams,
6182
6415
  t as N9e,
6183
6416
  C as OceanBase,
6184
- M as OpManager,
6417
+ N as OpManager,
6185
6418
  m as OpenFalcon,
6186
6419
  f as PagerDuty,
6187
6420
  a as Prometheus,
6188
6421
  S as Sentry,
6189
6422
  I as Skywalking,
6190
- $ as Slack,
6423
+ H as Slack,
6191
6424
  U as SolarWinds,
6192
- T as Splunk,
6193
- z as Templates,
6425
+ R as Splunk,
6426
+ W as StateCloud,
6427
+ J as Templates,
6194
6428
  y as TencentBK,
6195
6429
  v as TencentCLS,
6196
6430
  b as TencentCm,
@@ -6199,6 +6433,6 @@ export {
6199
6433
  D as VolcEngineEvent,
6200
6434
  E as VolcEngineMetric,
6201
6435
  P as VolcEngineTLS,
6202
- q as Wecom,
6203
- o as Zabbix
6436
+ j as Wecom,
6437
+ i as Zabbix
6204
6438
  };