-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* UI pass updating everything Signed-off-by: Adam Tackett <tackadam@amazon.com> * dashboard re-direct to integration for otel Signed-off-by: Adam Tackett <tackadam@amazon.com> * correct naming and icon for three cases Signed-off-by: Adam Tackett <tackadam@amazon.com> * updates to jsons and ndjsons Signed-off-by: Adam Tackett <tackadam@amazon.com> * remove dashboard creation from the create assets call Signed-off-by: Adam Tackett <tackadam@amazon.com> * update name to Self Managed Signed-off-by: Adam Tackett <tackadam@amazon.com> * Remove hyperlink from discover Signed-off-by: Adam Tackett <tackadam@amazon.com> * address comments Signed-off-by: Adam Tackett <tackadam@amazon.com> --------- Signed-off-by: Adam Tackett <tackadam@amazon.com> Co-authored-by: Adam Tackett <tackadam@amazon.com> (cherry picked from commit f68eba1)
- Loading branch information
Showing
48 changed files
with
1,281 additions
and
1,909 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
export type TutorialId = | ||
| 'otelLogs' | ||
| 'otelMetrics' | ||
| 'otelTraces' | ||
| 'nginx' | ||
| 'java' | ||
| 'python' | ||
| 'golang'; | ||
|
||
export const COMPONENT_MAP: Record<TutorialId, string> = { | ||
otelLogs: 'otel-index-patterns', | ||
otelMetrics: 'otel-index-patterns', | ||
otelTraces: 'otel-index-patterns', | ||
nginx: 'nginx', | ||
java: 'java-tutorial', | ||
python: 'python-tutorial', | ||
golang: 'golang-tutorial', | ||
}; | ||
|
||
export const VERSION_MAP: Record<TutorialId, string> = { | ||
otelLogs: '1.0.0', | ||
otelMetrics: '1.0.0', | ||
otelTraces: '1.0.0', | ||
nginx: '1.0.0', | ||
java: '1.0.0', | ||
python: '1.0.0', | ||
golang: '1.0.0', | ||
}; | ||
|
||
export const SIGNAL_MAP: Record<TutorialId, string> = { | ||
otelLogs: 'Logs', | ||
otelMetrics: 'Metrics', | ||
otelTraces: 'Traces', | ||
nginx: '', | ||
java: '', | ||
python: '', | ||
golang: '', | ||
}; |
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.