forked from opensearch-project/observability
-
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 plugin backend adaptor (opensearch-project#126) * adding plugin backed adaptor * resolved comments and beautification * Update notebooks to use observability backend (opensearch-project#129) * Event Analytics - Add index picker to explorer page (opensearch-project#125) * Add index picker to explorer page * Update explorer.tsx * Feature/operational panels backend (opensearch-project#130) * added panel router, viz router and panel types * removed let->const * minor fix * replaced console log->error, removed index_not_found error check * Feature/p1 release (opensearch-project#133) * removed live button Signed-off-by: Eric Wei <[email protected]> * refresh button Signed-off-by: Eric Wei <[email protected]> * removed live button from home Signed-off-by: Eric Wei <[email protected]> * xaxis range selectable Signed-off-by: Eric Wei <[email protected]> * added new charts Signed-off-by: Eric Wei <[email protected]> * added sidebar to vis, hided vis setting panel Signed-off-by: Eric Wei <[email protected]> * fixed a bar issue Signed-off-by: Eric Wei <[email protected]> * modified run/refresh button Signed-off-by: Eric Wei <[email protected]> * hided surrounding docs Signed-off-by: Eric Wei <[email protected]> * disabled insights Signed-off-by: Eric Wei <[email protected]> * disable reset button and remove s/ms options Signed-off-by: Eric Wei <[email protected]> * breadcrumb/route changes Signed-off-by: Eric Wei <[email protected]> * add date range to query & added runtime fields Signed-off-by: Eric Wei <[email protected]> * disabled toggle button for queried fields Signed-off-by: Eric Wei <[email protected]> * modified text Signed-off-by: Eric Wei <[email protected]> * added couple of configs to autocomplete * added saved objects and few bug fixes Signed-off-by: Eric Wei <[email protected]> * removed unused reference/files, modified few loggings Signed-off-by: Eric Wei <[email protected]> * removed missed comments/usused code, fixed one sidebar issue Signed-off-by: Eric Wei <[email protected]> * modified files for code review Signed-off-by: Eric Wei <[email protected]> * Feature/operational panel UI (opensearch-project#132) * modified panels home, table and view * added new panel modules * moved modules to folders with css * css edits and removed time regex check * removed time and fields regex checks * minor doc changes * adding visualization charts * added delete panelList functionality * edited delete custom panel function, beautified * changed console log to error * removed time/fields regex * removed length check, combined optionalArgs in custom modal, prettier fix Co-authored-by: Shenoy Pratik <[email protected]> Co-authored-by: Joshua <[email protected]> Co-authored-by: Eric Wei <[email protected]>
- Loading branch information
1 parent
58c3c67
commit bad8169
Showing
82 changed files
with
3,822 additions
and
1,893 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
* | ||
* Modifications Copyright OpenSearch Contributors. See | ||
* GitHub history for details. | ||
*/ | ||
|
||
export type CustomPanelListType = { | ||
name: string; | ||
id: string; | ||
dateCreated: string; | ||
dateModified: string; | ||
}; | ||
|
||
export type VisualizationType = { | ||
id: string; | ||
title: string; | ||
x: number; | ||
y: number; | ||
w: number; | ||
h: number; | ||
query: string; | ||
type: string; | ||
timeField: string; | ||
}; | ||
|
||
export type PanelType = { | ||
name: string; | ||
visualizations: VisualizationType[]; | ||
timeRange: { to: string; from: string }; | ||
queryFilter: { query: string; language: string }; | ||
}; | ||
|
||
export type SavedVisualizationType = { | ||
id: string; | ||
name: string; | ||
query: string; | ||
type: string; | ||
timeField: string; | ||
}; | ||
|
||
export type pplResponse = { | ||
data: any; | ||
metadata: any; | ||
size: number; | ||
status: number; | ||
}; |
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
Oops, something went wrong.