Skip to content

Commit b71c8c6

Browse files
Merge branch '7.x' into backport/7.x/pr-89612
2 parents 70f7138 + 8aaf168 commit b71c8c6

382 files changed

Lines changed: 10813 additions & 4931 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_flaky

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,20 @@ kibanaPipeline(timeoutMinutes: 180) {
2929
catchErrors {
3030
print "Agent ${agentNumberInside} - ${agentExecutions} executions"
3131

32-
workers.functional('flaky-test-runner', {
33-
if (!IS_XPACK) {
34-
kibanaPipeline.buildOss()
35-
if (CI_GROUP == '1') {
36-
runbld("./test/scripts/jenkins_build_kbn_sample_panel_action.sh", "Build kbn tp sample panel action for ciGroup1")
32+
withEnv([
33+
'IGNORE_SHIP_CI_STATS_ERROR=true',
34+
]) {
35+
workers.functional('flaky-test-runner', {
36+
if (!IS_XPACK) {
37+
kibanaPipeline.buildOss()
38+
if (CI_GROUP == '1') {
39+
runbld("./test/scripts/jenkins_build_kbn_sample_panel_action.sh", "Build kbn tp sample panel action for ciGroup1")
40+
}
41+
} else {
42+
kibanaPipeline.buildXpack()
3743
}
38-
} else {
39-
kibanaPipeline.buildXpack()
40-
}
41-
}, getWorkerMap(agentNumberInside, agentExecutions, worker, workerFailures))()
44+
}, getWorkerMap(agentNumberInside, agentExecutions, worker, workerFailures))()
45+
}
4246
}
4347
}
4448
}

.ci/end2end.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ pipeline {
118118
}
119119

120120
def notifyStatus(String description, String status) {
121-
withGithubNotify.notify('end2end-for-apm-ui', description, status, getBlueoceanTabURL('pipeline'))
121+
withGithubStatus.notify('end2end-for-apm-ui', description, status, getBlueoceanTabURL('pipeline'))
122122
}
123123

124124
def notifyTestStatus(String description, String status) {
125-
withGithubNotify.notify('end2end-for-apm-ui', description, status, getBlueoceanTabURL('tests'))
125+
withGithubStatus.notify('end2end-for-apm-ui', description, status, getBlueoceanTabURL('tests'))
126126
}

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ snapshots.js
2222
/src/core/lib/kbn_internal_native_observable
2323
/src/legacy/plugin_discovery/plugin_pack/__tests__/fixtures/plugins/broken
2424
/src/plugins/data/common/es_query/kuery/ast/_generated_/**
25-
/src/plugins/vis_type_timelion/public/_generated_/**
25+
/src/plugins/vis_type_timelion/common/_generated_/**
2626
/x-pack/legacy/plugins/**/__tests__/fixtures/**
2727
/x-pack/plugins/apm/e2e/tmp/*
2828
/x-pack/plugins/canvas/canvas_plugin

.stylelintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ rules:
3232
- function
3333
- return
3434
- for
35+
- at-root
3536
comment-no-empty: true
3637
no-duplicate-at-import-rules: true
3738
no-duplicate-selectors: true

docs/developer/plugin-list.asciidoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,10 @@ which will load the visualization's editor.
297297
|To access an elasticsearch instance that has live data you have two options:
298298
299299
300+
|{kib-repo}blob/{branch}/x-pack/plugins/banners/README.md[banners]
301+
|Allow to add a header banner that will be displayed on every page of the Kibana application
302+
303+
300304
|{kib-repo}blob/{branch}/x-pack/plugins/beats_management/readme.md[beatsManagement]
301305
|Notes:
302306
Failure to have auth enabled in Kibana will make for a broken UI. UI-based errors not yet in place

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ core.chrome.setHelpExtension(elem => {
6767
| [setBreadcrumbs(newBreadcrumbs)](./kibana-plugin-core-public.chromestart.setbreadcrumbs.md) | Override the current set of breadcrumbs |
6868
| [setBreadcrumbsAppendExtension(breadcrumbsAppendExtension)](./kibana-plugin-core-public.chromestart.setbreadcrumbsappendextension.md) | Mount an element next to the last breadcrumb |
6969
| [setCustomNavLink(newCustomNavLink)](./kibana-plugin-core-public.chromestart.setcustomnavlink.md) | Override the current set of custom nav link |
70+
| [setHeaderBanner(headerBanner)](./kibana-plugin-core-public.chromestart.setheaderbanner.md) | Set the banner that will appear on top of the chrome header. |
7071
| [setHelpExtension(helpExtension)](./kibana-plugin-core-public.chromestart.sethelpextension.md) | Override the current set of custom help content |
7172
| [setHelpSupportUrl(url)](./kibana-plugin-core-public.chromestart.sethelpsupporturl.md) | Override the default support URL shown in the help menu |
7273
| [setIsVisible(isVisible)](./kibana-plugin-core-public.chromestart.setisvisible.md) | Set the temporary visibility for the chrome. This does nothing if the chrome is hidden by default and should be used to hide the chrome for things like full-screen modes with an exit button. |
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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; [ChromeStart](./kibana-plugin-core-public.chromestart.md) &gt; [setHeaderBanner](./kibana-plugin-core-public.chromestart.setheaderbanner.md)
4+
5+
## ChromeStart.setHeaderBanner() method
6+
7+
Set the banner that will appear on top of the chrome header.
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
setHeaderBanner(headerBanner?: ChromeUserBanner): void;
13+
```
14+
15+
## Parameters
16+
17+
| Parameter | Type | Description |
18+
| --- | --- | --- |
19+
| headerBanner | <code>ChromeUserBanner</code> | |
20+
21+
<b>Returns:</b>
22+
23+
`void`
24+
25+
## Remarks
26+
27+
Using `undefined` when invoking this API will remove the banner.
28+
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-public](./kibana-plugin-core-public.md) &gt; [ChromeUserBanner](./kibana-plugin-core-public.chromeuserbanner.md) &gt; [content](./kibana-plugin-core-public.chromeuserbanner.content.md)
4+
5+
## ChromeUserBanner.content property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
content: MountPoint<HTMLDivElement>;
11+
```
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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; [ChromeUserBanner](./kibana-plugin-core-public.chromeuserbanner.md)
4+
5+
## ChromeUserBanner interface
6+
7+
8+
<b>Signature:</b>
9+
10+
```typescript
11+
export interface ChromeUserBanner
12+
```
13+
14+
## Properties
15+
16+
| Property | Type | Description |
17+
| --- | --- | --- |
18+
| [content](./kibana-plugin-core-public.chromeuserbanner.content.md) | <code>MountPoint&lt;HTMLDivElement&gt;</code> | |
19+

0 commit comments

Comments
 (0)