forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Sustainable Kibana Architecture] Update plugins (wave #1) (elastic#1…
…95375) ## Summary Follow-up of elastic#195367 As part of the Sustainable Kibana Architecture initiative, this PR leverages the mechanisms and concepts introduced in elastic#194810, updating plugins that were considered to be solution-specific in Luke's [PoC](elastic#179710). This might trigger linting rule violations in CI, and help uncover conflicts related to forbidden dependencies. As soon as they are resolved, we can proceed to classify solutions' plugins.
- Loading branch information
1 parent
10f234c
commit a5517d9
Showing
185 changed files
with
1,768 additions
and
694 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
{ | ||
"type": "plugin", | ||
"id": "@kbn/advanced-settings-plugin", | ||
"owner": "@elastic/appex-sharedux @elastic/kibana-management", | ||
"owner": [ | ||
"@elastic/appex-sharedux", | ||
"@elastic/kibana-management" | ||
], | ||
"group": "platform", | ||
"visibility": "private", | ||
"plugin": { | ||
"id": "advancedSettings", | ||
"server": true, | ||
"browser": true, | ||
"server": true, | ||
"requiredPlugins": [ | ||
"management" | ||
], | ||
"optionalPlugins": [ | ||
"home", | ||
"usageCollection" | ||
], | ||
"requiredBundles": [ | ||
] | ||
"requiredBundles": [] | ||
} | ||
} | ||
} |
26 changes: 19 additions & 7 deletions
26
src/plugins/ai_assistant_management/selection/kibana.jsonc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,28 @@ | ||
{ | ||
"type": "plugin", | ||
"id": "@kbn/ai-assistant-management-plugin", | ||
"owner": "@elastic/obs-knowledge-team", | ||
"owner": [ | ||
"@elastic/obs-knowledge-team" | ||
], | ||
"group": "platform", | ||
"visibility": "private", | ||
"plugin": { | ||
"id": "aiAssistantManagementSelection", | ||
"server": true, | ||
"browser": true, | ||
"requiredPlugins": ["management"], | ||
"optionalPlugins": ["home", "serverless", "features"], | ||
"requiredBundles": ["kibanaReact"], | ||
"server": true, | ||
"configPath": [ | ||
"aiAssistantManagementSelection" | ||
], | ||
}, | ||
} | ||
"requiredPlugins": [ | ||
"management" | ||
], | ||
"optionalPlugins": [ | ||
"home", | ||
"serverless", | ||
"features" | ||
], | ||
"requiredBundles": [ | ||
"kibanaReact" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
{ | ||
"type": "plugin", | ||
"id": "@kbn/bfetch-plugin", | ||
"owner": "@elastic/appex-sharedux", | ||
"owner": [ | ||
"@elastic/appex-sharedux" | ||
], | ||
"group": "platform", | ||
"visibility": "shared", | ||
"description": "Considering using bfetch capabilities when fetching large amounts of data. This services supports batching HTTP requests and streaming responses back.", | ||
"plugin": { | ||
"id": "bfetch", | ||
"server": true, | ||
"browser": true, | ||
"server": true, | ||
"requiredBundles": [ | ||
"kibanaUtils" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
{ | ||
"type": "shared-common", | ||
"id": "@kbn/chart-expressions-common", | ||
"owner": "@elastic/kibana-visualizations" | ||
} | ||
"owner": [ | ||
"@elastic/kibana-visualizations" | ||
], | ||
"group": "platform", | ||
"visibility": "shared" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.