mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
The initial serverless only plugin for viewing data usage and retention in Management. The purpose of this PR is to provide a place for other engineers to work on it, hidden from public use. - Plugin is hidden by default and can be enabled through kibana.yml `xpack.dataUsage.enabled: true` - Currently it will show up in both stateful and serverless (if enabled using config above). When we are ready to make the plugin available we will enable it in config/serverless.yml - Renders a card in Management (serverless) when enabled: <img width="1269" alt="Screenshot 2024-09-19 at 4 14 15 PM" src="https://github.com/user-attachments/assets/705e3866-bc88-436a-8532-2af53167f7b1"> https://github.com/elastic/kibana/issues/192965 https://github.com/elastic/kibana/issues/192966 --------- ## Summary Summarize your PR. If it involves visual changes include a screenshot or gif. ### Checklist Delete any items that are not applicable to this PR. - [ ] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [ ] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [ ] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [ ] [Flaky Test Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was used on any tests changed - [ ] Any UI touched in this PR is usable by keyboard only (learn more about [keyboard accessibility](https://webaim.org/techniques/keyboard/)) - [ ] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US)) - [ ] If a plugin configuration key changed, check if it needs to be allowlisted in the cloud and added to the [docker list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker) - [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)) - [ ] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers) ### Risk Matrix Delete this section if it is not applicable to this PR. Before closing this PR, invite QA, stakeholders, and other developers to identify risks that should be tested prior to the change/feature release. When forming the risk matrix, consider some of the following examples and how they may potentially impact the change: | Risk | Probability | Severity | Mitigation/Notes | |---------------------------|-------------|----------|-------------------------| | Multiple Spaces—unexpected behavior in non-default Kibana Space. | Low | High | Integration tests will verify that all features are still supported in non-default Kibana Space and when user switches between spaces. | | Multiple nodes—Elasticsearch polling might have race conditions when multiple Kibana nodes are polling for the same tasks. | High | Low | Tasks are idempotent, so executing them multiple times will not result in logical error, but will degrade performance. To test for this case we add plenty of unit tests around this logic and document manual testing procedure. | | Code should gracefully handle cases when feature X or plugin Y are disabled. | Medium | High | Unit tests will verify that any feature flag or plugin combination still results in our service operational. | | [See more potential risk examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx) | ### For maintainers - [ ] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
90d6f73cf5
commit
3d72870d4a
22 changed files with 444 additions and 0 deletions
|
@ -536,6 +536,10 @@ Plugin server-side only. Plugin has three main functions:
|
|||
|In order to make ongoing maintenance of log collection easy we want to introduce the concept of data set quality, where users can easily get an overview on the data sets they have with information such as integration, size, last activity, among others.
|
||||
|
||||
|
||||
|{kib-repo}blob/{branch}/x-pack/plugins/data_usage/README.md[dataUsage]
|
||||
|Serverless only plugin for users to view data usage
|
||||
|
||||
|
||||
|{kib-repo}blob/{branch}/x-pack/plugins/data_visualizer/README.md[dataVisualizer]
|
||||
|The data_visualizer plugin enables you to explore the fields in your data.
|
||||
|
||||
|
|
|
@ -421,6 +421,7 @@
|
|||
"@kbn/data-search-plugin": "link:test/plugin_functional/plugins/data_search",
|
||||
"@kbn/data-service": "link:packages/kbn-data-service",
|
||||
"@kbn/data-stream-adapter": "link:packages/kbn-data-stream-adapter",
|
||||
"@kbn/data-usage-plugin": "link:x-pack/plugins/data_usage",
|
||||
"@kbn/data-view-editor-plugin": "link:src/plugins/data_view_editor",
|
||||
"@kbn/data-view-field-editor-example-plugin": "link:examples/data_view_field_editor_example",
|
||||
"@kbn/data-view-field-editor-plugin": "link:src/plugins/data_view_field_editor",
|
||||
|
|
|
@ -72,6 +72,14 @@ export const appDefinitions: Record<AppId, AppDefinition> = {
|
|||
icon: 'documents',
|
||||
},
|
||||
|
||||
[AppIds.DATA_USAGE]: {
|
||||
category: appCategories.DATA,
|
||||
description: i18n.translate('management.landing.withCardNavigation.dataUsageDescription', {
|
||||
defaultMessage: 'View data usage and retention.',
|
||||
}),
|
||||
icon: 'documents',
|
||||
},
|
||||
|
||||
[AppIds.RULES]: {
|
||||
category: appCategories.ALERTS,
|
||||
description: i18n.translate('management.landing.withCardNavigation.rulesDescription', {
|
||||
|
|
|
@ -31,6 +31,7 @@ export enum AppIds {
|
|||
API_KEYS = 'api_keys',
|
||||
DATA_QUALITY = 'data_quality',
|
||||
SPACES = 'spaces',
|
||||
DATA_USAGE = 'data_usage',
|
||||
}
|
||||
|
||||
// Create new type that is a union of all the appId values
|
||||
|
|
|
@ -29,6 +29,7 @@ pageLoadAssetSize:
|
|||
data: 454087
|
||||
dataQuality: 19384
|
||||
datasetQuality: 52000
|
||||
dataUsage: 30000
|
||||
dataViewEditor: 28082
|
||||
dataViewFieldEditor: 42021
|
||||
dataViewManagement: 5300
|
||||
|
|
|
@ -702,6 +702,8 @@
|
|||
"@kbn/data-service/*": ["packages/kbn-data-service/*"],
|
||||
"@kbn/data-stream-adapter": ["packages/kbn-data-stream-adapter"],
|
||||
"@kbn/data-stream-adapter/*": ["packages/kbn-data-stream-adapter/*"],
|
||||
"@kbn/data-usage-plugin": ["x-pack/plugins/data_usage"],
|
||||
"@kbn/data-usage-plugin/*": ["x-pack/plugins/data_usage/*"],
|
||||
"@kbn/data-view-editor-plugin": ["src/plugins/data_view_editor"],
|
||||
"@kbn/data-view-editor-plugin/*": ["src/plugins/data_view_editor/*"],
|
||||
"@kbn/data-view-field-editor-example-plugin": ["examples/data_view_field_editor_example"],
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
"xpack.dashboard": "plugins/dashboard_enhanced",
|
||||
"xpack.dataQuality": "plugins/data_quality",
|
||||
"xpack.datasetQuality": "plugins/observability_solution/dataset_quality",
|
||||
"xpack.dataUsage": "plugins/data_usage",
|
||||
"xpack.discover": "plugins/discover_enhanced",
|
||||
"xpack.crossClusterReplication": "plugins/cross_cluster_replication",
|
||||
"xpack.elasticAssistant": "packages/kbn-elastic-assistant",
|
||||
|
|
3
x-pack/plugins/data_usage/README.md
Executable file
3
x-pack/plugins/data_usage/README.md
Executable file
|
@ -0,0 +1,3 @@
|
|||
# dataUsage
|
||||
Serverless only plugin for users to view data usage
|
||||
|
13
x-pack/plugins/data_usage/common/index.ts
Normal file
13
x-pack/plugins/data_usage/common/index.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
export const PLUGIN_ID = 'data_usage';
|
||||
export const PLUGIN_NAME = i18n.translate('xpack.dataUsage.name', {
|
||||
defaultMessage: 'Data Usage',
|
||||
});
|
15
x-pack/plugins/data_usage/jest.config.js
Normal file
15
x-pack/plugins/data_usage/jest.config.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
module.exports = {
|
||||
preset: '@kbn/test',
|
||||
rootDir: '../../..',
|
||||
roots: ['<rootDir>/x-pack/plugins/data_usage'],
|
||||
coverageDirectory: '<rootDir>/target/kibana-coverage/jest/x-pack/plugins/data_usage',
|
||||
coverageReporters: ['text', 'html'],
|
||||
collectCoverageFrom: ['<rootDir>/x-pack/plugins/datas_usage/{common,public}/**/*.{ts,tsx}'],
|
||||
};
|
16
x-pack/plugins/data_usage/kibana.jsonc
Normal file
16
x-pack/plugins/data_usage/kibana.jsonc
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "plugin",
|
||||
"id": "@kbn/data-usage-plugin",
|
||||
"owner": ["@elastic/obs-ai-assistant", "@elastic/security-solution"],
|
||||
"plugin": {
|
||||
"id": "dataUsage",
|
||||
"server": true,
|
||||
"browser": true,
|
||||
"configPath": ["xpack", "dataUsage"],
|
||||
"requiredPlugins": ["home", "management", "features", "share"],
|
||||
"optionalPlugins": [],
|
||||
"requiredBundles": [
|
||||
"kibanaReact",
|
||||
],
|
||||
}
|
||||
}
|
83
x-pack/plugins/data_usage/public/application.tsx
Normal file
83
x-pack/plugins/data_usage/public/application.tsx
Normal file
|
@ -0,0 +1,83 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { CoreStart } from '@kbn/core/public';
|
||||
import { ManagementAppMountParams } from '@kbn/management-plugin/public';
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import { KibanaRenderContextProvider } from '@kbn/react-kibana-context-render';
|
||||
import { Route, Router, Routes } from '@kbn/shared-ux-router';
|
||||
import { useExecutionContext } from '@kbn/kibana-react-plugin/public';
|
||||
import { PerformanceContextProvider } from '@kbn/ebt-tools';
|
||||
import { useKibanaContextForPluginProvider } from './utils/use_kibana';
|
||||
import { DataUsageStartDependencies, DataUsagePublicStart } from './types';
|
||||
import { PLUGIN_ID } from '../common';
|
||||
|
||||
export const renderApp = (
|
||||
core: CoreStart,
|
||||
plugins: DataUsageStartDependencies,
|
||||
pluginStart: DataUsagePublicStart,
|
||||
params: ManagementAppMountParams
|
||||
) => {
|
||||
ReactDOM.render(
|
||||
<App params={params} core={core} plugins={plugins} pluginStart={pluginStart} />,
|
||||
params.element
|
||||
);
|
||||
|
||||
return () => {
|
||||
ReactDOM.unmountComponentAtNode(params.element);
|
||||
};
|
||||
};
|
||||
|
||||
const AppWithExecutionContext = ({
|
||||
core,
|
||||
params,
|
||||
}: {
|
||||
core: CoreStart;
|
||||
params: ManagementAppMountParams;
|
||||
}) => {
|
||||
const { executionContext } = core;
|
||||
|
||||
useExecutionContext(executionContext, {
|
||||
type: 'application',
|
||||
page: PLUGIN_ID,
|
||||
});
|
||||
|
||||
return (
|
||||
<Router history={params.history}>
|
||||
<PerformanceContextProvider>
|
||||
<Routes>
|
||||
<Route path="/" exact={true} render={() => <div>Data Usage</div>} />
|
||||
</Routes>
|
||||
</PerformanceContextProvider>
|
||||
</Router>
|
||||
);
|
||||
};
|
||||
|
||||
interface AppProps {
|
||||
core: CoreStart;
|
||||
plugins: DataUsageStartDependencies;
|
||||
pluginStart: DataUsagePublicStart;
|
||||
params: ManagementAppMountParams;
|
||||
}
|
||||
|
||||
const App = ({ core, plugins, pluginStart, params }: AppProps) => {
|
||||
const KibanaContextProviderForPlugin = useKibanaContextForPluginProvider(
|
||||
core,
|
||||
plugins,
|
||||
pluginStart,
|
||||
params
|
||||
);
|
||||
|
||||
return (
|
||||
<KibanaRenderContextProvider {...core} {...params}>
|
||||
<KibanaContextProviderForPlugin>
|
||||
<AppWithExecutionContext core={core} params={params} />
|
||||
</KibanaContextProviderForPlugin>
|
||||
</KibanaRenderContextProvider>
|
||||
);
|
||||
};
|
25
x-pack/plugins/data_usage/public/index.ts
Normal file
25
x-pack/plugins/data_usage/public/index.ts
Normal file
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import type { PluginInitializer, PluginInitializerContext } from '@kbn/core/public';
|
||||
import type {
|
||||
DataUsagePublicSetup,
|
||||
DataUsagePublicStart,
|
||||
DataUsageSetupDependencies,
|
||||
DataUsageStartDependencies,
|
||||
ConfigSchema,
|
||||
} from './types';
|
||||
import { DataUsagePlugin } from './plugin';
|
||||
|
||||
export type { DataUsagePublicSetup, DataUsagePublicStart } from './types';
|
||||
|
||||
export const plugin: PluginInitializer<
|
||||
DataUsagePublicSetup,
|
||||
DataUsagePublicStart,
|
||||
DataUsageSetupDependencies,
|
||||
DataUsageStartDependencies
|
||||
> = (pluginInitializerContext: PluginInitializerContext<ConfigSchema>) => new DataUsagePlugin();
|
55
x-pack/plugins/data_usage/public/plugin.ts
Normal file
55
x-pack/plugins/data_usage/public/plugin.ts
Normal file
|
@ -0,0 +1,55 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { CoreSetup, CoreStart, Plugin } from '@kbn/core/public';
|
||||
import { ManagementAppMountParams } from '@kbn/management-plugin/public';
|
||||
import {
|
||||
DataUsagePublicSetup,
|
||||
DataUsagePublicStart,
|
||||
DataUsageStartDependencies,
|
||||
DataUsageSetupDependencies,
|
||||
} from './types';
|
||||
import { PLUGIN_ID, PLUGIN_NAME } from '../common';
|
||||
|
||||
export class DataUsagePlugin
|
||||
implements
|
||||
Plugin<
|
||||
DataUsagePublicSetup,
|
||||
DataUsagePublicStart,
|
||||
DataUsageSetupDependencies,
|
||||
DataUsageStartDependencies
|
||||
>
|
||||
{
|
||||
public setup(
|
||||
core: CoreSetup<DataUsageStartDependencies, DataUsagePublicStart>,
|
||||
plugins: DataUsageSetupDependencies
|
||||
): DataUsagePublicSetup {
|
||||
const { management } = plugins;
|
||||
management.sections.section.data.registerApp({
|
||||
id: PLUGIN_ID,
|
||||
title: PLUGIN_NAME,
|
||||
order: 6,
|
||||
keywords: ['data usage', 'usage'],
|
||||
async mount(params: ManagementAppMountParams) {
|
||||
const [{ renderApp }, [coreStart, pluginsStartDeps, pluginStart]] = await Promise.all([
|
||||
import('./application'),
|
||||
core.getStartServices(),
|
||||
]);
|
||||
|
||||
return renderApp(coreStart, pluginsStartDeps, pluginStart, params);
|
||||
},
|
||||
});
|
||||
|
||||
return {};
|
||||
}
|
||||
|
||||
public start(_core: CoreStart): DataUsagePublicStart {
|
||||
return {};
|
||||
}
|
||||
|
||||
public stop() {}
|
||||
}
|
27
x-pack/plugins/data_usage/public/types.ts
Normal file
27
x-pack/plugins/data_usage/public/types.ts
Normal file
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { ManagementSetup, ManagementStart } from '@kbn/management-plugin/public';
|
||||
import { SharePluginSetup, SharePluginStart } from '@kbn/share-plugin/public';
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||||
export interface DataUsagePublicSetup {}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||||
export interface DataUsagePublicStart {}
|
||||
|
||||
export interface DataUsageSetupDependencies {
|
||||
management: ManagementSetup;
|
||||
share: SharePluginSetup;
|
||||
}
|
||||
|
||||
export interface DataUsageStartDependencies {
|
||||
management: ManagementStart;
|
||||
share: SharePluginStart;
|
||||
}
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||||
export interface ConfigSchema {}
|
53
x-pack/plugins/data_usage/public/utils/use_kibana.tsx
Normal file
53
x-pack/plugins/data_usage/public/utils/use_kibana.tsx
Normal file
|
@ -0,0 +1,53 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { CoreStart } from '@kbn/core/public';
|
||||
import {
|
||||
createKibanaReactContext,
|
||||
KibanaReactContextValue,
|
||||
useKibana,
|
||||
} from '@kbn/kibana-react-plugin/public';
|
||||
import { ManagementAppMountParams } from '@kbn/management-plugin/public';
|
||||
import { useMemo } from 'react';
|
||||
import { DataUsageStartDependencies, DataUsagePublicStart } from '../types';
|
||||
|
||||
export type PluginKibanaContextValue = CoreStart &
|
||||
DataUsageStartDependencies &
|
||||
DataUsagePublicStart & {
|
||||
appParams: ManagementAppMountParams;
|
||||
};
|
||||
|
||||
export const createKibanaContextForPlugin = (
|
||||
core: CoreStart,
|
||||
plugins: DataUsageStartDependencies,
|
||||
pluginStart: DataUsagePublicStart,
|
||||
appParams: ManagementAppMountParams
|
||||
) => {
|
||||
return createKibanaReactContext<PluginKibanaContextValue>({
|
||||
...core,
|
||||
...plugins,
|
||||
...pluginStart,
|
||||
appParams,
|
||||
});
|
||||
};
|
||||
|
||||
export const useKibanaContextForPlugin =
|
||||
useKibana as () => KibanaReactContextValue<PluginKibanaContextValue>;
|
||||
|
||||
export const useKibanaContextForPluginProvider = (
|
||||
core: CoreStart,
|
||||
plugins: DataUsageStartDependencies,
|
||||
pluginStart: DataUsagePublicStart,
|
||||
appParams: ManagementAppMountParams
|
||||
) => {
|
||||
const { Provider } = useMemo(
|
||||
() => createKibanaContextForPlugin(core, plugins, pluginStart, appParams),
|
||||
[appParams, core, pluginStart, plugins]
|
||||
);
|
||||
|
||||
return Provider;
|
||||
};
|
14
x-pack/plugins/data_usage/server/config.ts
Normal file
14
x-pack/plugins/data_usage/server/config.ts
Normal file
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { schema, type TypeOf } from '@kbn/config-schema';
|
||||
|
||||
export const config = schema.object({
|
||||
enabled: schema.boolean({ defaultValue: false }),
|
||||
});
|
||||
|
||||
export type DataUsageConfig = TypeOf<typeof config>;
|
36
x-pack/plugins/data_usage/server/index.ts
Normal file
36
x-pack/plugins/data_usage/server/index.ts
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
import type {
|
||||
PluginInitializer,
|
||||
PluginInitializerContext,
|
||||
PluginConfigDescriptor,
|
||||
} from '@kbn/core/server';
|
||||
import { DataUsageConfig } from './config';
|
||||
|
||||
import { DataUsagePlugin } from './plugin';
|
||||
import type {
|
||||
DataUsageServerSetup,
|
||||
DataUsageServerStart,
|
||||
DataUsageSetupDependencies,
|
||||
DataUsageStartDependencies,
|
||||
} from './types';
|
||||
|
||||
import { config as configSchema } from './config';
|
||||
|
||||
export type { DataUsageServerSetup, DataUsageServerStart };
|
||||
|
||||
export const config: PluginConfigDescriptor<DataUsageConfig> = {
|
||||
schema: configSchema,
|
||||
};
|
||||
|
||||
export const plugin: PluginInitializer<
|
||||
DataUsageServerSetup,
|
||||
DataUsageServerStart,
|
||||
DataUsageSetupDependencies,
|
||||
DataUsageStartDependencies
|
||||
> = async (pluginInitializerContext: PluginInitializerContext<DataUsageConfig>) =>
|
||||
await new DataUsagePlugin(pluginInitializerContext);
|
40
x-pack/plugins/data_usage/server/plugin.ts
Normal file
40
x-pack/plugins/data_usage/server/plugin.ts
Normal file
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import type { CoreSetup, CoreStart, Plugin, PluginInitializerContext } from '@kbn/core/server';
|
||||
import type { Logger } from '@kbn/logging';
|
||||
import { DataUsageConfig } from './config';
|
||||
import type {
|
||||
DataUsageServerSetup,
|
||||
DataUsageServerStart,
|
||||
DataUsageSetupDependencies,
|
||||
DataUsageStartDependencies,
|
||||
} from './types';
|
||||
|
||||
export class DataUsagePlugin
|
||||
implements
|
||||
Plugin<
|
||||
DataUsageServerSetup,
|
||||
DataUsageServerStart,
|
||||
DataUsageSetupDependencies,
|
||||
DataUsageStartDependencies
|
||||
>
|
||||
{
|
||||
logger: Logger;
|
||||
constructor(context: PluginInitializerContext<DataUsageConfig>) {
|
||||
this.logger = context.logger.get();
|
||||
}
|
||||
setup(coreSetup: CoreSetup, pluginsSetup: DataUsageSetupDependencies): DataUsageServerSetup {
|
||||
return {};
|
||||
}
|
||||
|
||||
start(coreStart: CoreStart, pluginsStart: DataUsageStartDependencies): DataUsageServerStart {
|
||||
return {};
|
||||
}
|
||||
|
||||
public stop() {}
|
||||
}
|
16
x-pack/plugins/data_usage/server/types.ts
Normal file
16
x-pack/plugins/data_usage/server/types.ts
Normal file
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
/* eslint-disable @typescript-eslint/no-empty-interface*/
|
||||
|
||||
export interface DataUsageSetupDependencies {}
|
||||
|
||||
export interface DataUsageStartDependencies {}
|
||||
|
||||
export interface DataUsageServerSetup {}
|
||||
|
||||
export interface DataUsageServerStart {}
|
26
x-pack/plugins/data_usage/tsconfig.json
Normal file
26
x-pack/plugins/data_usage/tsconfig.json
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"extends": "../../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "target/types"
|
||||
},
|
||||
"include": [
|
||||
"index.ts",
|
||||
"common/**/*",
|
||||
"public/**/*",
|
||||
"server/**/*",
|
||||
"../../../typings/**/*"
|
||||
],
|
||||
"kbn_references": [
|
||||
"@kbn/core",
|
||||
"@kbn/i18n",
|
||||
"@kbn/kibana-react-plugin",
|
||||
"@kbn/management-plugin",
|
||||
"@kbn/react-kibana-context-render",
|
||||
"@kbn/shared-ux-router",
|
||||
"@kbn/ebt-tools",
|
||||
"@kbn/share-plugin",
|
||||
"@kbn/config-schema",
|
||||
"@kbn/logging",
|
||||
],
|
||||
"exclude": ["target/**/*"]
|
||||
}
|
|
@ -4675,6 +4675,10 @@
|
|||
version "0.0.0"
|
||||
uid ""
|
||||
|
||||
"@kbn/data-usage-plugin@link:x-pack/plugins/data_usage":
|
||||
version "0.0.0"
|
||||
uid ""
|
||||
|
||||
"@kbn/data-view-editor-plugin@link:src/plugins/data_view_editor":
|
||||
version "0.0.0"
|
||||
uid ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue