Skip to content

Commit cf785c1

Browse files
Merge branch 'master' into 74809-anomaly-alert
2 parents 2f3d704 + 5dee629 commit cf785c1

355 files changed

Lines changed: 6450 additions & 3711 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.

.eslintrc.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1114,10 +1114,18 @@ module.exports = {
11141114
* Enterprise Search overrides
11151115
*/
11161116
{
1117+
// All files
11171118
files: ['x-pack/plugins/enterprise_search/**/*.{ts,tsx}'],
1118-
excludedFiles: ['x-pack/plugins/enterprise_search/**/*.{test,mock}.{ts,tsx}'],
11191119
rules: {
11201120
'react-hooks/exhaustive-deps': 'off',
1121+
'react/jsx-boolean-value': ['error', 'never'],
1122+
},
1123+
},
1124+
{
1125+
// Source files only - allow `any` in test/mock files
1126+
files: ['x-pack/plugins/enterprise_search/**/*.{ts,tsx}'],
1127+
excludedFiles: ['x-pack/plugins/enterprise_search/**/*.{test,mock}.{ts,tsx}'],
1128+
rules: {
11211129
'@typescript-eslint/no-explicit-any': 'error',
11221130
},
11231131
},

docs/developer/architecture/index.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ To begin plugin development, we recommend reading our overview of how plugins wo
1313
* <<kibana-platform-plugin-api>>
1414

1515
Our developer services are changing all the time. One of the best ways to discover and learn about them is to read the available
16-
READMEs from all the plugins inside our {kib-repo}tree/{branch}/src/plugins[open source plugins folder] and our
17-
{kib-repo}/tree/{branch}/x-pack/plugins[commercial plugins folder].
16+
READMEs inside our plugins folders: {kib-repo}tree/{branch}/src/plugins[src/plugins] and
17+
{kib-repo}/tree/{branch}/x-pack/plugins[x-pack/plugins].
1818

1919
A few services also automatically generate api documentation which can be browsed inside the {kib-repo}tree/{branch}/docs/development[docs/development section of our repo]
2020

docs/developer/getting-started/running-kibana-advanced.asciidoc

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,6 @@ By default, you can log in with username `elastic` and password
2323
`changeme`. See the `--help` options on `yarn es <command>` if
2424
you’d like to configure a different password.
2525

26-
[discrete]
27-
=== Running {kib} in Open-Source mode
28-
29-
If you’re looking to only work with the open-source software, supply the
30-
license type to `yarn es`:
31-
32-
[source,bash]
33-
----
34-
yarn es snapshot --license oss
35-
----
36-
37-
And start {kib} with only open-source code:
38-
39-
[source,bash]
40-
----
41-
yarn start --oss
42-
----
43-
4426
[discrete]
4527
=== Unsupported URL Type
4628

docs/development/core/public/kibana-plugin-core-public.doclinksstart.links.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ readonly links: {
2121
readonly installation: string;
2222
readonly configuration: string;
2323
readonly elasticsearchOutput: string;
24+
readonly elasticsearchModule: string;
2425
readonly startup: string;
2526
readonly exportedFields: string;
2627
};
@@ -29,6 +30,10 @@ readonly links: {
2930
};
3031
readonly metricbeat: {
3132
readonly base: string;
33+
readonly configure: string;
34+
readonly httpEndpoint: string;
35+
readonly install: string;
36+
readonly start: string;
3237
};
3338
readonly enterpriseSearch: {
3439
readonly base: string;

docs/maps/connect-to-ems.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ endif::[]
8686

8787
[cols="2*<"]
8888
|===
89-
| [[ems-hostname]]`hostname`
89+
| [[ems-host]]`host`
9090
| Specifies the host of the backend server. To allow remote users to connect, set the value to the IP address or DNS name of the {hosted-ems} container. *Default: _your-hostname_*. <<server-host,Equivalent {kib} setting>>.
9191

9292
| `port`
@@ -199,7 +199,7 @@ TIP: The available basemaps and boundaries can be explored from the `/maps` endp
199199
[[elastic-maps-server-kibana]]
200200
==== Kibana configuration
201201

202-
With {hosted-ems} running, add the `map.emsUrl` configuration key in your <<settings, kibana.yml>> file pointing to the root of the service. This setting will point {kib} to request EMS basemaps and boundaries from {hosted-ems}. Typically this will be the URL to the <<ems-hostname,hostname and port>> of {hosted-ems}. For example, `map.emsUrl: https://my-ems-server:8080`.
202+
With {hosted-ems} running, add the `map.emsUrl` configuration key in your <<settings, kibana.yml>> file pointing to the root of the service. This setting will point {kib} to request EMS basemaps and boundaries from {hosted-ems}. Typically this will be the URL to the <<ems-host,host and port>> of {hosted-ems}. For example, `map.emsUrl: https://my-ems-server:8080`.
203203

204204

205205
[float]

docs/maps/maps-aggregations.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ To enable a blended layer that dynamically shows clusters or documents:
6868

6969
[role="xpack"]
7070
[[maps-top-hits-aggregation]]
71-
=== Top hits per entity
71+
=== Display the most relevant documents per entity
7272

73-
You can display the most relevant documents per entity, for example, the most recent GPS tracks per flight.
73+
Use *Top hits per entity* to display the most relevant documents per entity, for example, the most recent GPS tracks per flight route.
7474
To get this data, {es} first groups your data using a {ref}/search-aggregations-bucket-terms-aggregation.html[terms aggregation],
7575
then accumulates the most relevant documents based on sort order for each entry using a {ref}/search-aggregations-metrics-top-hits-aggregation.html[top hits metric aggregation].
7676

docs/setup/install/deb.asciidoc

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,8 @@ The Debian package for Kibana can be <<install-deb,downloaded from our website>>
88
or from our <<deb-repo,APT repository>>. It can be used to install
99
Kibana on any Debian-based system such as Debian and Ubuntu.
1010

11-
This package is free to use under the Elastic license. It contains open source
12-
and free commercial features and access to paid commercial features.
13-
<<managing-licenses,Start a 30-day trial>> to try out all of the
14-
paid commercial features. See the
15-
https://www.elastic.co/subscriptions[Subscriptions] page for information about
16-
Elastic license levels.
11+
This package contains both free and subscription features.
12+
<<managing-licenses,Start a 30-day trial>> to try out all of the features.
1713

1814
The latest stable version of Kibana can be found on the
1915
link:/downloads/kibana[Download Kibana] page. Other versions can

docs/setup/install/rpm.asciidoc

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,8 @@ and Oracle Enterprise.
1313
NOTE: RPM install is not supported on distributions with old versions of RPM,
1414
such as SLES 11 and CentOS 5. Please see <<targz>> instead.
1515

16-
This package is free to use under the Elastic license. It contains open source
17-
and free commercial features and access to paid commercial features.
18-
<<managing-licenses,Start a 30-day trial>> to try out all of the
19-
paid commercial features. See the
20-
https://www.elastic.co/subscriptions[Subscriptions] page for information about
21-
Elastic license levels.
16+
This package contains both free and subscription features.
17+
<<managing-licenses,Start a 30-day trial>> to try out all of the features.
2218

2319
The latest stable version of Kibana can be found on the
2420
link:/downloads/kibana[Download Kibana] page. Other versions can

docs/setup/install/targz.asciidoc

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,8 @@
77
Kibana is provided for Linux and Darwin as a `.tar.gz` package. These packages
88
are the easiest formats to use when trying out Kibana.
99

10-
These packages are free to use under the Elastic license. They contain open
11-
source and free commercial features and access to paid commercial features.
12-
<<managing-licenses,Start a 30-day trial>> to try out all of the
13-
paid commercial features. See the
14-
https://www.elastic.co/subscriptions[Subscriptions] page for information about
15-
Elastic license levels.
10+
This package contains both free and subscription features.
11+
<<managing-licenses,Start a 30-day trial>> to try out all of the features.
1612

1713
The latest stable version of Kibana can be found on the
1814
link:/downloads/kibana[Download Kibana] page.

docs/setup/install/windows.asciidoc

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,8 @@
66

77
Kibana can be installed on Windows using the `.zip` package.
88

9-
This package is free to use under the Elastic license. It contains open source
10-
and free commercial features and access to paid commercial features.
11-
<<managing-licenses,Start a 30-day trial>> to try out all of the
12-
paid commercial features. See the
13-
https://www.elastic.co/subscriptions[Subscriptions] page for information about
14-
Elastic license levels.
9+
This package contains both free and subscription features.
10+
<<managing-licenses,Start a 30-day trial>> to try out all of the features.
1511

1612
The latest stable version of Kibana can be found on the
1713
link:/downloads/kibana[Download Kibana] page.

0 commit comments

Comments
 (0)