Skip to content

Commit

Permalink
Relocating module @kbn/session-view-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
gsoldevila committed Dec 9, 2024
1 parent 563eed8 commit 8544578
Show file tree
Hide file tree
Showing 160 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,6 @@ x-pack/plugins/security_solution_serverless @elastic/security-solution
x-pack/plugins/serverless @elastic/appex-sharedux
x-pack/plugins/serverless_observability @elastic/obs-ux-management-team
x-pack/plugins/serverless_search @elastic/search-kibana
x-pack/plugins/session_view @elastic/kibana-cloud-security-posture
x-pack/plugins/snapshot_restore @elastic/kibana-management
x-pack/plugins/spaces @elastic/kibana-security
x-pack/plugins/stack_alerts @elastic/response-ops
Expand All @@ -994,6 +993,7 @@ x-pack/solutions/security/plugins/asset_inventory @elastic/kibana-cloud-security
x-pack/solutions/security/plugins/cloud_defend @elastic/kibana-cloud-security-posture
x-pack/solutions/security/plugins/cloud_security_posture @elastic/kibana-cloud-security-posture
x-pack/solutions/security/plugins/kubernetes_security @elastic/kibana-cloud-security-posture
x-pack/solutions/security/plugins/session_view @elastic/kibana-cloud-security-posture
x-pack/test
x-pack/test_serverless
x-pack/test/alerting_api_integration/common/plugins/aad @elastic/response-ops
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 @@ -890,7 +890,7 @@ This plugin is only enabled when the application is built for serverless project
|This plugin contains configuration and code used to create a Serverless Search project. It leverages universal configuration and other APIs in the serverless plugin to configure Kibana.
|{kib-repo}blob/{branch}/x-pack/plugins/session_view/README.md[sessionView]
|{kib-repo}blob/{branch}/x-pack/solutions/security/plugins/session_view/README.md[sessionView]
|Session View is meant to provide a visualization into what is going on in a particular Linux environment where the agent is running. It looks likes a terminal emulator; however, it is a tool for introspecting process activity and understanding user and service behaviour in your Linux servers and infrastructure. It is a time-ordered series of process executions displayed in a tree over time.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@
"@kbn/serverless-security-settings": "link:packages/serverless/settings/security_project",
"@kbn/serverless-types": "link:packages/serverless/types",
"@kbn/session-notifications-plugin": "link:test/plugin_functional/plugins/session_notifications",
"@kbn/session-view-plugin": "link:x-pack/plugins/session_view",
"@kbn/session-view-plugin": "link:x-pack/solutions/security/plugins/session_view",
"@kbn/set-map": "link:packages/kbn-set-map",
"@kbn/share-examples-plugin": "link:examples/share_examples",
"@kbn/share-plugin": "link:src/plugins/share",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -1710,8 +1710,8 @@
"@kbn/serverless-types/*": ["packages/serverless/types/*"],
"@kbn/session-notifications-plugin": ["test/plugin_functional/plugins/session_notifications"],
"@kbn/session-notifications-plugin/*": ["test/plugin_functional/plugins/session_notifications/*"],
"@kbn/session-view-plugin": ["x-pack/plugins/session_view"],
"@kbn/session-view-plugin/*": ["x-pack/plugins/session_view/*"],
"@kbn/session-view-plugin": ["x-pack/solutions/security/plugins/session_view"],
"@kbn/session-view-plugin/*": ["x-pack/solutions/security/plugins/session_view/*"],
"@kbn/set-map": ["packages/kbn-set-map"],
"@kbn/set-map/*": ["packages/kbn-set-map/*"],
"@kbn/share-examples-plugin": ["examples/share_examples"],
Expand Down
2 changes: 1 addition & 1 deletion x-pack/.i18nrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
"xpack.securitySolution": "plugins/security_solution",
"xpack.securitySolutionEss": "plugins/security_solution_ess",
"xpack.securitySolutionServerless": "plugins/security_solution_serverless",
"xpack.sessionView": "plugins/session_view",
"xpack.sessionView": "solutions/security/plugins/session_view",
"xpack.streams": [
"plugins/streams_app"
],
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ It provides an audit trail of:
From kibana path in your terminal go to this plugin root:

```bash
cd x-pack/plugins/session_view
cd x-pack/solutions/security/plugins/session_view
```

Then run jest with:
Expand All @@ -32,5 +32,5 @@ yarn test:jest
Or if running from kibana root, you can specify the `-i` to specify the path:

```bash
yarn test:jest -i x-pack/plugins/session_view/
yarn test:jest -i x-pack/solutions/security/plugins/session_view/
```
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@

module.exports = {
preset: '@kbn/test',
rootDir: '../../..',
roots: ['<rootDir>/x-pack/plugins/session_view'],
coverageDirectory: '<rootDir>/target/kibana-coverage/jest/x-pack/plugins/session_view',
rootDir: '../../../../..',
roots: ['<rootDir>/x-pack/solutions/security/plugins/session_view'],
coverageDirectory: '<rootDir>/target/kibana-coverage/jest/x-pack/solutions/security/plugins/session_view',
coverageReporters: ['text', 'html'],
collectCoverageFrom: [
'<rootDir>/x-pack/plugins/session_view/{common,public,server}/**/*.{ts,tsx}',
'<rootDir>/x-pack/solutions/security/plugins/session_view/{common,public,server}/**/*.{ts,tsx}',
],
setupFiles: ['jest-canvas-mock'],
};
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"private": true,
"license": "Elastic License 2.0",
"scripts": {
"test:jest": "node ../../scripts/jest",
"test:coverage": "node ../../scripts/jest --coverage"
"test:jest": "node ../../../../scripts/jest",
"test:coverage": "node ../../../../scripts/jest --coverage"
}
}
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,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../../../tsconfig.base.json",
"compilerOptions": {
"outDir": "target/types",
},
Expand All @@ -12,7 +12,7 @@
"scripts/**/*",
"package.json",
"storybook/**/*",
"../../../typings/**/*"
"../../../../../typings/**/*"
],
"kbn_references": [
"@kbn/core",
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7236,7 +7236,7 @@
version "0.0.0"
uid ""

"@kbn/session-view-plugin@link:x-pack/plugins/session_view":
"@kbn/session-view-plugin@link:x-pack/solutions/security/plugins/session_view":
version "0.0.0"
uid ""

Expand Down

0 comments on commit 8544578

Please sign in to comment.