initial commit

generated from the plugin template, this does nothing but provide a plugin with the expected name
This commit is contained in:
2017-12-12 10:33:10 -07:00
commit 0b923e8376
8 changed files with 3754 additions and 0 deletions

14
index.js Normal file
View File

@@ -0,0 +1,14 @@
export default function (kibana) {
return new kibana.Plugin({
require: [],
name: 'xpack_main',
id: 'xpack_main',
configPrefix: 'xpack.xpack_main',
config(Joi) {
return Joi.object({
enabled: Joi.boolean().default(true),
xpack_api_polling_frequency_millis: Joi.number().default(30000),
}).default();
},
});
}