kibana/x-pack/plugins/aiops/common/index.ts
Walter Rafelsberger 87760ee8fc
[ML] AIOps: Fix comment/prop type for lazy component for change point detection (#154893)
Fix comment and prop type for lazy component for change point detection.
2023-04-17 09:22:51 +02:00

28 lines
886 B
TypeScript
Executable file

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
/**
* PLUGIN_ID is used as a unique identifier for the aiops plugin
*/
export const PLUGIN_ID = 'aiops';
/**
* PLUGIN_NAME is used as the display name for the aiops plugin
*/
export const PLUGIN_NAME = 'AIOps';
/**
* This is an internal hard coded feature flag so we can easily turn on/off the
* "Explain log rate spikes UI" during development until the first release.
*/
export const AIOPS_ENABLED = true;
/**
* This is an internal hard coded feature flag so we can easily turn on/off the
* "Change Point Detection UI" during development until the first release.
*/
export const CHANGE_POINT_DETECTION_ENABLED = true;