Skip to content

Commit c8a4fd5

Browse files
Merge branch 'master' into empty_heatmap_metrics
2 parents 4438e94 + 0e008e3 commit c8a4fd5

198 files changed

Lines changed: 3939 additions & 2343 deletions

File tree

Some content is hidden

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

.ci/Jenkinsfile_coverage

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,22 @@ kibanaPipeline(timeoutMinutes: 240) {
2323
}
2424

2525
def handleIngestion(timestamp) {
26+
def previousSha = handlePreviousSha()
2627
kibanaPipeline.downloadCoverageArtifacts()
2728
kibanaCoverage.prokLinks("### Process HTML Links")
2829
kibanaCoverage.collectVcsInfo("### Collect VCS Info")
2930
kibanaCoverage.generateReports("### Merge coverage reports")
3031
kibanaCoverage.uploadCombinedReports()
31-
kibanaCoverage.ingest(env.JOB_NAME, BUILD_NUMBER, BUILD_URL, timestamp, '### Ingest && Upload')
32+
kibanaCoverage.ingest(env.JOB_NAME, BUILD_NUMBER, BUILD_URL, timestamp, previousSha, '### Ingest && Upload')
3233
kibanaCoverage.uploadCoverageStaticSite(timestamp)
3334
}
3435

36+
def handlePreviousSha() {
37+
def previous = kibanaCoverage.downloadPrevious('### Download OLD Previous')
38+
kibanaCoverage.uploadPrevious('### Upload NEW Previous')
39+
return previous
40+
}
41+
3542
def handleFail() {
3643
def buildStatus = buildUtils.getBuildStatus()
3744
if(params.NOTIFY_ON_FAILURE && buildStatus != 'SUCCESS' && buildStatus != 'ABORTED' && buildStatus != 'UNSTABLE') {

.fossa.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Generated by FOSSA CLI (https://github.com/fossas/fossa-cli)
2+
# Visit https://fossa.com to learn more
3+
4+
version: 2
5+
cli:
6+
server: https://app.fossa.com
7+
fetcher: custom
8+
project: kibana
9+
analyze:
10+
modules:
11+
- name: kibana
12+
type: nodejs
13+
strategy: yarn.lock
14+
target: .
15+
path: .
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-core-server](./kibana-plugin-core-server.md) &gt; [SavedObjectsComplexFieldMapping](./kibana-plugin-core-server.savedobjectscomplexfieldmapping.md) &gt; [doc\_values](./kibana-plugin-core-server.savedobjectscomplexfieldmapping.doc_values.md)
4+
5+
## SavedObjectsComplexFieldMapping.doc\_values property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
doc_values?: boolean;
11+
```

docs/development/core/server/kibana-plugin-core-server.savedobjectscomplexfieldmapping.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export interface SavedObjectsComplexFieldMapping
1818

1919
| Property | Type | Description |
2020
| --- | --- | --- |
21+
| [doc\_values](./kibana-plugin-core-server.savedobjectscomplexfieldmapping.doc_values.md) | <code>boolean</code> | |
2122
| [properties](./kibana-plugin-core-server.savedobjectscomplexfieldmapping.properties.md) | <code>SavedObjectsMappingProperties</code> | |
2223
| [type](./kibana-plugin-core-server.savedobjectscomplexfieldmapping.type.md) | <code>string</code> | |
2324

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-core-server](./kibana-plugin-core-server.md) &gt; [SavedObjectsCoreFieldMapping](./kibana-plugin-core-server.savedobjectscorefieldmapping.md) &gt; [doc\_values](./kibana-plugin-core-server.savedobjectscorefieldmapping.doc_values.md)
4+
5+
## SavedObjectsCoreFieldMapping.doc\_values property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
doc_values?: boolean;
11+
```

docs/development/core/server/kibana-plugin-core-server.savedobjectscorefieldmapping.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export interface SavedObjectsCoreFieldMapping
1616

1717
| Property | Type | Description |
1818
| --- | --- | --- |
19+
| [doc\_values](./kibana-plugin-core-server.savedobjectscorefieldmapping.doc_values.md) | <code>boolean</code> | |
1920
| [enabled](./kibana-plugin-core-server.savedobjectscorefieldmapping.enabled.md) | <code>boolean</code> | |
2021
| [fields](./kibana-plugin-core-server.savedobjectscorefieldmapping.fields.md) | <code>{</code><br/><code> [subfield: string]: {</code><br/><code> type: string;</code><br/><code> ignore_above?: number;</code><br/><code> };</code><br/><code> }</code> | |
2122
| [index](./kibana-plugin-core-server.savedobjectscorefieldmapping.index.md) | <code>boolean</code> | |

docs/plugins/known-plugins.asciidoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ This list of plugins is not guaranteed to work on your version of Kibana. Instea
5959
* https://github.com/sbeyn/kibana-plugin-traffic-sg[Traffic] (sbeyn)
6060
* https://github.com/PhaedrusTheGreek/transform_vis[Transform Visualization] (PhaedrusTheGreek)
6161
* https://github.com/nyurik/kibana-vega-vis[Vega-based visualizations] (nyurik) - Support for user-defined graphs, external data sources, maps, images, and user-defined interactivity.
62+
* https://github.com/Camichan/kbn_aframe[VR Graph Visualizations] (Camichan)
6263

6364
[float]
6465
=== Other

docs/settings/reporting-settings.asciidoc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,25 @@ When `xpack.reporting.capture.browser.type` is set to `chromium` (default) you c
210210
large exports from causing performance and storage issues.
211211
Defaults to `10485760` (10mB).
212212

213+
| `xpack.reporting.csv.scroll.size`
214+
| Number of documents retrieved from {es} for each scroll iteration during a CSV
215+
export.
216+
Defaults to `500`.
217+
218+
| `xpack.reporting.csv.scroll.duration`
219+
| Amount of time allowed before {kib} cleans the scroll context during a CSV export.
220+
Defaults to `30s`.
221+
222+
| `xpack.reporting.csv.checkForFormulas`
223+
| Enables a check that warns you when there's a potential formula involved in the output (=, -, +, and @ chars).
224+
See OWASP: https://www.owasp.org/index.php/CSV_Injection
225+
Defaults to `true`.
226+
227+
| `xpack.reporting.csv.enablePanelActionDownload`
228+
| Enables CSV export from a saved search on a dashboard. This action is available in the dashboard
229+
panel menu for the saved search.
230+
Defaults to `true`.
231+
213232
|===
214233

215234
[float]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
123123
"@babel/register": "^7.10.1",
124124
"@elastic/apm-rum": "^5.2.0",
125-
"@elastic/charts": "19.5.2",
125+
"@elastic/charts": "19.6.3",
126126
"@elastic/datemath": "5.0.3",
127127
"@elastic/ems-client": "7.9.3",
128128
"@elastic/eui": "24.1.0",

packages/kbn-ui-shared-deps/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"kbn:watch": "node scripts/build --dev --watch"
1010
},
1111
"dependencies": {
12-
"@elastic/charts": "19.5.2",
12+
"@elastic/charts": "19.6.3",
1313
"@elastic/eui": "24.1.0",
1414
"@elastic/numeral": "^2.5.0",
1515
"@kbn/i18n": "1.0.0",

0 commit comments

Comments
 (0)