Skip to content

Commit a49f8d9

Browse files
Merge branch 'master' into ml-dv-unsupported-types
2 parents 48a55e8 + 0ef3cbe commit a49f8d9

File tree

468 files changed

+9693
-2835
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

468 files changed

+9693
-2835
lines changed

.ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NOTE: This Dockerfile is ONLY used to run certain tasks in CI. It is not used to run Kibana or as a distributable.
22
# If you're looking for the Kibana Docker image distributable, please see: src/dev/build/tasks/os_packages/docker_generator/templates/dockerfile.template.ts
33

4-
ARG NODE_VERSION=14.17.0
4+
ARG NODE_VERSION=14.17.3
55

66
FROM node:${NODE_VERSION} AS base
77

.ci/package-testing/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/groovy
22
library 'kibana-pipeline-library'
33
kibanaLibrary.load()
4-
kibanaPipeline(timeoutMinutes: 300) {
4+
kibanaPipeline(timeoutMinutes: 120) {
55
slackNotifications.onFailure {
66
ciStats.trackBuild {
77
workers.ci(ramDisk: false, name: "package-build", size: 'l', runErrorReporter: false) {

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.17.2
1+
14.17.3

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.17.2
1+
14.17.3

WORKSPACE.bazel

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ check_rules_nodejs_version(minimum_version_string = "3.6.0")
2727
# we can update that rule.
2828
node_repositories(
2929
node_repositories = {
30-
"14.17.2-darwin_amd64": ("node-v14.17.2-darwin-x64.tar.gz", "node-v14.17.2-darwin-x64", "e45db91fc2136202868a5eb7c6d08b0a2b75394fafdf8538f650fa945b7dee16"),
31-
"14.17.2-linux_arm64": ("node-v14.17.2-linux-arm64.tar.xz", "node-v14.17.2-linux-arm64", "3aff08c49b8c0c3443e7a9ea9bfe607867d79e6e5ccf204a5c8f13fb92a48abd"),
32-
"14.17.2-linux_s390x": ("node-v14.17.2-linux-s390x.tar.xz", "node-v14.17.2-linux-s390x", "76f955856626a3e596b438855fdfe438937623dc71af9a25a8466409be470877"),
33-
"14.17.2-linux_amd64": ("node-v14.17.2-linux-x64.tar.xz", "node-v14.17.2-linux-x64", "6cf9db7349407c177b36205feec949729d0ee9db485e19b10b0b1ffca65a3a46"),
34-
"14.17.2-windows_amd64": ("node-v14.17.2-win-x64.zip", "node-v14.17.2-win-x64", "0e27897578752865fa61546d75b20f7cd62957726caab3c03f82c57a4aef5636"),
30+
"14.17.3-darwin_amd64": ("node-v14.17.3-darwin-x64.tar.gz", "node-v14.17.3-darwin-x64", "522f85db1d1fe798cba5f601d1bba7b5203ca8797b2bc934ff6f24263f0b7fb2"),
31+
"14.17.3-linux_arm64": ("node-v14.17.3-linux-arm64.tar.xz", "node-v14.17.3-linux-arm64", "80f4143d3c2d4cf3c4420eea3202c7bf16788b0a72fd512e60bfc8066a08a51c"),
32+
"14.17.3-linux_s390x": ("node-v14.17.3-linux-s390x.tar.xz", "node-v14.17.3-linux-s390x", "4f69c30732f94189b9ab98f3100b17f1e4db2000848d56064e887be1c28e81ae"),
33+
"14.17.3-linux_amd64": ("node-v14.17.3-linux-x64.tar.xz", "node-v14.17.3-linux-x64", "d659d78144042a1801f35dd611d0fab137e841cde902b2c6a821163a5e36f105"),
34+
"14.17.3-windows_amd64": ("node-v14.17.3-win-x64.zip", "node-v14.17.3-win-x64", "170fb4f95539d1d7e1295fb2556cb72bee352cdf81a02ffb16cf6d50ad2fefbf"),
3535
},
36-
node_version = "14.17.2",
36+
node_version = "14.17.3",
3737
node_urls = [
3838
"https://nodejs.org/dist/v{version}/{filename}",
3939
],

api_docs/maps.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3085,13 +3085,13 @@
30853085
},
30863086
{
30873087
"parentPluginId": "maps",
3088-
"id": "def-common.KBN_TOO_MANY_FEATURES_PROPERTY",
3088+
"id": "def-common.KBN_METADATA_FEATURE",
30893089
"type": "string",
30903090
"tags": [],
3091-
"label": "KBN_TOO_MANY_FEATURES_PROPERTY",
3091+
"label": "KBN_METADATA_FEATURE",
30923092
"description": [],
30933093
"signature": [
3094-
"\"__kbn_too_many_features__\""
3094+
"\"__kbn_metadata_feature__\""
30953095
],
30963096
"source": {
30973097
"path": "x-pack/plugins/maps/common/constants.ts",
@@ -3582,4 +3582,4 @@
35823582
}
35833583
]
35843584
}
3585-
}
3585+
}

docs/canvas/canvas-function-reference.asciidoc

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,60 @@ This prints the `datatable` objects in the browser console before and after the
406406

407407
*Returns:* `any`
408408

409+
[float]
410+
[[createTable_fn]]
411+
=== `createTable`
412+
413+
Creates a datatable with a list of columns, and 1 or more empty rows.
414+
To populate the rows, use <<mapColumn_fn>> or <<mathColumn_fn>>.
415+
416+
[cols="3*^<"]
417+
|===
418+
|Argument |Type |Description
419+
420+
|ids *** †
421+
422+
|`string`
423+
|Column ids to generate in positional order. ID represents the key in the row.
424+
425+
|`names` †
426+
|`string`
427+
|Column names to generate in positional order. Names are not required to be unique, and default to the ID if not provided.
428+
429+
|`rowCount`
430+
431+
Default: 1
432+
|`number`
433+
|The number of empty rows to add to the table, to be assigned a value later.
434+
|===
435+
436+
*Expression syntax*
437+
[source,js]
438+
----
439+
createTable id="a" id="b"
440+
createTable id="a" name="A" id="b" name="B" rowCount=5
441+
----
442+
443+
*Code example*
444+
[source,text]
445+
----
446+
var_set
447+
name="logs" value={essql "select count(*) as a from kibana_sample_data_logs"}
448+
name="commerce" value={essql "select count(*) as b from kibana_sample_data_ecommerce"}
449+
| createTable ids="totalA" ids="totalB"
450+
| staticColumn name="totalA" value={var "logs" | getCell "a"}
451+
| alterColumn column="totalA" type="number"
452+
| staticColumn name="totalB" value={var "commerce" | getCell "b"}
453+
| alterColumn column="totalB" type="number"
454+
| mathColumn id="percent" name="percent" expression="totalA / totalB"
455+
| render
456+
----
457+
458+
This creates a table based on the results of two `essql` queries, joined
459+
into one table.
460+
461+
*Accepts:* `null`
462+
409463

410464
[float]
411465
[[columns_fn]]

docs/developer/plugin-list.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ using the CURL scripts in the scripts folder.
485485
|{kib-repo}blob/{branch}/x-pack/plugins/metrics_entities/README.md[metricsEntities]
486486
|This is the metrics and entities plugin where you add can add transforms for your project
487487
and group those transforms into modules. You can also re-use existing transforms in your
488-
modules as well.
488+
newly created modules as well.
489489
490490
491491
|{kib-repo}blob/{branch}/x-pack/plugins/ml/readme.md[ml]
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-core-public](./kibana-plugin-core-public.md) &gt; [CoreStart](./kibana-plugin-core-public.corestart.md) &gt; [executionContext](./kibana-plugin-core-public.corestart.executioncontext.md)
4+
5+
## CoreStart.executionContext property
6+
7+
[ExecutionContextServiceStart](./kibana-plugin-core-public.executioncontextservicestart.md)
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
executionContext: ExecutionContextServiceStart;
13+
```

docs/development/core/public/kibana-plugin-core-public.corestart.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export interface CoreStart
2020
| [chrome](./kibana-plugin-core-public.corestart.chrome.md) | <code>ChromeStart</code> | [ChromeStart](./kibana-plugin-core-public.chromestart.md) |
2121
| [deprecations](./kibana-plugin-core-public.corestart.deprecations.md) | <code>DeprecationsServiceStart</code> | [DeprecationsServiceStart](./kibana-plugin-core-public.deprecationsservicestart.md) |
2222
| [docLinks](./kibana-plugin-core-public.corestart.doclinks.md) | <code>DocLinksStart</code> | [DocLinksStart](./kibana-plugin-core-public.doclinksstart.md) |
23+
| [executionContext](./kibana-plugin-core-public.corestart.executioncontext.md) | <code>ExecutionContextServiceStart</code> | [ExecutionContextServiceStart](./kibana-plugin-core-public.executioncontextservicestart.md) |
2324
| [fatalErrors](./kibana-plugin-core-public.corestart.fatalerrors.md) | <code>FatalErrorsStart</code> | [FatalErrorsStart](./kibana-plugin-core-public.fatalerrorsstart.md) |
2425
| [http](./kibana-plugin-core-public.corestart.http.md) | <code>HttpStart</code> | [HttpStart](./kibana-plugin-core-public.httpstart.md) |
2526
| [i18n](./kibana-plugin-core-public.corestart.i18n.md) | <code>I18nStart</code> | [I18nStart](./kibana-plugin-core-public.i18nstart.md) |

0 commit comments

Comments
 (0)