Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Kibana migration #142

Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions public/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ export class IndexManagementPlugin implements Plugin<IndexManagementPluginSetup,
core.application.register({
id: "indexManagement",
title: "Index Management",
order: 7000,
category: {
id: 'odfe',
label: 'Open Distro for Elasticsearch',
order: 2000,
},
mount: async (params: AppMountParameters) => {
const { renderApp } = await import("./index_management_app");
const [coreStart, depsStart] = await core.getStartServices();
Expand Down