Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -982,6 +982,7 @@ src/platform/packages/shared/kbn-std @elastic/kibana-core
src/platform/packages/private/kbn-stdio-dev-helpers @elastic/kibana-operations
src/platform/packages/shared/kbn-storage-adapter @elastic/observability-ui
src/platform/packages/shared/kbn-storybook @elastic/kibana-operations
x-pack/platform/packages/shared/kbn-streamlang @elastic/streams-program-team
x-pack/platform/plugins/shared/streams_app @elastic/streams-program-team
x-pack/solutions/observability/plugins/observability_streams_wrapper @elastic/streams-program-team
x-pack/platform/plugins/shared/streams @simianhacker @flash1293 @dgieselaar
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -966,6 +966,7 @@
"@kbn/status-plugin-b-plugin": "link:src/platform/test/server_integration/plugins/status_plugin_b",
"@kbn/std": "link:src/platform/packages/shared/kbn-std",
"@kbn/storage-adapter": "link:src/platform/packages/shared/kbn-storage-adapter",
"@kbn/streamlang": "link:x-pack/platform/packages/shared/kbn-streamlang",
"@kbn/streams-app-plugin": "link:x-pack/platform/plugins/shared/streams_app",
"@kbn/streams-app-wrapper-plugin": "link:x-pack/solutions/observability/plugins/observability_streams_wrapper",
"@kbn/streams-plugin": "link:x-pack/platform/plugins/shared/streams",
Expand Down
2 changes: 2 additions & 0 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -1958,6 +1958,8 @@
"@kbn/storage-adapter/*": ["src/platform/packages/shared/kbn-storage-adapter/*"],
"@kbn/storybook": ["src/platform/packages/shared/kbn-storybook"],
"@kbn/storybook/*": ["src/platform/packages/shared/kbn-storybook/*"],
"@kbn/streamlang": ["x-pack/platform/packages/shared/kbn-streamlang"],
"@kbn/streamlang/*": ["x-pack/platform/packages/shared/kbn-streamlang/*"],
"@kbn/streams-app-plugin": ["x-pack/platform/plugins/shared/streams_app"],
"@kbn/streams-app-plugin/*": ["x-pack/platform/plugins/shared/streams_app/*"],
"@kbn/streams-app-wrapper-plugin": ["x-pack/solutions/observability/plugins/observability_streams_wrapper"],
Expand Down
3 changes: 3 additions & 0 deletions x-pack/platform/packages/shared/kbn-streamlang/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# @kbn/streamlang

This shared package contains code for Streamlang, a processing DSL.
12 changes: 12 additions & 0 deletions x-pack/platform/packages/shared/kbn-streamlang/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
* 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/platform/packages/shared/kbn-streamlang'],
};
7 changes: 7 additions & 0 deletions x-pack/platform/packages/shared/kbn-streamlang/kibana.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "shared-common",
"id": "@kbn/streamlang",
"owner": "@elastic/streams-program-team",
"group": "platform",
"visibility": "shared"
}
7 changes: 7 additions & 0 deletions x-pack/platform/packages/shared/kbn-streamlang/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "@kbn/streamlang",
"description": "A processing DSL for Streams",
"private": true,
"version": "1.0.0",
"license": "Elastic License 2.0"
}
17 changes: 17 additions & 0 deletions x-pack/platform/packages/shared/kbn-streamlang/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"extends": "../../../../../tsconfig.base.json",
"compilerOptions": {
"outDir": "target/types",
"types": [
"jest",
"node"
]
},
"include": [
"**/*.ts",
],
"exclude": [
"target/**/*"
],
"kbn_references": []
}
4 changes: 4 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7575,6 +7575,10 @@
version "0.0.0"
uid ""

"@kbn/streamlang@link:x-pack/platform/packages/shared/kbn-streamlang":
version "0.0.0"
uid ""

"@kbn/streams-app-plugin@link:x-pack/platform/plugins/shared/streams_app":
version "0.0.0"
uid ""
Expand Down