-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update-traces-span-redirection
- 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.