kibana-123
Version:
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic
24 lines (18 loc) • 408 B
JavaScript
import ManagementSection from './section';
const sections = new ManagementSection('management', {
display: 'Management'
});
// TODO: where should this live?
sections.register('data', {
display: 'Connect Data',
order: 0
});
sections.register('elasticsearch', {
display: 'Elasticsearch',
order: 10
});
sections.register('kibana', {
display: 'Kibana',
order: 20,
});
export default sections;