Skip to content

Commit 30ab8ef

Browse files
[8.x] [Observability Onboarding] Set tech preview badges correctly (#197831) (#198131)
# Backport This will backport the following commits from `main` to `8.x`: - [[Observability Onboarding] Set tech preview badges correctly (#197831)](#197831) <!--- Backport version: 9.4.3 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Joe Reuter","email":"johannes.reuter@elastic.co"},"sourceCommit":{"committedDate":"2024-10-29T10:28:22Z","message":"[Observability Onboarding] Set tech preview badges correctly (#197831)\n\nAs discussed, adjust the first onboarding page:\r\n* Remove tech preview labels from EA flows\r\n* Change wording\r\n\r\n<img width=\"857\" alt=\"Screenshot 2024-10-25 at 15 23 47\"\r\nsrc=\"https://github.com/user-attachments/assets/ceffbe90-019d-4fa8-ab6f-16cbf0aaf3d4\">\r\n<img width=\"814\" alt=\"Screenshot 2024-10-25 at 15 23 59\"\r\nsrc=\"https://github.com/user-attachments/assets/4f5cf657-6fd2-479f-aa92-9460bc2ecfef\">","sha":"d23dce0080f8c7815188aa244f98c526d84ee45e","branchLabelMapping":{"^v9.0.0$":"main","^v8.17.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","v9.0.0","backport:prev-minor","ci:project-deploy-observability","Team:obs-ux-logs","Feature: Observability Onboarding","v8.16.0","v8.17.0"],"title":"[Observability Onboarding] Set tech preview badges correctly","number":197831,"url":"https://github.com/elastic/kibana/pull/197831","mergeCommit":{"message":"[Observability Onboarding] Set tech preview badges correctly (#197831)\n\nAs discussed, adjust the first onboarding page:\r\n* Remove tech preview labels from EA flows\r\n* Change wording\r\n\r\n<img width=\"857\" alt=\"Screenshot 2024-10-25 at 15 23 47\"\r\nsrc=\"https://github.com/user-attachments/assets/ceffbe90-019d-4fa8-ab6f-16cbf0aaf3d4\">\r\n<img width=\"814\" alt=\"Screenshot 2024-10-25 at 15 23 59\"\r\nsrc=\"https://github.com/user-attachments/assets/4f5cf657-6fd2-479f-aa92-9460bc2ecfef\">","sha":"d23dce0080f8c7815188aa244f98c526d84ee45e"}},"sourceBranch":"main","suggestedTargetBranches":["8.16","8.x"],"targetPullRequestStates":[{"branch":"main","label":"v9.0.0","branchLabelMappingKey":"^v9.0.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/197831","number":197831,"mergeCommit":{"message":"[Observability Onboarding] Set tech preview badges correctly (#197831)\n\nAs discussed, adjust the first onboarding page:\r\n* Remove tech preview labels from EA flows\r\n* Change wording\r\n\r\n<img width=\"857\" alt=\"Screenshot 2024-10-25 at 15 23 47\"\r\nsrc=\"https://github.com/user-attachments/assets/ceffbe90-019d-4fa8-ab6f-16cbf0aaf3d4\">\r\n<img width=\"814\" alt=\"Screenshot 2024-10-25 at 15 23 59\"\r\nsrc=\"https://github.com/user-attachments/assets/4f5cf657-6fd2-479f-aa92-9460bc2ecfef\">","sha":"d23dce0080f8c7815188aa244f98c526d84ee45e"}},{"branch":"8.16","label":"v8.16.0","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"8.x","label":"v8.17.0","branchLabelMappingKey":"^v8.17.0$","isSourceBranch":false,"state":"NOT_CREATED"}]}] BACKPORT--> Co-authored-by: Joe Reuter <johannes.reuter@elastic.co>
1 parent d4b1e28 commit 30ab8ef

3 files changed

Lines changed: 6 additions & 11 deletions

File tree

x-pack/plugins/observability_solution/observability_onboarding/public/application/onboarding_flow_form/use_custom_cards_for_category.tsx

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export function useCustomCardsForCategory(
5151
title: i18n.translate(
5252
'xpack.observability_onboarding.useCustomCardsForCategory.autoDetectTitle',
5353
{
54-
defaultMessage: 'Auto-detect Integrations with Elastic Agent',
54+
defaultMessage: 'Elastic Agent: Logs & Metrics',
5555
}
5656
),
5757
description: i18n.translate(
@@ -79,7 +79,6 @@ export function useCustomCardsForCategory(
7979
version: '',
8080
integration: '',
8181
isQuickstart: true,
82-
release: 'preview',
8382
},
8483
{
8584
id: 'otel-logs',
@@ -88,7 +87,7 @@ export function useCustomCardsForCategory(
8887
title: i18n.translate(
8988
'xpack.observability_onboarding.useCustomCardsForCategory.logsOtelTitle',
9089
{
91-
defaultMessage: 'Host monitoring with EDOT Collector',
90+
defaultMessage: 'OpenTelemetry: Logs & Metrics',
9291
}
9392
),
9493
description: i18n.translate(
@@ -130,14 +129,13 @@ export function useCustomCardsForCategory(
130129
title: i18n.translate(
131130
'xpack.observability_onboarding.useCustomCardsForCategory.kubernetesTitle',
132131
{
133-
defaultMessage: 'Kubernetes monitoring with Elastic Agent',
132+
defaultMessage: 'Elastic Agent: Logs & Metrics',
134133
}
135134
),
136135
description: i18n.translate(
137136
'xpack.observability_onboarding.useCustomCardsForCategory.kubernetesDescription',
138137
{
139-
defaultMessage:
140-
'Monitor your Kubernetes cluster with Elastic Agent, collect container logs',
138+
defaultMessage: 'Collect logs and metrics from Kubernetes using Elastic Agent',
141139
}
142140
),
143141
extraLabelsBadges: [
@@ -156,7 +154,6 @@ export function useCustomCardsForCategory(
156154
version: '',
157155
integration: '',
158156
isQuickstart: true,
159-
release: 'preview',
160157
},
161158
{
162159
id: 'otel-kubernetes',
@@ -165,14 +162,14 @@ export function useCustomCardsForCategory(
165162
title: i18n.translate(
166163
'xpack.observability_onboarding.useCustomCardsForCategory.kubernetesOtelTitle',
167164
{
168-
defaultMessage: 'Kubernetes monitoring with EDOT Collector',
165+
defaultMessage: 'OpenTelemetry: Full Observability',
169166
}
170167
),
171168
description: i18n.translate(
172169
'xpack.observability_onboarding.useCustomCardsForCategory.kubernetesOtelDescription',
173170
{
174171
defaultMessage:
175-
'Unified Kubernetes observability with Elastic Distro for OTel Collector',
172+
'Collect logs, traces and metrics with the Elastic Distro for OTel Collector',
176173
}
177174
),
178175
extraLabelsBadges: [

x-pack/plugins/observability_solution/observability_onboarding/public/application/pages/auto_detect.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ export const AutoDetectPage = () => (
2929
'This installation scans your host and auto-detects log and metric files.',
3030
}
3131
)}
32-
isTechnicalPreview={true}
3332
/>
3433
}
3534
>

x-pack/plugins/observability_solution/observability_onboarding/public/application/pages/kubernetes.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ export const KubernetesPage = () => (
2929
'This installation is tailored for configuring and collecting metrics and logs by deploying a new Elastic Agent within your host.',
3030
}
3131
)}
32-
isTechnicalPreview={true}
3332
/>
3433
}
3534
>

0 commit comments

Comments
 (0)