Skip to content

Commit

Permalink
Add configPrefix to Index Management, License Management, Rollup Jobs…
Browse files Browse the repository at this point in the history
…, and Upgrade Assistant. (#30149)
  • Loading branch information
cjcenizal authored Feb 5, 2019
1 parent 92ae5ba commit 2f92df5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions x-pack/plugins/index_management/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { addIndexManagementDataEnricher } from "./index_management_data";
export function indexManagement(kibana) {
return new kibana.Plugin({
id: PLUGIN.ID,
configPrefix: 'xpack.index_management',
publicDir: resolve(__dirname, 'public'),
require: ['kibana', 'elasticsearch', 'xpack_main'],
uiExports: {
Expand Down
1 change: 1 addition & 0 deletions x-pack/plugins/license_management/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { registerLicenseRoute, registerStartTrialRoutes, registerStartBasicRoute
export function licenseManagement(kibana) {
return new kibana.Plugin({
id: PLUGIN.ID,
configPrefix: 'xpack.license_management',
publicDir: resolve(__dirname, 'public'),
require: ['kibana', 'elasticsearch'],
uiExports: {
Expand Down
1 change: 1 addition & 0 deletions x-pack/plugins/rollup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import { registerRollupUsageCollector } from './server/usage';
export function rollup(kibana) {
return new kibana.Plugin({
id: PLUGIN.ID,
configPrefix: 'xpack.rollup',
publicDir: resolve(__dirname, 'public'),
require: ['kibana', 'elasticsearch', 'xpack_main'],
uiExports: {
Expand Down
1 change: 1 addition & 0 deletions x-pack/plugins/upgrade_assistant/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { initServer } from './server';
export function upgradeAssistant(kibana: any) {
return new kibana.Plugin({
id: 'upgrade_assistant',
configPrefix: 'xpack.upgrade_assistant',
require: ['elasticsearch'],
uiExports: {
managementSections: ['plugins/upgrade_assistant'],
Expand Down

0 comments on commit 2f92df5

Please sign in to comment.