From 93931f9e3b0d12adf62f25429c08bc7519fed14a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Efe=20G=C3=BCrkan=20YALAMAN?= Date: Tue, 25 Feb 2025 12:16:31 +0100 Subject: [PATCH] Remove Search Applications and Behavioral Analytics from search (#211888) ## Summary Removes Search Applications from globalSearch due to maintenance mode. Removes Behavioral Analytics from globalSearch due to deprecation. Summarize your PR. If it involves visual changes include a screenshot or gif. Screenshot 2025-02-21 at 13 45 48 Screenshot 2025-02-21 at 13 45 57 ### Checklist Check the PR satisfies following conditions. Reviewers should verify this PR satisfies this list as well. - [ ] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [ ] [Flaky Test Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was used on any tests changed - [x] The PR description includes the appropriate Release Notes section, and the correct `release_note:*` label is applied per the [guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) --- .../search/plugins/enterprise_search/public/plugin.ts | 3 ++- .../search/plugins/enterprise_search/server/plugin.ts | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/x-pack/solutions/search/plugins/enterprise_search/public/plugin.ts b/x-pack/solutions/search/plugins/enterprise_search/public/plugin.ts index 94bb716d95fc8..110ea612ba2f2 100644 --- a/x-pack/solutions/search/plugins/enterprise_search/public/plugin.ts +++ b/x-pack/solutions/search/plugins/enterprise_search/public/plugin.ts @@ -131,7 +131,7 @@ const applicationsLinks: AppDeepLink[] = [ defaultMessage: 'Search Applications', } ), - visibleIn: ['globalSearch'], + visibleIn: [], }, ]; @@ -389,6 +389,7 @@ export class EnterpriseSearchPlugin implements Plugin { return renderApp(Analytics, kibanaDeps, pluginData); }, title: ANALYTICS_PLUGIN.NAME, + visibleIn: [], }); core.application.register({ diff --git a/x-pack/solutions/search/plugins/enterprise_search/server/plugin.ts b/x-pack/solutions/search/plugins/enterprise_search/server/plugin.ts index c85202f3e0faf..3f2acd4823bfa 100644 --- a/x-pack/solutions/search/plugins/enterprise_search/server/plugin.ts +++ b/x-pack/solutions/search/plugins/enterprise_search/server/plugin.ts @@ -199,6 +199,7 @@ export class EnterpriseSearchPlugin implements Plugin