-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into 72648-log-thresho…
…ld-ratio-alerts
- Loading branch information
Showing
926 changed files
with
64,114 additions
and
68,279 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
docs/developer/contributing/development-ci-metrics.asciidoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
[[ci-metrics]] | ||
== CI Metrics | ||
|
||
In addition to running our tests, CI collects metrics about the Kibana build. These metrics are sent to an external service to track changes over time, and to provide PR authors insights into the impact of their changes. | ||
|
||
|
||
[[ci-metric-types]] | ||
=== Metric types | ||
|
||
|
||
[[ci-metric-types-bundle-size-metrics]] | ||
==== Bundle size | ||
|
||
These metrics help contributors know how they are impacting the size of the bundles Kibana creates, and help make sure that Kibana loads as fast as possible. | ||
|
||
[[ci-metric-page-load-bundle-size]] `page load bundle size` :: | ||
The size of the entry file produced for each bundle/plugin. This file is always loaded on every page load, so it should be as small as possible. To reduce this metric you can put any code that isn't necessary on every page load behind an https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#Dynamic_Imports[`async import()`]. | ||
+ | ||
Code that is shared statically with other plugins will contribute to the `page load bundle size` of that plugin. This includes exports from the `public/index.ts` file and any file referenced by the `extraPublicDirs` manifest property. | ||
|
||
[[ci-metric-async-chunks-size]] `async chunks size` :: | ||
An "async chunk" is created for the files imported by each https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#Dynamic_Imports[`async import()`] statement. This metric tracks the sum size of these chunks, in bytes, broken down by plugin/bundle id. You can think of this as the amount of code users will have to download if they access all the components/applications within a bundle. | ||
|
||
[[ci-metric-misc-asset-size]] `miscellaneous assets size` :: | ||
A "miscellaneous asset" is anything that isn't an async chunk or entry chunk, often images. This metric tracks the sum size of these assets, in bytes, broken down by plugin/bundle id. | ||
|
||
[[ci-metric-bundle-module-count]] `@kbn/optimizer bundle module count` :: | ||
The number of separate modules included in each bundle/plugin. This is the best indicator we have for how long a specific bundle will take to be built by the `@kbn/optimizer`, so we report it to help people know when they've imported a module which might include a surprising number of sub-modules. | ||
|
||
|
||
[[ci-metric-types-distributable-size]] | ||
==== Distributable size | ||
|
||
The size of the Kibana distributable is an essential metric as it not only contributes to the time it takes to download, but it also impacts time it takes to extract the archive once downloaded. | ||
|
||
There are several metrics that we don't report on PRs because gzip-compression produces different file sizes even when provided the same input, so this metric would regularly show changes even though PR authors hadn't made any relevant changes. | ||
|
||
All metrics are collected from the `tar.gz` archive produced for the linux platform. | ||
|
||
[[ci-metric-distributable-file-count]] `distributable file count` :: | ||
The number of files included in the default distributable. | ||
|
||
[[ci-metric-oss-distributable-file-count]] `oss distributable file count` :: | ||
The number of files included in the OSS distributable. | ||
|
||
[[ci-metric-distributable-size]] `distributable size` :: | ||
The size, in bytes, of the default distributable. _(not reported on PRs)_ | ||
|
||
[[ci-metric-oss-distributable-size]] `oss distributable size` :: | ||
The size, in bytes, of the OSS distributable. _(not reported on PRs)_ | ||
|
||
|
||
[[ci-metric-types-saved-object-field-counts]] | ||
==== Saved Object field counts | ||
|
||
Elasticsearch limits the number of fields in an index to 1000 by default, and we want to avoid raising that limit. | ||
|
||
[[ci-metric-saved-object-field-count]] `Saved Objects .kibana field count` :: | ||
The number of saved object fields broken down by saved object type. | ||
|
||
|
||
[[ci-metric-adding-new-metrics]] | ||
=== Adding new metrics | ||
|
||
You can report new metrics by using the `CiStatsReporter` class provided by the `@kbn/dev-utils` package. This class is automatically configured on CI and its methods noop when running outside of CI. For more details checkout the {kib-repo}blob/{branch}/packages/kbn-dev-utils/src/ci_stats_reporter[`CiStatsReporter` readme]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...ublic/kibana-plugin-plugins-data-public.indexpatternsservice.getidswithtitle.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [IndexPatternsService](./kibana-plugin-plugins-data-public.indexpatternsservice.md) > [getIdsWithTitle](./kibana-plugin-plugins-data-public.indexpatternsservice.getidswithtitle.md) | ||
|
||
## IndexPatternsService.getIdsWithTitle property | ||
|
||
Get list of index pattern ids with titles | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
getIdsWithTitle: (refresh?: boolean) => Promise<Array<{ | ||
id: string; | ||
title: string; | ||
}>>; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...ic/kibana-plugin-plugins-data-public.querystringinputprops.bubblesubmitevent.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [QueryStringInputProps](./kibana-plugin-plugins-data-public.querystringinputprops.md) > [bubbleSubmitEvent](./kibana-plugin-plugins-data-public.querystringinputprops.bubblesubmitevent.md) | ||
|
||
## QueryStringInputProps.bubbleSubmitEvent property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
bubbleSubmitEvent?: boolean; | ||
``` |
11 changes: 11 additions & 0 deletions
11
...ata/public/kibana-plugin-plugins-data-public.querystringinputprops.classname.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [QueryStringInputProps](./kibana-plugin-plugins-data-public.querystringinputprops.md) > [className](./kibana-plugin-plugins-data-public.querystringinputprops.classname.md) | ||
|
||
## QueryStringInputProps.className property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
className?: string; | ||
``` |
11 changes: 11 additions & 0 deletions
11
.../public/kibana-plugin-plugins-data-public.querystringinputprops.datatestsubj.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [QueryStringInputProps](./kibana-plugin-plugins-data-public.querystringinputprops.md) > [dataTestSubj](./kibana-plugin-plugins-data-public.querystringinputprops.datatestsubj.md) | ||
|
||
## QueryStringInputProps.dataTestSubj property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
dataTestSubj?: string; | ||
``` |
11 changes: 11 additions & 0 deletions
11
...lic/kibana-plugin-plugins-data-public.querystringinputprops.disableautofocus.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [QueryStringInputProps](./kibana-plugin-plugins-data-public.querystringinputprops.md) > [disableAutoFocus](./kibana-plugin-plugins-data-public.querystringinputprops.disableautofocus.md) | ||
|
||
## QueryStringInputProps.disableAutoFocus property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
disableAutoFocus?: boolean; | ||
``` |
11 changes: 11 additions & 0 deletions
11
...public/kibana-plugin-plugins-data-public.querystringinputprops.indexpatterns.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [QueryStringInputProps](./kibana-plugin-plugins-data-public.querystringinputprops.md) > [indexPatterns](./kibana-plugin-plugins-data-public.querystringinputprops.indexpatterns.md) | ||
|
||
## QueryStringInputProps.indexPatterns property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
indexPatterns: Array<IIndexPattern | string>; | ||
``` |
11 changes: 11 additions & 0 deletions
11
...ata/public/kibana-plugin-plugins-data-public.querystringinputprops.isinvalid.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [QueryStringInputProps](./kibana-plugin-plugins-data-public.querystringinputprops.md) > [isInvalid](./kibana-plugin-plugins-data-public.querystringinputprops.isinvalid.md) | ||
|
||
## QueryStringInputProps.isInvalid property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
isInvalid?: boolean; | ||
``` |
11 changes: 11 additions & 0 deletions
11
...gins-data-public.querystringinputprops.languageswitcherpopoveranchorposition.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [QueryStringInputProps](./kibana-plugin-plugins-data-public.querystringinputprops.md) > [languageSwitcherPopoverAnchorPosition](./kibana-plugin-plugins-data-public.querystringinputprops.languageswitcherpopoveranchorposition.md) | ||
|
||
## QueryStringInputProps.languageSwitcherPopoverAnchorPosition property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
languageSwitcherPopoverAnchorPosition?: PopoverAnchorPosition; | ||
``` |
34 changes: 34 additions & 0 deletions
34
.../plugins/data/public/kibana-plugin-plugins-data-public.querystringinputprops.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [QueryStringInputProps](./kibana-plugin-plugins-data-public.querystringinputprops.md) | ||
|
||
## QueryStringInputProps interface | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export interface QueryStringInputProps | ||
``` | ||
|
||
## Properties | ||
|
||
| Property | Type | Description | | ||
| --- | --- | --- | | ||
| [bubbleSubmitEvent](./kibana-plugin-plugins-data-public.querystringinputprops.bubblesubmitevent.md) | <code>boolean</code> | | | ||
| [className](./kibana-plugin-plugins-data-public.querystringinputprops.classname.md) | <code>string</code> | | | ||
| [dataTestSubj](./kibana-plugin-plugins-data-public.querystringinputprops.datatestsubj.md) | <code>string</code> | | | ||
| [disableAutoFocus](./kibana-plugin-plugins-data-public.querystringinputprops.disableautofocus.md) | <code>boolean</code> | | | ||
| [indexPatterns](./kibana-plugin-plugins-data-public.querystringinputprops.indexpatterns.md) | <code>Array<IIndexPattern | string></code> | | | ||
| [isInvalid](./kibana-plugin-plugins-data-public.querystringinputprops.isinvalid.md) | <code>boolean</code> | | | ||
| [languageSwitcherPopoverAnchorPosition](./kibana-plugin-plugins-data-public.querystringinputprops.languageswitcherpopoveranchorposition.md) | <code>PopoverAnchorPosition</code> | | | ||
| [onBlur](./kibana-plugin-plugins-data-public.querystringinputprops.onblur.md) | <code>() => void</code> | | | ||
| [onChange](./kibana-plugin-plugins-data-public.querystringinputprops.onchange.md) | <code>(query: Query) => void</code> | | | ||
| [onChangeQueryInputFocus](./kibana-plugin-plugins-data-public.querystringinputprops.onchangequeryinputfocus.md) | <code>(isFocused: boolean) => void</code> | | | ||
| [onSubmit](./kibana-plugin-plugins-data-public.querystringinputprops.onsubmit.md) | <code>(query: Query) => void</code> | | | ||
| [persistedLog](./kibana-plugin-plugins-data-public.querystringinputprops.persistedlog.md) | <code>PersistedLog</code> | | | ||
| [placeholder](./kibana-plugin-plugins-data-public.querystringinputprops.placeholder.md) | <code>string</code> | | | ||
| [prepend](./kibana-plugin-plugins-data-public.querystringinputprops.prepend.md) | <code>any</code> | | | ||
| [query](./kibana-plugin-plugins-data-public.querystringinputprops.query.md) | <code>Query</code> | | | ||
| [screenTitle](./kibana-plugin-plugins-data-public.querystringinputprops.screentitle.md) | <code>string</code> | | | ||
| [size](./kibana-plugin-plugins-data-public.querystringinputprops.size.md) | <code>SuggestionsListSize</code> | | | ||
|
11 changes: 11 additions & 0 deletions
11
...s/data/public/kibana-plugin-plugins-data-public.querystringinputprops.onblur.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [QueryStringInputProps](./kibana-plugin-plugins-data-public.querystringinputprops.md) > [onBlur](./kibana-plugin-plugins-data-public.querystringinputprops.onblur.md) | ||
|
||
## QueryStringInputProps.onBlur property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
onBlur?: () => void; | ||
``` |
11 changes: 11 additions & 0 deletions
11
...data/public/kibana-plugin-plugins-data-public.querystringinputprops.onchange.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [QueryStringInputProps](./kibana-plugin-plugins-data-public.querystringinputprops.md) > [onChange](./kibana-plugin-plugins-data-public.querystringinputprops.onchange.md) | ||
|
||
## QueryStringInputProps.onChange property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
onChange?: (query: Query) => void; | ||
``` |
11 changes: 11 additions & 0 deletions
11
...ana-plugin-plugins-data-public.querystringinputprops.onchangequeryinputfocus.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [QueryStringInputProps](./kibana-plugin-plugins-data-public.querystringinputprops.md) > [onChangeQueryInputFocus](./kibana-plugin-plugins-data-public.querystringinputprops.onchangequeryinputfocus.md) | ||
|
||
## QueryStringInputProps.onChangeQueryInputFocus property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
onChangeQueryInputFocus?: (isFocused: boolean) => void; | ||
``` |
11 changes: 11 additions & 0 deletions
11
...data/public/kibana-plugin-plugins-data-public.querystringinputprops.onsubmit.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [QueryStringInputProps](./kibana-plugin-plugins-data-public.querystringinputprops.md) > [onSubmit](./kibana-plugin-plugins-data-public.querystringinputprops.onsubmit.md) | ||
|
||
## QueryStringInputProps.onSubmit property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
onSubmit?: (query: Query) => void; | ||
``` |
Oops, something went wrong.