mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[8.x] Sustainable Kibana Architecture: Move modules owned by @elastic/streams-program-team (#203731)
# Backport This will backport the following commits from `main` to `8.x`: - [Sustainable Kibana Architecture: Move modules owned by @elastic/streams-program-team](https://github.com/elastic/kibana/pull/203180) Co-authored-by: Gerard Soldevila <gerard.soldevila@elastic.co>
This commit is contained in:
parent
4b59cd38d4
commit
b4e83ba8bc
130 changed files with 61 additions and 56 deletions
4
.github/CODEOWNERS
vendored
4
.github/CODEOWNERS
vendored
|
@ -932,8 +932,8 @@ test/server_integration/plugins/status_plugin_b @elastic/kibana-core
|
|||
packages/kbn-std @elastic/kibana-core
|
||||
packages/kbn-stdio-dev-helpers @elastic/kibana-operations
|
||||
packages/kbn-storybook @elastic/kibana-operations
|
||||
x-pack/plugins/streams_app @simianhacker @flash1293 @dgieselaar
|
||||
x-pack/plugins/streams @simianhacker @flash1293 @dgieselaar
|
||||
x-pack/solutions/observability/plugins/streams_app @simianhacker @flash1293 @dgieselaar
|
||||
x-pack/solutions/observability/plugins/streams @simianhacker @flash1293 @dgieselaar
|
||||
x-pack/plugins/observability_solution/synthetics/e2e @elastic/obs-ux-management-team
|
||||
x-pack/plugins/observability_solution/synthetics @elastic/obs-ux-management-team
|
||||
x-pack/packages/kbn-synthetics-private-location @elastic/obs-ux-management-team
|
||||
|
|
|
@ -917,11 +917,11 @@ routes, etc.
|
|||
|The stack_connectors plugin provides connector types shipped with Kibana, built on top of the framework provided in the actions plugin.
|
||||
|
||||
|
||||
|{kib-repo}blob/{branch}/x-pack/plugins/streams/README.md[streams]
|
||||
|{kib-repo}blob/{branch}/x-pack/solutions/observability/plugins/streams/README.md[streams]
|
||||
|This plugin provides an interface to manage streams
|
||||
|
||||
|
||||
|{kib-repo}blob/{branch}/x-pack/plugins/streams_app/README.md[streamsApp]
|
||||
|{kib-repo}blob/{branch}/x-pack/solutions/observability/plugins/streams_app/README.md[streamsApp]
|
||||
|Home of the Streams app plugin, which allows users to manage Streams via the UI.
|
||||
|
||||
|
||||
|
|
|
@ -939,8 +939,8 @@
|
|||
"@kbn/status-plugin-a-plugin": "link:test/server_integration/plugins/status_plugin_a",
|
||||
"@kbn/status-plugin-b-plugin": "link:test/server_integration/plugins/status_plugin_b",
|
||||
"@kbn/std": "link:packages/kbn-std",
|
||||
"@kbn/streams-app-plugin": "link:x-pack/plugins/streams_app",
|
||||
"@kbn/streams-plugin": "link:x-pack/plugins/streams",
|
||||
"@kbn/streams-app-plugin": "link:x-pack/solutions/observability/plugins/streams_app",
|
||||
"@kbn/streams-plugin": "link:x-pack/solutions/observability/plugins/streams",
|
||||
"@kbn/synthetics-plugin": "link:x-pack/plugins/observability_solution/synthetics",
|
||||
"@kbn/synthetics-private-location": "link:x-pack/packages/kbn-synthetics-private-location",
|
||||
"@kbn/task-manager-fixture-plugin": "link:x-pack/test/alerting_api_integration/common/plugins/task_manager_fixture",
|
||||
|
|
|
@ -1858,10 +1858,10 @@
|
|||
"@kbn/stdio-dev-helpers/*": ["packages/kbn-stdio-dev-helpers/*"],
|
||||
"@kbn/storybook": ["packages/kbn-storybook"],
|
||||
"@kbn/storybook/*": ["packages/kbn-storybook/*"],
|
||||
"@kbn/streams-app-plugin": ["x-pack/plugins/streams_app"],
|
||||
"@kbn/streams-app-plugin/*": ["x-pack/plugins/streams_app/*"],
|
||||
"@kbn/streams-plugin": ["x-pack/plugins/streams"],
|
||||
"@kbn/streams-plugin/*": ["x-pack/plugins/streams/*"],
|
||||
"@kbn/streams-app-plugin": ["x-pack/solutions/observability/plugins/streams_app"],
|
||||
"@kbn/streams-app-plugin/*": ["x-pack/solutions/observability/plugins/streams_app/*"],
|
||||
"@kbn/streams-plugin": ["x-pack/solutions/observability/plugins/streams"],
|
||||
"@kbn/streams-plugin/*": ["x-pack/solutions/observability/plugins/streams/*"],
|
||||
"@kbn/synthetics-e2e": ["x-pack/plugins/observability_solution/synthetics/e2e"],
|
||||
"@kbn/synthetics-e2e/*": ["x-pack/plugins/observability_solution/synthetics/e2e/*"],
|
||||
"@kbn/synthetics-plugin": ["x-pack/plugins/observability_solution/synthetics"],
|
||||
|
|
|
@ -151,7 +151,7 @@
|
|||
"xpack.securitySolutionServerless": "plugins/security_solution_serverless",
|
||||
"xpack.sessionView": "plugins/session_view",
|
||||
"xpack.streams": [
|
||||
"plugins/streams_app"
|
||||
"solutions/observability/plugins/streams_app"
|
||||
],
|
||||
"xpack.slo": "plugins/observability_solution/slo",
|
||||
"xpack.snapshotRestore": "plugins/snapshot_restore",
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
/*
|
||||
* 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/streams'],
|
||||
coverageDirectory: '<rootDir>/target/kibana-coverage/jest/x-pack/plugins/streams',
|
||||
coverageReporters: ['text', 'html'],
|
||||
collectCoverageFrom: ['<rootDir>/x-pack/plugins/streams/{common,public,server}/**/*.{js,ts,tsx}'],
|
||||
};
|
|
@ -1,23 +0,0 @@
|
|||
/*
|
||||
* 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/streams_app/public',
|
||||
'<rootDir>/x-pack/plugins/streams_app/common',
|
||||
'<rootDir>/x-pack/plugins/streams_app/server',
|
||||
],
|
||||
setupFiles: ['<rootDir>/x-pack/plugins/streams_app/.storybook/jest_setup.js'],
|
||||
collectCoverage: true,
|
||||
collectCoverageFrom: [
|
||||
'<rootDir>/x-pack/plugins/streams_app/{public,common,server}/**/*.{js,ts,tsx}',
|
||||
],
|
||||
|
||||
coverageReporters: ['html'],
|
||||
};
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* 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/solutions/observability/plugins/streams'],
|
||||
coverageDirectory:
|
||||
'<rootDir>/target/kibana-coverage/jest/x-pack/solutions/observability/plugins/streams',
|
||||
coverageReporters: ['text', 'html'],
|
||||
collectCoverageFrom: [
|
||||
'<rootDir>/x-pack/solutions/observability/plugins/streams/{common,public,server}/**/*.{js,ts,tsx}',
|
||||
],
|
||||
};
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"extends": "../../../tsconfig.base.json",
|
||||
"extends": "../../../../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "target/types"
|
||||
},
|
||||
"include": [
|
||||
"../../../typings/**/*",
|
||||
"../../../../../typings/**/*",
|
||||
"common/**/*",
|
||||
"server/**/*",
|
||||
"public/**/*",
|
|
@ -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.
|
||||
*/
|
||||
|
||||
module.exports = {
|
||||
preset: '@kbn/test',
|
||||
rootDir: '../../../../..',
|
||||
roots: [
|
||||
'<rootDir>/x-pack/solutions/observability/plugins/streams_app/public',
|
||||
'<rootDir>/x-pack/solutions/observability/plugins/streams_app/common',
|
||||
'<rootDir>/x-pack/solutions/observability/plugins/streams_app/server',
|
||||
],
|
||||
setupFiles: [
|
||||
'<rootDir>/x-pack/solutions/observability/plugins/streams_app/.storybook/jest_setup.js',
|
||||
],
|
||||
collectCoverage: true,
|
||||
collectCoverageFrom: [
|
||||
'<rootDir>/x-pack/solutions/observability/plugins/streams_app/{public,common,server}/**/*.{js,ts,tsx}',
|
||||
],
|
||||
|
||||
coverageReporters: ['html'],
|
||||
};
|
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 57 KiB |
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue