forked from elastic/kibana
-
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.
[Observability] Unified Kubernetes Observability with OpenTelemetry (e…
- Loading branch information
1 parent
550015b
commit bb6e78e
Showing
9 changed files
with
434 additions
and
33 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
36 changes: 36 additions & 0 deletions
36
...ervability_solution/observability_onboarding/public/application/pages/otel_kubernetes.tsx
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,36 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import { i18n } from '@kbn/i18n'; | ||
import React from 'react'; | ||
import { OtelKubernetesPanel } from '../quickstart_flows/otel_kubernetes/otel_kubernetes_panel'; | ||
import { PageTemplate } from './template'; | ||
import { CustomHeader } from '../header'; | ||
|
||
export const OtelKubernetesPage = () => ( | ||
<PageTemplate | ||
customHeader={ | ||
<CustomHeader | ||
logo="opentelemetry" | ||
headlineCopy={i18n.translate( | ||
'xpack.observability_onboarding.experimentalOnboardingFlow.customHeader.otelKubernetes.text', | ||
{ | ||
defaultMessage: 'Elastic Distribution for OTel Collector', | ||
} | ||
)} | ||
captionCopy={i18n.translate( | ||
'xpack.observability_onboarding.experimentalOnboardingFlow.customHeader.otelKubernetes.caption.description', | ||
{ | ||
defaultMessage: 'Unified Kubernetes observability with the OpenTelemetry Operator', | ||
} | ||
)} | ||
/> | ||
} | ||
> | ||
<OtelKubernetesPanel /> | ||
</PageTemplate> | ||
); |
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
8 changes: 8 additions & 0 deletions
8
...on/observability_onboarding/public/application/quickstart_flows/otel_kubernetes/index.tsx
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,8 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
export { OtelKubernetesPanel } from './otel_kubernetes_panel'; |
Oops, something went wrong.