Skip to content

Commit b54a91d

Browse files
Merge branch 'master' into use-aspercent-io-infra
2 parents 4c77592 + cc4c172 commit b54a91d

1,067 files changed

Lines changed: 22758 additions & 12147 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.

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ kibanaPipeline(timeoutMinutes: 155, checkPrChanges: true) {
4141
'xpack-ciGroup9': kibanaPipeline.xpackCiGroupProcess(9),
4242
'xpack-ciGroup10': kibanaPipeline.xpackCiGroupProcess(10),
4343
'xpack-accessibility': kibanaPipeline.functionalTestProcess('xpack-accessibility', './test/scripts/jenkins_xpack_accessibility.sh'),
44-
'xpack-pageLoadMetrics': kibanaPipeline.functionalTestProcess('xpack-pageLoadMetrics', './test/scripts/jenkins_xpack_page_load_metrics.sh'),
44+
// 'xpack-pageLoadMetrics': kibanaPipeline.functionalTestProcess('xpack-pageLoadMetrics', './test/scripts/jenkins_xpack_page_load_metrics.sh'),
4545
'xpack-securitySolutionCypress': { processNumber ->
4646
whenChanged(['x-pack/plugins/security_solution/', 'x-pack/test/security_solution_cypress/']) {
4747
kibanaPipeline.functionalTestProcess('xpack-securitySolutionCypress', './test/scripts/jenkins_security_solution_cypress.sh')(processNumber)

NOTICE.txt

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,68 @@ Author Tobias Koppers @sokra
2929
---
3030
This product has relied on ASTExplorer that is licensed under MIT.
3131

32+
---
33+
This product includes code that is based on Ace editor, which was available
34+
under a "BSD" license.
35+
36+
Distributed under the BSD license:
37+
38+
Copyright (c) 2010, Ajax.org B.V.
39+
All rights reserved.
40+
41+
Redistribution and use in source and binary forms, with or without
42+
modification, are permitted provided that the following conditions are met:
43+
* Redistributions of source code must retain the above copyright
44+
notice, this list of conditions and the following disclaimer.
45+
* Redistributions in binary form must reproduce the above copyright
46+
notice, this list of conditions and the following disclaimer in the
47+
documentation and/or other materials provided with the distribution.
48+
* Neither the name of Ajax.org B.V. nor the
49+
names of its contributors may be used to endorse or promote products
50+
derived from this software without specific prior written permission.
51+
52+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
53+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
54+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
55+
DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
56+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
57+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
58+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
59+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
60+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
61+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
62+
63+
---
64+
This product includes code that is based on Ace editor, which was available
65+
under a "BSD" license.
66+
67+
Distributed under the BSD license:
68+
69+
Copyright (c) 2010, Ajax.org B.V.
70+
All rights reserved.
71+
72+
Redistribution and use in source and binary forms, with or without
73+
modification, are permitted provided that the following conditions are met:
74+
* Redistributions of source code must retain the above copyright
75+
notice, this list of conditions and the following disclaimer.
76+
* Redistributions in binary form must reproduce the above copyright
77+
notice, this list of conditions and the following disclaimer in the
78+
documentation and/or other materials provided with the distribution.
79+
* Neither the name of Ajax.org B.V. nor the
80+
names of its contributors may be used to endorse or promote products
81+
derived from this software without specific prior written permission.
82+
83+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
84+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
85+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
86+
DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
87+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
88+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
89+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
90+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
91+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
92+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
93+
3294
---
3395
This product includes code that is based on flot-charts, which was available
3496
under a "MIT" license.

docs/developer/plugin/development-plugin-feature-registration.asciidoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ init(server) {
2222
-----------
2323

2424
===== Feature details
25-
Registering a feature consists of the following fields. For more information, consult the {repo}blob/{branch}/x-pack/plugins/features/server/feature_registry.ts[feature registry interface].
25+
Registering a feature consists of the following fields. For more information, consult the {kib-repo}blob/{branch}/x-pack/plugins/features/server/feature_registry.ts[feature registry interface].
2626

2727

2828
[cols="1a, 1a, 1a, 1a"]
@@ -45,12 +45,12 @@ Registering a feature consists of the following fields. For more information, co
4545
|An array of applications this feature enables. Typically, all of your plugin's apps (from `uiExports`) will be included here.
4646

4747
|`privileges` (required)
48-
|{repo}blob/{branch}/x-pack/plugins/features/common/feature.ts[`FeatureConfig`].
48+
|{kib-repo}blob/{branch}/x-pack/plugins/features/common/feature.ts[`FeatureConfig`].
4949
|See <<example-1-canvas,Example 1>> and <<example-2-dev-tools,Example 2>>
5050
|The set of privileges this feature requires to function.
5151

5252
|`subFeatures` (optional)
53-
|{repo}blob/{branch}/x-pack/plugins/features/common/feature.ts[`FeatureConfig`].
53+
|{kib-repo}blob/{branch}/x-pack/plugins/features/common/feature.ts[`FeatureConfig`].
5454
|See <<example-3-discover,Example 3>>
5555
|The set of subfeatures that enables finer access control than the `all` and `read` feature privileges. These options are only available in the Gold subscription level and higher.
5656

@@ -68,7 +68,7 @@ Registering a feature consists of the following fields. For more information, co
6868
===== Privilege definition
6969
The `privileges` section of feature registration allows plugins to implement read/write and read-only modes for their applications.
7070

71-
For a full explanation of fields and options, consult the {repo}blob/{branch}/x-pack/plugins/features/server/feature_registry.ts[feature registry interface].
71+
For a full explanation of fields and options, consult the {kib-repo}blob/{branch}/x-pack/plugins/features/server/feature_registry.ts[feature registry interface].
7272

7373
==== Using UI Capabilities
7474

docs/developer/plugin/development-plugin-functional-tests.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,5 @@ node ../../kibana/scripts/functional_test_runner
8585
[float]
8686
==== Using esArchiver
8787

88-
We're working on documentation for this, but for now the best place to look is the original {pull}10359[pull request].
88+
We're working on documentation for this, but for now the best place to look is the original {kibana-pull}10359[pull request].
8989

docs/developer/plugin/development-plugin-localization.asciidoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export const HELLO_WORLD = i18n.translate('hello.wonderful.world', {
109109
});
110110
-----------
111111

112-
Full details are {repo}tree/master/packages/kbn-i18n#vanilla-js[here].
112+
Full details are {kib-repo}tree/master/packages/kbn-i18n#vanilla-js[here].
113113

114114
[float]
115115
===== i18n for React
@@ -133,7 +133,7 @@ export const Component = () => {
133133
};
134134
-----------
135135

136-
Full details are {repo}tree/master/packages/kbn-i18n#react[here].
136+
Full details are {kib-repo}tree/master/packages/kbn-i18n#react[here].
137137

138138

139139

@@ -153,7 +153,7 @@ The translation directive has the following syntax:
153153
></ANY>
154154
-----------
155155

156-
Full details are {repo}tree/master/packages/kbn-i18n#angularjs[here].
156+
Full details are {kib-repo}tree/master/packages/kbn-i18n#angularjs[here].
157157

158158

159159
[float]

docs/developer/plugin/development-plugin-resources.asciidoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ Here are some resources that are helpful for getting started with plugin develop
55

66
[float]
77
==== Some light reading
8-
Our {repo}blob/master/CONTRIBUTING.md[contributing guide] can help you get a development environment going.
8+
Our {kib-repo}blob/master/CONTRIBUTING.md[contributing guide] can help you get a development environment going.
99

1010
[float]
1111
==== Plugin Generator
1212

13-
We recommend that you kick-start your plugin by generating it with the {repo}tree/{branch}/packages/kbn-plugin-generator[Kibana Plugin Generator]. Run the following in the Kibana repo, and you will be asked a couple questions, see some progress bars, and have a freshly generated plugin ready for you to play with in Kibana's `plugins` folder.
13+
We recommend that you kick-start your plugin by generating it with the {kib-repo}tree/{branch}/packages/kbn-plugin-generator[Kibana Plugin Generator]. Run the following in the Kibana repo, and you will be asked a couple questions, see some progress bars, and have a freshly generated plugin ready for you to play with in Kibana's `plugins` folder.
1414

1515
["source","shell"]
1616
-----------
@@ -34,7 +34,7 @@ The Kibana directory must be named `kibana`, and your plugin directory should be
3434

3535
[float]
3636
==== References in the code
37-
- {repo}blob/{branch}/src/legacy/server/plugins/lib/plugin.js[Plugin class]: What options does the `kibana.Plugin` class accept?
37+
- {kib-repo}blob/{branch}/src/legacy/server/plugins/lib/plugin.js[Plugin class]: What options does the `kibana.Plugin` class accept?
3838
- <<development-uiexports>>: What type of exports are available?
3939

4040
[float]
@@ -65,9 +65,9 @@ To enable TypeScript support, create a `tsconfig.json` file at the root of your
6565

6666
TypeScript code is automatically converted into JavaScript during development,
6767
but not in the distributable version of Kibana. If you use the
68-
{repo}blob/{branch}/packages/kbn-plugin-helpers[@kbn/plugin-helpers] to build your plugin, then your `.ts` and `.tsx` files will be permanently transpiled before your plugin is archived. If you have your own build process, make sure to run the TypeScript compiler on your source files and ship the compilation output so that your plugin will work with the distributable version of Kibana.
68+
{kib-repo}blob/{branch}/packages/kbn-plugin-helpers[@kbn/plugin-helpers] to build your plugin, then your `.ts` and `.tsx` files will be permanently transpiled before your plugin is archived. If you have your own build process, make sure to run the TypeScript compiler on your source files and ship the compilation output so that your plugin will work with the distributable version of Kibana.
6969

7070
==== {kib} platform migration guide
7171

72-
{repo}blob/{branch}/src/core/MIGRATION.md#migrating-legacy-plugins-to-the-new-platform[This guide]
72+
{kib-repo}blob/{branch}/src/core/MIGRATION.md#migrating-legacy-plugins-to-the-new-platform[This guide]
7373
provides an action plan for moving a legacy plugin to the new platform.

docs/developer/visualize/development-visualize-index.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ here are a few resources:
2222
* The <<breaking-changes,breaking changes>> documentation, where we try to capture any changes to the APIs as they occur across minors.
2323
* link:https://github.com/elastic/kibana/issues/44121[Meta issue] which is tracking the move of the plugin to the new Kibana platform
2424
* Our link:https://www.elastic.co/blog/join-our-elastic-stack-workspace-on-slack[Elastic Stack workspace on Slack].
25-
* The {repo}blob/{branch}/src/plugins/visualizations[source code], which will continue to be
25+
* The {kib-repo}blob/{branch}/src/plugins/visualizations[source code], which will continue to be
2626
the most accurate source of information.
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-server](./kibana-plugin-core-server.md) &gt; [CoreStart](./kibana-plugin-core-server.corestart.md) &gt; [http](./kibana-plugin-core-server.corestart.http.md)
4+
5+
## CoreStart.http property
6+
7+
[HttpServiceStart](./kibana-plugin-core-server.httpservicestart.md)
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
http: HttpServiceStart;
13+
```

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export interface CoreStart
1818
| --- | --- | --- |
1919
| [capabilities](./kibana-plugin-core-server.corestart.capabilities.md) | <code>CapabilitiesStart</code> | [CapabilitiesStart](./kibana-plugin-core-server.capabilitiesstart.md) |
2020
| [elasticsearch](./kibana-plugin-core-server.corestart.elasticsearch.md) | <code>ElasticsearchServiceStart</code> | [ElasticsearchServiceStart](./kibana-plugin-core-server.elasticsearchservicestart.md) |
21+
| [http](./kibana-plugin-core-server.corestart.http.md) | <code>HttpServiceStart</code> | [HttpServiceStart](./kibana-plugin-core-server.httpservicestart.md) |
2122
| [savedObjects](./kibana-plugin-core-server.corestart.savedobjects.md) | <code>SavedObjectsServiceStart</code> | [SavedObjectsServiceStart](./kibana-plugin-core-server.savedobjectsservicestart.md) |
2223
| [uiSettings](./kibana-plugin-core-server.corestart.uisettings.md) | <code>UiSettingsServiceStart</code> | [UiSettingsServiceStart](./kibana-plugin-core-server.uisettingsservicestart.md) |
2324

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-server](./kibana-plugin-core-server.md) &gt; [HttpAuth](./kibana-plugin-core-server.httpauth.md) &gt; [get](./kibana-plugin-core-server.httpauth.get.md)
4+
5+
## HttpAuth.get property
6+
7+
Gets authentication state for a request. Returned by `auth` interceptor. [GetAuthState](./kibana-plugin-core-server.getauthstate.md)
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
get: GetAuthState;
13+
```

0 commit comments

Comments
 (0)