kibana/x-pack/plugins/monitoring/common/enums.ts
Chris Roberson de22caa0f6
[Monitoring] Ensure setup mode works on cloud but only for alerts (#73127)
* Ensure setup mode works on cloud but only for alerts

* Update snapshot

* Update translations

* Restructure tests to understand the failure better

* PR feedback

* Backwards, whoops

* Remove commented out code

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-08-04 13:32:21 -04:00

34 lines
719 B
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
export enum AlertClusterHealthType {
Green = 'green',
Red = 'red',
Yellow = 'yellow',
}
export enum AlertSeverity {
Success = 'success',
Danger = 'danger',
Warning = 'warning',
}
export enum AlertMessageTokenType {
Time = 'time',
Link = 'link',
DocLink = 'docLink',
}
export enum AlertParamType {
Duration = 'duration',
Percentage = 'percentage',
}
export enum SetupModeFeature {
MetricbeatMigration = 'metricbeatMigration',
Alerts = 'alerts',
}