From 499c3faccb9558bbc2733be23bdebfd389093462 Mon Sep 17 00:00:00 2001 From: Samiul Monir Date: Mon, 18 Nov 2024 14:13:18 -0500 Subject: [PATCH] Fix formatting issue with yml and json file --- config/serverless.es.yml | 58 +++++++++---------- .../search_inference_endpoints/kibana.jsonc | 22 +++++-- 2 files changed, 47 insertions(+), 33 deletions(-) diff --git a/config/serverless.es.yml b/config/serverless.es.yml index c4929f2c1fa45..4b0d416bacdfc 100644 --- a/config/serverless.es.yml +++ b/config/serverless.es.yml @@ -23,42 +23,42 @@ xpack.fleet.packages: version: latest # Filter out some observability and security integrations xpack.fleet.internal.registry.excludePackages: [ - # Security integrations - 'endpoint', - 'beaconing', - 'cloud_security_posture', - 'cloud_defend', - 'security_detection_engine', - - # Oblt integrations - 'apm', - 'synthetics', - 'synthetics_dashboards', - - # Removed in 8.11 integrations - 'cisco', - 'microsoft', - 'symantec', - 'cyberark', - - # Profiling integrations - 'profiler_agent', - ] + # Security integrations + 'endpoint', + 'beaconing', + 'cloud_security_posture', + 'cloud_defend', + 'security_detection_engine', + + # Oblt integrations + 'apm', + 'synthetics', + 'synthetics_dashboards', + + # Removed in 8.11 integrations + 'cisco', + 'microsoft', + 'symantec', + 'cyberark', + + # Profiling integrations + 'profiler_agent', +] ## Fine-tune the search solution feature privileges. Also, refer to `serverless.yml` for the project-agnostic overrides. xpack.features.overrides: ### Dashboards feature is moved from Analytics category to the Search one. - dashboard.category: 'enterpriseSearch' + dashboard.category: "enterpriseSearch" ### Dev Tools feature is moved from Analytics category to the Search one. - dev_tools.category: 'enterpriseSearch' + dev_tools.category: "enterpriseSearch" ### Discover feature is moved from Analytics category to the Search one. - discover.category: 'enterpriseSearch' + discover.category: "enterpriseSearch" ### Machine Learning feature is moved from Analytics category to the Management one. - ml.category: 'management' + ml.category: "management" ### Stack Alerts feature is moved from Analytics category to the Search one renamed to simply `Alerts`. stackAlerts: - name: 'Alerts' - category: 'enterpriseSearch' + name: "Alerts" + category: "enterpriseSearch" ## Cloud settings xpack.cloud.serverless.project_type: search @@ -126,9 +126,9 @@ xpack.index_management.dev.enableSemanticText: true xpack.observabilityAIAssistant.enabled: true xpack.searchAssistant.enabled: true xpack.searchAssistant.ui.enabled: true -xpack.observabilityAIAssistant.scope: 'search' +xpack.observabilityAIAssistant.scope: "search" xpack.observabilityAIAssistant.enableKnowledgeBase: false -aiAssistantManagementSelection.preferredAIAssistantType: 'observability' +aiAssistantManagementSelection.preferredAIAssistantType: "observability" xpack.observabilityAiAssistantManagement.logSourcesEnabled: false xpack.observabilityAiAssistantManagement.spacesEnabled: false xpack.observabilityAiAssistantManagement.visibilityEnabled: false diff --git a/x-pack/plugins/search_inference_endpoints/kibana.jsonc b/x-pack/plugins/search_inference_endpoints/kibana.jsonc index 3d8341df35b56..25b7b391b955a 100644 --- a/x-pack/plugins/search_inference_endpoints/kibana.jsonc +++ b/x-pack/plugins/search_inference_endpoints/kibana.jsonc @@ -11,9 +11,23 @@ "id": "searchInferenceEndpoints", "server": true, "browser": true, - "configPath": ["xpack", "searchInferenceEndpoints"], - "requiredPlugins": ["actions", "features", "ml", "share"], - "optionalPlugins": ["cloud", "console", "serverless"], - "requiredBundles": ["kibanaReact"] + "configPath": [ + "xpack", + "searchInferenceEndpoints" + ], + "requiredPlugins": [ + "actions", + "features", + "ml", + "share", + ], + "optionalPlugins": [ + "cloud", + "console", + "serverless" + ], + "requiredBundles": [ + "kibanaReact" + ] } }