-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge Application Analytics into main (#454)
Signed-off-by: Eugene Lee <[email protected]>
- Loading branch information
1 parent
3a6942d
commit 08b84c8
Showing
98 changed files
with
29,101 additions
and
2,082 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
dashboards-observability/common/constants/application_analytics.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,19 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
export const TAB_OVERVIEW_ID_TXT_PFX = 'app-analytics-overview-'; | ||
export const TAB_SERVICE_ID_TXT_PFX = 'app-analytics-service-'; | ||
export const TAB_TRACE_ID_TXT_PFX = 'app-analytics-trace-'; | ||
export const TAB_LOG_ID_TXT_PFX = 'app-analytics-log-'; | ||
export const TAB_PANEL_ID_TXT_PFX = 'app-analytics-panel-' | ||
export const TAB_CONFIG_ID_TXT_PFX = 'app-analytics-config-'; | ||
export const TAB_OVERVIEW_TITLE = 'Overview'; | ||
export const TAB_SERVICE_TITLE = 'Services'; | ||
export const TAB_TRACE_TITLE = 'Traces & Spans'; | ||
export const TAB_LOG_TITLE = 'Log Events'; | ||
export const TAB_PANEL_TITLE = 'Panels'; | ||
export const TAB_CONFIG_TITLE = 'Configuration'; | ||
|
||
export const APP_ANALYTICS_API_PREFIX = '/api/observability/application'; |
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,24 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
export interface OptionType { | ||
label: string; | ||
} | ||
|
||
export interface ApplicationListType { | ||
name: string; | ||
id: string; | ||
dateCreated: string; | ||
dateModified: string; | ||
} | ||
|
||
export interface ApplicationType { | ||
name: string; | ||
description: string; | ||
baseQuery: string; | ||
servicesEntities: string[]; | ||
traceGroups: string[]; | ||
panelId: string; | ||
} |
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.