Revert "[APM] Set apmProgressiveLoading low by default and remove technical preview" (#220234)

Reverts elastic/kibana#219067
This commit is contained in:
Sergi Romeu 2025-05-06 17:43:45 +02:00 committed by GitHub
parent a1d60ae978
commit c47556ac08
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 7 additions and 6 deletions

View file

@ -313,7 +313,7 @@ $$$observability-apm-labs$$$`observability:apmLabsButton`
: Enable or disable the APM Labs buttona quick way to enable and disable technical preview features in APM.
$$$observability-enable-progressive-loading$$$`observability:apmProgressiveLoading`
: When enabled, uses progressive loading of some APM views. Data may be requested with a lower sampling rate first, with lower accuracy but faster response times, while the unsampled data loads in the background.
: [preview] When enabled, uses progressive loading of some APM views. Data may be requested with a lower sampling rate first, with lower accuracy but faster response times, while the unsampled data loads in the background.
$$$observability-apm-max-groups$$$`observability:apmServiceGroupMaxNumberOfServices`
: Limit the number of services in a given service group.

View file

@ -31881,7 +31881,7 @@
"xpack.observability.apmLabs": "Activer le bouton Ateliers dans APM",
"xpack.observability.apmLabsDescription": "Cet indicateur détermine si l'utilisateur a accès au bouton Ateliers, moyen rapide d'activer et de désactiver les fonctionnalités de la version d'évaluation technique dans APM.",
"xpack.observability.apmProgressiveLoading": "Utiliser le chargement progressif des vues APM sélectionnées",
"xpack.observability.apmProgressiveLoadingDescription": "S'il faut charger les données de façon progressive pour les vues APM. Les données peuvent être demandées d'abord avec un taux d'échantillonnage inférieur, avec une précision plus faible mais des temps de réponse plus rapides, pendant que les données non échantillonnées se chargent en arrière-plan",
"xpack.observability.apmProgressiveLoadingDescription": "{technicalPreviewLabel} S'il faut charger les données de façon progressive pour les vues APM. Les données peuvent être demandées d'abord avec un taux d'échantillonnage inférieur, avec une précision plus faible mais des temps de réponse plus rapides, pendant que les données non échantillonnées se chargent en arrière-plan",
"xpack.observability.apmProgressiveLoadingQualityHigh": "Taux d'échantillonnage élevé (plus lent, plus précis)",
"xpack.observability.apmProgressiveLoadingQualityLow": "Taux d'échantillonnage bas (plus rapide, moins précis)",
"xpack.observability.apmProgressiveLoadingQualityMedium": "Taux d'échantillonnage moyen",

View file

@ -31859,7 +31859,7 @@
"xpack.observability.apmLabs": "APMでラボボタンを有効にする",
"xpack.observability.apmLabsDescription": "このフラグはビューアーでラボボタンを使用できるかどうかを決定します。APMでテクニカルプレビュー中の機能を有効および無効にするための簡単な方法です。",
"xpack.observability.apmProgressiveLoading": "選択したAPMビューのプログレッシブ読み込みを使用",
"xpack.observability.apmProgressiveLoadingDescription": "APMビューでデータのプログレッシブ読み込みを行うかどうか。サンプリングされていないデータをバックグラウンドで読み込みながら、最初は低いサンプリングレート、低い精度、高速の応答時間でデータを要求できます",
"xpack.observability.apmProgressiveLoadingDescription": "{technicalPreviewLabel} APMビューでデータのプログレッシブ読み込みを行うかどうか。サンプリングされていないデータをバックグラウンドで読み込みながら、最初は低いサンプリングレート、低い精度、高速の応答時間でデータを要求できます",
"xpack.observability.apmProgressiveLoadingQualityHigh": "高サンプリングレート(低速、最も精度が高い)",
"xpack.observability.apmProgressiveLoadingQualityLow": "低サンプリングレート(最速、最も精度が低い)",
"xpack.observability.apmProgressiveLoadingQualityMedium": "中サンプリングレート",

View file

@ -31913,7 +31913,7 @@
"xpack.observability.apmLabs": "在 APM 中启用“实验”按钮",
"xpack.observability.apmLabsDescription": "此标志决定查看者是否有权访问用于在 APM 中快速启用和禁用技术预览功能的“实验”按钮。",
"xpack.observability.apmProgressiveLoading": "使用渐进方式加载选定 APM 视图",
"xpack.observability.apmProgressiveLoadingDescription": "是否以渐进方式为 APM 视图加载数据。可以先以较低的采样速率请求数据,这样的准确性较低,但响应时间更快,同时在后台加载未采样数据",
"xpack.observability.apmProgressiveLoadingDescription": "{technicalPreviewLabel} 是否以渐进方式为 APM 视图加载数据。可以先以较低的采样速率请求数据,这样的准确性较低,但响应时间更快,同时在后台加载未采样数据",
"xpack.observability.apmProgressiveLoadingQualityHigh": "高采样速率(更慢,最准确)",
"xpack.observability.apmProgressiveLoadingQualityLow": "低采样速率(最快,最不准确)",
"xpack.observability.apmProgressiveLoadingQualityMedium": "中等采样速率",

View file

@ -115,9 +115,10 @@ export const uiSettings: Record<string, UiSettings> = {
}),
description: i18n.translate('xpack.observability.apmProgressiveLoadingDescription', {
defaultMessage:
'Whether to load data progressively for APM views. Data may be requested with a lower sampling rate first, with lower accuracy but faster response times, while the unsampled data loads in the background',
'{technicalPreviewLabel} Whether to load data progressively for APM views. Data may be requested with a lower sampling rate first, with lower accuracy but faster response times, while the unsampled data loads in the background',
values: { technicalPreviewLabel: `<em>[${technicalPreviewLabel}]</em>` },
}),
value: ProgressiveLoadingQuality.low,
value: ProgressiveLoadingQuality.off,
schema: schema.oneOf([
schema.literal(ProgressiveLoadingQuality.off),
schema.literal(ProgressiveLoadingQuality.low),