Skip to content

Commit b871f42

Browse files
committed
support for 6.6
1 parent 8855b01 commit b871f42

File tree

2 files changed

+116
-0
lines changed

2 files changed

+116
-0
lines changed

public/icon.svg

+97
Loading

public/register_feature.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import {
2+
FeatureCatalogueRegistryProvider,
3+
FeatureCatalogueCategory,
4+
} from 'ui/registry/feature_catalogue';
5+
6+
FeatureCatalogueRegistryProvider.register(i18n => {
7+
return {
8+
id: 'logtrail',
9+
title: 'Logtrail',
10+
description: i18n('logtrail.registerFeatureDescription', {
11+
defaultMessage:
12+
'Plugin to view, search & tail logs in Kibana',
13+
}),
14+
icon: 'logtrailApp',
15+
path: '/app/logtrail',
16+
showOnHomePage: false,
17+
category: FeatureCatalogueCategory.DATA,
18+
};
19+
});

0 commit comments

Comments
 (0)