Skip to content

Commit

Permalink
Relocating module @kbn/logstash-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
gsoldevila committed Dec 11, 2024
1 parent c3f96bb commit 1b3e630
Show file tree
Hide file tree
Showing 104 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,7 @@ x-pack/platform/packages/shared/ml/response_stream @elastic/ml-ui
x-pack/platform/packages/shared/ml/runtime_field_utils @elastic/ml-ui
x-pack/platform/packages/shared/ml/trained_models_utils @elastic/ml-ui
x-pack/platform/plugins/private/data_visualizer @elastic/ml-ui
x-pack/platform/plugins/private/logstash @elastic/logstash
x-pack/platform/plugins/private/transform @elastic/ml-ui
x-pack/platform/plugins/private/translations @elastic/kibana-localization
x-pack/platform/plugins/shared/ai_infra/llm_tasks @elastic/appex-ai-infra
Expand Down Expand Up @@ -925,7 +926,6 @@ x-pack/plugins/license_api_guard @elastic/kibana-management
x-pack/plugins/license_management @elastic/kibana-management
x-pack/plugins/licensing @elastic/kibana-core
x-pack/plugins/lists @elastic/security-detection-engine
x-pack/plugins/logstash @elastic/logstash
x-pack/plugins/maps @elastic/kibana-presentation
x-pack/plugins/monitoring @elastic/stack-monitoring
x-pack/plugins/monitoring_collection @elastic/stack-monitoring
Expand Down
2 changes: 1 addition & 1 deletion docs/developer/plugin-list.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ using the CURL scripts in the scripts folder.
|Exposes the shared components and APIs to access and visualize logs.
|{kib-repo}blob/{branch}/x-pack/plugins/logstash[logstash]
|{kib-repo}blob/{branch}/x-pack/platform/plugins/private/logstash[logstash]
|WARNING: Missing README.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@
"@kbn/logs-data-access-plugin": "link:x-pack/plugins/observability_solution/logs_data_access",
"@kbn/logs-explorer-plugin": "link:x-pack/plugins/observability_solution/logs_explorer",
"@kbn/logs-shared-plugin": "link:x-pack/plugins/observability_solution/logs_shared",
"@kbn/logstash-plugin": "link:x-pack/plugins/logstash",
"@kbn/logstash-plugin": "link:x-pack/platform/plugins/private/logstash",
"@kbn/managed-content-badge": "link:packages/kbn-managed-content-badge",
"@kbn/management-cards-navigation": "link:packages/kbn-management/cards_navigation",
"@kbn/management-plugin": "link:src/plugins/management",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -1176,8 +1176,8 @@
"@kbn/logs-explorer-plugin/*": ["x-pack/plugins/observability_solution/logs_explorer/*"],
"@kbn/logs-shared-plugin": ["x-pack/plugins/observability_solution/logs_shared"],
"@kbn/logs-shared-plugin/*": ["x-pack/plugins/observability_solution/logs_shared/*"],
"@kbn/logstash-plugin": ["x-pack/plugins/logstash"],
"@kbn/logstash-plugin/*": ["x-pack/plugins/logstash/*"],
"@kbn/logstash-plugin": ["x-pack/platform/plugins/private/logstash"],
"@kbn/logstash-plugin/*": ["x-pack/platform/plugins/private/logstash/*"],
"@kbn/managed-content-badge": ["packages/kbn-managed-content-badge"],
"@kbn/managed-content-badge/*": ["packages/kbn-managed-content-badge/*"],
"@kbn/managed-vscode-config": ["packages/kbn-managed-vscode-config"],
Expand Down
2 changes: 1 addition & 1 deletion x-pack/.i18nrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"xpack.licensing": "plugins/licensing",
"xpack.lists": "plugins/lists",
"xpack.logstash": [
"plugins/logstash"
"platform/plugins/private/logstash"
],
"xpack.main": "legacy/plugins/xpack_main",
"xpack.maps": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

module.exports = {
preset: '@kbn/test',
rootDir: '../../..',
roots: ['<rootDir>/x-pack/plugins/logstash'],
coverageDirectory: '<rootDir>/target/kibana-coverage/jest/x-pack/plugins/logstash',
rootDir: '../../../../..',
roots: ['<rootDir>/x-pack/platform/plugins/private/logstash'],
coverageDirectory: '<rootDir>/target/kibana-coverage/jest/x-pack/platform/plugins/private/logstash',
coverageReporters: ['text', 'html'],
collectCoverageFrom: [
'<rootDir>/x-pack/plugins/logstash/{common,public,server}/**/*.{js,ts,tsx}',
'<rootDir>/x-pack/platform/plugins/private/logstash/{common,public,server}/**/*.{js,ts,tsx}',
],
};
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

{
"extends": "../../../tsconfig.base.json",
"extends": "../../../../../tsconfig.base.json",
"compilerOptions": {
"outDir": "target/types",
},
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6168,7 +6168,7 @@
version "0.0.0"
uid ""

"@kbn/logstash-plugin@link:x-pack/plugins/logstash":
"@kbn/logstash-plugin@link:x-pack/platform/plugins/private/logstash":
version "0.0.0"
uid ""

Expand Down

0 comments on commit 1b3e630

Please sign in to comment.