Skip to content

Commit

Permalink
Port over Observability "category" changes from elastic#53545
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerry350 committed Jan 22, 2020
1 parent b3d6278 commit fbed5ec
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions x-pack/plugins/infra/public/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import ApolloClient from 'apollo-client';
import { ApolloLink } from 'apollo-link';
import { HttpLink } from 'apollo-link-http';
import { withClientState } from 'apollo-link-state';
import { DEFAULT_APP_CATEGORIES } from '../../../../src/core/utils';
import { InfraFrontendLibs } from './lib/lib';
import introspectionQueryResultData from './graphql/introspection.json';
import { InfraKibanaObservableApiAdapter } from './lib/adapters/observable_api/kibana_observable_api';
Expand Down Expand Up @@ -51,6 +52,7 @@ export class Plugin
euiIconType: 'logsApp',
order: 8001,
appRoute: '/app/infra/logs',
category: DEFAULT_APP_CATEGORIES.observability,
mount: async (params: AppMountParameters) => {
const [coreStart, pluginsStart] = await core.getStartServices();
const { startApp } = await import('./apps/start_app');
Expand All @@ -71,6 +73,7 @@ export class Plugin
euiIconType: 'metricsApp',
order: 8000,
appRoute: '/app/infra/infrastructure',
category: DEFAULT_APP_CATEGORIES.observability,
mount: async (params: AppMountParameters) => {
const [coreStart, pluginsStart] = await core.getStartServices();
const { startApp } = await import('./apps/start_app');
Expand Down

0 comments on commit fbed5ec

Please sign in to comment.