Alerting: receivers table in the receivers page (#33119)

This commit is contained in:
Domas
2021-04-23 15:54:31 +03:00
committed by GitHub
parent e6a9654d0e
commit 67f6611d85
12 changed files with 271 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
export const receiverTypeNames: Record<string, string> = {
pagerduty: 'PagerDuty',
pushover: 'Pushover',
slack: 'Slack',
opsgenie: 'OpsGenie',
webhook: 'Webhook',
victorops: 'VictorOps',
wechat: 'WeChat',
};

View File

@@ -92,6 +92,7 @@ export type Receiver = {
victorops_configs?: unknown[];
wechat_configs?: unknown[];
grafana_managed_receiver_configs?: GrafanaManagedReceiverConfig[];
[key: string]: unknown;
};
export type Route = {