mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Fix plugin enabled config options (#60998)
This commit is contained in:
parent
d87cb9489f
commit
37c92ca476
15 changed files with 17 additions and 4 deletions
|
@ -22,6 +22,7 @@ import { APMOSSPlugin } from './plugin';
|
|||
|
||||
export const config = {
|
||||
schema: schema.object({
|
||||
enabled: schema.boolean({ defaultValue: true }),
|
||||
transactionIndices: schema.string({ defaultValue: 'apm-*' }),
|
||||
spanIndices: schema.string({ defaultValue: 'apm-*' }),
|
||||
errorIndices: schema.string({ defaultValue: 'apm-*' }),
|
||||
|
|
|
@ -21,6 +21,7 @@ import { schema, TypeOf } from '@kbn/config-schema';
|
|||
|
||||
export const configSchema = schema.object(
|
||||
{
|
||||
enabled: schema.boolean({ defaultValue: true }),
|
||||
ui: schema.object({ enabled: schema.boolean({ defaultValue: false }) }),
|
||||
graphiteUrls: schema.maybe(schema.arrayOf(schema.string())),
|
||||
},
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"id": "advancedUiActions",
|
||||
"version": "kibana",
|
||||
"configPath": ["xpack", "advanced_ui_actions"],
|
||||
"requiredPlugins": [
|
||||
"embeddable",
|
||||
"uiActions"
|
||||
|
|
|
@ -4,5 +4,6 @@
|
|||
"version": "8.0.0",
|
||||
"kibanaVersion": "kibana",
|
||||
"requiredPlugins": ["alerting"],
|
||||
"configPath": ["xpack", "alerting_builtins"],
|
||||
"ui": false
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"version": "8.0.0",
|
||||
"kibanaVersion": "kibana",
|
||||
"configPath": [
|
||||
"xpack"
|
||||
"xpack", "data_enhanced"
|
||||
],
|
||||
"requiredPlugins": [
|
||||
"data"
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
"version": "kibana",
|
||||
"server": false,
|
||||
"ui": true,
|
||||
"configPath": ["xpack", "drilldowns"],
|
||||
"requiredPlugins": [
|
||||
"uiActions",
|
||||
"embeddable"
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
"version": "8.0.0",
|
||||
"kibanaVersion": "kibana",
|
||||
"optionalPlugins": ["timelion"],
|
||||
"configPath": ["xpack", "features"],
|
||||
"server": true,
|
||||
"ui": true
|
||||
}
|
||||
|
|
|
@ -4,5 +4,6 @@
|
|||
"kibanaVersion": "kibana",
|
||||
"server": true,
|
||||
"ui": false,
|
||||
"optionalPlugins": ["usageCollection", "taskManager"]
|
||||
"optionalPlugins": ["usageCollection", "taskManager"],
|
||||
"configPath": ["xpack", "lens"]
|
||||
}
|
||||
|
|
|
@ -2,5 +2,6 @@
|
|||
"id": "observability",
|
||||
"version": "8.0.0",
|
||||
"kibanaVersion": "kibana",
|
||||
"configPath": ["xpack", "observability"],
|
||||
"ui": true
|
||||
}
|
||||
|
|
|
@ -4,5 +4,6 @@
|
|||
"version": "8.0.0",
|
||||
"kibanaVersion": "kibana",
|
||||
"requiredPlugins": ["usageCollection", "taskManager"],
|
||||
"configPath": ["xpack", "oss_telemetry"],
|
||||
"ui": false
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"id": "reporting",
|
||||
"version": "8.0.0",
|
||||
"kibanaVersion": "kibana",
|
||||
"configPath": ["xpack", "reporting"],
|
||||
"requiredPlugins": [
|
||||
"home",
|
||||
"management",
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
"version": "8.0.0",
|
||||
"kibanaVersion": "kibana",
|
||||
"requiredPlugins": ["devTools", "home", "licensing"],
|
||||
"configPath": ["xpack", "searchprofiler"],
|
||||
"server": true,
|
||||
"ui": true
|
||||
}
|
||||
|
|
|
@ -4,5 +4,6 @@
|
|||
"server": false,
|
||||
"ui": true,
|
||||
"optionalPlugins": ["alerting", "alertingBuiltins"],
|
||||
"requiredPlugins": ["management", "charts", "data"]
|
||||
"requiredPlugins": ["management", "charts", "data"],
|
||||
"configPath": ["xpack", "trigger_actions_ui"]
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"configPath": ["xpack"],
|
||||
"configPath": ["xpack", "uptime"],
|
||||
"id": "uptime",
|
||||
"kibanaVersion": "kibana",
|
||||
"requiredPlugins": ["alerting", "features", "licensing", "usageCollection"],
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"id": "watcher",
|
||||
"configPath": ["xpack", "watcher"],
|
||||
"version": "kibana",
|
||||
"requiredPlugins": [
|
||||
"home",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue