From 667652e19b78584031c3e72793e40ffccb50509c Mon Sep 17 00:00:00 2001 From: Marco Antonio Ghiani Date: Thu, 5 Dec 2024 11:49:52 +0100 Subject: [PATCH] [Logs] Deprecate advanced settings for v9.0.0 (#201102) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 📓 Summary Closes #200900 As part of the readiness requirements to upgrade Kibana to v9.0.0, this work deprecates some advanced settings that will be removed. Screenshot 2024-11-21 at 11 15 25 Co-authored-by: Marco Antonio Ghiani --- .../logs_explorer/common/ui_settings.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/x-pack/plugins/observability_solution/logs_explorer/common/ui_settings.ts b/x-pack/plugins/observability_solution/logs_explorer/common/ui_settings.ts index 65983c3993488..cc9f7f76a3765 100644 --- a/x-pack/plugins/observability_solution/logs_explorer/common/ui_settings.ts +++ b/x-pack/plugins/observability_solution/logs_explorer/common/ui_settings.ts @@ -25,6 +25,13 @@ export const uiSettings: Record = { defaultMessage: 'A list of base patterns to match and explore data views in Logs Explorer. Remote clusters will be automatically matched for the provided base patterns.', }), + deprecation: { + message: i18n.translate('xpack.logsExplorer.allowedDataViewsDeprecationWarning', { + defaultMessage: + 'Logs Explorer is deprecated, and this setting will be removed in Kibana 9.0.', + }), + docLinksKey: 'generalSettings', + }, type: 'array', schema: schema.arrayOf(schema.string()), requiresPageReload: true,