-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding functionality to associate existing detector with a visualizat…
…ion (opensearch-project#484) * Adding associate existing Signed-off-by: Amit Galitzky <amgalitz@amazon.com> * removed usememo, addressed other comments Signed-off-by: Amit Galitzky <amgalitz@amazon.com> * merge cleanup Signed-off-by: Amit Galitzky <amgalitz@amazon.com> * added integration to call on alerting Signed-off-by: Amit Galitzky <amgalitz@amazon.com> * cleaned up files and added changes to check if detector is deleted in expr fn Signed-off-by: Amit Galitzky <amgalitz@amazon.com> * fixing dependency and notifcations issues Signed-off-by: Amit Galitzky <amgalitz@amazon.com> * removed long toast life time Signed-off-by: Amit Galitzky <amgalitz@amazon.com> --------- Signed-off-by: Amit Galitzky <amgalitz@amazon.com>
- Loading branch information
1 parent
1e4f962
commit 3479e20
Showing
14 changed files
with
630 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
public/components/FeatureAnywhereContextMenu/AnywhereParentFlyout/constants.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
//created: Flyout for creating a new anomaly detector from a visualization | ||
//associated: Flyout for listing all the associated detectors to the given visualization | ||
//existing: Flyout for associating existing detectors with the current visualizations | ||
export enum FLYOUT_MODES { | ||
create = 'create', | ||
associated = 'associated', | ||
existing = 'existing', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.