dashboard-shell-shell 3.0.5-tsh.2 → 3.0.5-tsh.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.
|
@@ -3495,6 +3495,18 @@ monitoringReceiver:
|
|
|
3495
3495
|
opsgenie:
|
|
3496
3496
|
label: Opsgenie
|
|
3497
3497
|
title: Opsgenie 配置
|
|
3498
|
+
dingding:
|
|
3499
|
+
label: 钉钉
|
|
3500
|
+
title: 钉钉 配置
|
|
3501
|
+
weixin:
|
|
3502
|
+
label: 企业微信
|
|
3503
|
+
title: 企业微信 配置
|
|
3504
|
+
snmp:
|
|
3505
|
+
label: SNMP
|
|
3506
|
+
title: SNMP 配置
|
|
3507
|
+
message:
|
|
3508
|
+
label: 短信
|
|
3509
|
+
title: 短信 配置
|
|
3498
3510
|
pagerduty:
|
|
3499
3511
|
label: PagerDuty
|
|
3500
3512
|
title: PagerDuty 配置
|
|
@@ -19,32 +19,32 @@ import { fetchAlertManagerConfigSpecs } from '@shell/utils/alertmanagerconfig';
|
|
|
19
19
|
export const RECEIVERS_TYPES = [
|
|
20
20
|
{
|
|
21
21
|
name: 'message',
|
|
22
|
-
label: '
|
|
23
|
-
title: '
|
|
22
|
+
label: 'monitoringReceiver.message.label',
|
|
23
|
+
title: 'monitoringReceiver.message.title',
|
|
24
24
|
info: 'monitoringReceiver.slack.info',
|
|
25
25
|
key: 'slackConfigs',
|
|
26
26
|
logo: require(`@shell/assets/images/vendor/slack.svg`)
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
29
|
name: 'dingding',
|
|
30
|
-
label: '
|
|
31
|
-
title: '
|
|
30
|
+
label: 'monitoringReceiver.dingding.label',
|
|
31
|
+
title: 'monitoringReceiver.dingding.title',
|
|
32
32
|
info: 'monitoringReceiver.slack.info',
|
|
33
33
|
key: 'dingding',
|
|
34
34
|
logo: require(`@shell/assets/images/vendor/slack.svg`)
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
37
|
name: 'work',
|
|
38
|
-
label: '
|
|
39
|
-
title: '
|
|
38
|
+
label: 'monitoringReceiver.weixin.label',
|
|
39
|
+
title: 'monitoringReceiver.weixin.title',
|
|
40
40
|
info: 'monitoringReceiver.slack.info',
|
|
41
41
|
key: 'work',
|
|
42
42
|
logo: require(`@shell/assets/images/vendor/slack.svg`)
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
name: 'snmp',
|
|
46
|
-
label: '
|
|
47
|
-
title: '
|
|
46
|
+
label: 'monitoringReceiver.snmp.label',
|
|
47
|
+
title: 'monitoringReceiver.snmp.title',
|
|
48
48
|
info: 'monitoringReceiver.slack.info',
|
|
49
49
|
key: 'snmp',
|
|
50
50
|
logo: require(`@shell/assets/images/vendor/slack.svg`)
|