Skip to content

Commit 344b803

Browse files
Merge branch 'master' into fleet/fix-double-header-in-add-integration
2 parents 5b92696 + 01a4860 commit 344b803

File tree

890 files changed

+25634
-13187
lines changed

Some content is hidden

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

890 files changed

+25634
-13187
lines changed

docs/developer/getting-started/monorepo-packages.asciidoc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ yarn kbn watch-bazel
7070
- @kbn/apm-utils
7171
- @kbn/babel-code-parser
7272
- @kbn/babel-preset
73+
- @kbn/cli-dev-mode
7374
- @kbn/config
7475
- @kbn/config-schema
7576
- @kbn/crypto
@@ -86,6 +87,8 @@ yarn kbn watch-bazel
8687
- @kbn/logging
8788
- @kbn/mapbox-gl
8889
- @kbn/monaco
90+
- @kbn/optimizer
91+
- @kbn/plugin-helpers
8992
- @kbn/rule-data-utils
9093
- @kbn/securitysolution-es-utils
9194
- @kbn/securitysolution-hook-utils

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ readonly links: {
106106
};
107107
readonly search: {
108108
readonly sessions: string;
109+
readonly sessionLimits: string;
109110
};
110111
readonly indexPatterns: {
111112
readonly introduction: string;

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

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/development/core/server/kibana-plugin-core-server.statusservicesetup.set.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,7 @@ set(status$: Observable<ServiceStatus>): void;
2424

2525
## Remarks
2626

27+
The first emission from this Observable should occur within 30s, else this plugin's status will fallback to `unavailable` until the first emission.
28+
2729
See the [StatusServiceSetup.derivedStatus$](./kibana-plugin-core-server.statusservicesetup.derivedstatus_.md) API for leveraging the default status calculation that is provided by Core.
2830

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.esfilters.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ esFilters: {
1313
FILTERS: typeof FILTERS;
1414
FilterStateStore: typeof FilterStateStore;
1515
buildEmptyFilter: (isPinned: boolean, index?: string | undefined) => import("../common").Filter;
16-
buildPhrasesFilter: (field: import("../common").IFieldType, params: any[], indexPattern: import("../common").IIndexPattern) => import("../common").PhrasesFilter;
17-
buildExistsFilter: (field: import("../common").IFieldType, indexPattern: import("../common").IIndexPattern) => import("../common").ExistsFilter;
18-
buildPhraseFilter: (field: import("../common").IFieldType, value: any, indexPattern: import("../common").IIndexPattern) => import("../common").PhraseFilter;
16+
buildPhrasesFilter: (field: import("../common").IFieldType, params: any[], indexPattern: import("../common").MinimalIndexPattern) => import("../common").PhrasesFilter;
17+
buildExistsFilter: (field: import("../common").IFieldType, indexPattern: import("../common").MinimalIndexPattern) => import("../common").ExistsFilter;
18+
buildPhraseFilter: (field: import("../common").IFieldType, value: any, indexPattern: import("../common").MinimalIndexPattern) => import("../common").PhraseFilter;
1919
buildQueryFilter: (query: any, index: string, alias: string) => import("../common").QueryStringFilter;
20-
buildRangeFilter: (field: import("../common").IFieldType, params: import("../common").RangeFilterParams, indexPattern: import("../common").IIndexPattern, formattedValue?: string | undefined) => import("../common").RangeFilter;
20+
buildRangeFilter: (field: import("../common").IFieldType, params: import("../common").RangeFilterParams, indexPattern: import("../common").MinimalIndexPattern, formattedValue?: string | undefined) => import("../common").RangeFilter;
2121
isPhraseFilter: (filter: any) => filter is import("../common").PhraseFilter;
2222
isExistsFilter: (filter: any) => filter is import("../common").ExistsFilter;
2323
isPhrasesFilter: (filter: any) => filter is import("../common").PhrasesFilter;

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.eskuery.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
esKuery: {
1111
nodeTypes: import("../common/es_query/kuery/node_types").NodeTypes;
1212
fromKueryExpression: (expression: any, parseOptions?: Partial<import("../common").KueryParseOptions>) => import("../common").KueryNode;
13-
toElasticsearchQuery: (node: import("../common").KueryNode, indexPattern?: import("../common").IIndexPattern | undefined, config?: Record<string, any> | undefined, context?: Record<string, any> | undefined) => import("@kbn/common-utils").JsonObject;
13+
toElasticsearchQuery: (node: import("../common").KueryNode, indexPattern?: import("../common").MinimalIndexPattern | undefined, config?: Record<string, any> | undefined, context?: Record<string, any> | undefined) => import("@kbn/common-utils").JsonObject;
1414
}
1515
```

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.esquery.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
esQuery: {
1111
buildEsQuery: typeof buildEsQuery;
1212
getEsQueryConfig: typeof getEsQueryConfig;
13-
buildQueryFromFilters: (filters: import("../common").Filter[] | undefined, indexPattern: import("../common").IIndexPattern | undefined, ignoreFilterIfFieldNotInIndex?: boolean) => {
13+
buildQueryFromFilters: (filters: import("../common").Filter[] | undefined, indexPattern: import("../common").MinimalIndexPattern | undefined, ignoreFilterIfFieldNotInIndex?: boolean) => {
1414
must: never[];
1515
filter: import("../common").Filter[];
1616
should: never[];

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.iindexpattern.fields.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.iindexpattern.id.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.iindexpattern.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,15 @@
1212
<b>Signature:</b>
1313

1414
```typescript
15-
export interface IIndexPattern
15+
export interface IIndexPattern extends MinimalIndexPattern
1616
```
1717
1818
## Properties
1919
2020
| Property | Type | Description |
2121
| --- | --- | --- |
2222
| [fieldFormatMap](./kibana-plugin-plugins-data-public.iindexpattern.fieldformatmap.md) | <code>Record&lt;string, SerializedFieldFormat&lt;unknown&gt; &#124; undefined&gt;</code> | |
23-
| [fields](./kibana-plugin-plugins-data-public.iindexpattern.fields.md) | <code>IFieldType[]</code> | |
2423
| [getFormatterForField](./kibana-plugin-plugins-data-public.iindexpattern.getformatterforfield.md) | <code>(field: IndexPatternField &#124; IndexPatternField['spec'] &#124; IFieldType) =&gt; FieldFormat</code> | Look up a formatter for a given field |
25-
| [id](./kibana-plugin-plugins-data-public.iindexpattern.id.md) | <code>string</code> | |
2624
| [timeFieldName](./kibana-plugin-plugins-data-public.iindexpattern.timefieldname.md) | <code>string</code> | |
2725
| [title](./kibana-plugin-plugins-data-public.iindexpattern.title.md) | <code>string</code> | |
2826
| [type](./kibana-plugin-plugins-data-public.iindexpattern.type.md) | <code>string</code> | Type is used for identifying rollup indices, otherwise left undefined |

0 commit comments

Comments
 (0)