-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* support date_nanos type Signed-off-by: Hailong Cui <[email protected]> * support context aware alert analysis Signed-off-by: Hailong Cui <[email protected]> * Register summary generation type of IncontextInsight for alert summarization Signed-off-by: Songkan Tang <[email protected]> * Fix dashboard unit test failure Signed-off-by: Songkan Tang <[email protected]> * Make each alert register its own IncontextInsight Signed-off-by: Songkan Tang <[email protected]> * Enable context aware alert only if feature flag is enabled Signed-off-by: Songkan Tang <[email protected]> * Avoid unnecessary change and minorly change summary question Signed-off-by: Songkan Tang <[email protected]> * Fix undefined alert name Signed-off-by: Songkan Tang <[email protected]> * Pass monitor type to additional info object of contextProvider Signed-off-by: Songkan Tang <[email protected]> * Address some comments and change feature flag Signed-off-by: Songkan Tang <[email protected]> * Add assistant capabilities check to control component rendering Signed-off-by: Songkan Tang <[email protected]> * Fix mismatched unit test snapshots Signed-off-by: Songkan Tang <[email protected]> * Handle the edge case of multiple indices in search and return more information in additionalInfo Signed-off-by: Songkan Tang <[email protected]> * Reduce llm context input size by taking topN active alerts Signed-off-by: Songkan Tang <[email protected]> * Distinguish source data and aggregation that trigger the alert Signed-off-by: Songkan Tang <[email protected]> * Rename the capability UI rendering flag per assistant plugin change Signed-off-by: Songkan Tang <[email protected]> * Remove alert sample data per current requirement from context Signed-off-by: Songkan Tang <[email protected]> --------- Signed-off-by: Hailong Cui <[email protected]> Signed-off-by: Songkan Tang <[email protected]> Co-authored-by: Hailong Cui <[email protected]> Signed-off-by: AWSHurneyt <[email protected]>
- Loading branch information
1 parent
9378a47
commit 471b376
Showing
9 changed files
with
135 additions
and
8 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
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
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
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
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
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
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
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
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,12 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
/** | ||
* Introduce a compile dependency on dashboards-assistant | ||
* as alerting need some types from the plugin. | ||
* It will give a type error when dashboards-assistant is not installed so add a ts-ignore to suppress the error. | ||
*/ | ||
// @ts-ignore | ||
export type { AssistantSetup } from '../../dashboards-assistant/public'; |