Skip to content

Commit 9f29ed8

Browse files
Merge branch 'master' into viewer_nested
2 parents 1447485 + 827e91c commit 9f29ed8

File tree

330 files changed

+11226
-3315
lines changed

Some content is hidden

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

330 files changed

+11226
-3315
lines changed

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -529,6 +529,7 @@ module.exports = {
529529
'x-pack/test_utils/**/*',
530530
'x-pack/gulpfile.js',
531531
'x-pack/plugins/apm/public/utils/testHelpers.js',
532+
'x-pack/plugins/canvas/shareable_runtime/postcss.config.js',
532533
],
533534
rules: {
534535
'import/no-extraneous-dependencies': [

docs/apm/error-reports-watcher.asciidoc

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

docs/apm/how-to-guides.asciidoc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ Learn how to perform common APM app tasks.
88
* <<agent-configuration>>
99
* <<apm-alerts>>
1010
* <<custom-links>>
11-
* <<errors-alerts-with-watcher>>
1211
* <<filters>>
1312
* <<machine-learning-integration>>
1413
* <<advanced-queries>>
@@ -21,8 +20,6 @@ include::apm-alerts.asciidoc[]
2120

2221
include::custom-links.asciidoc[]
2322

24-
include::error-reports-watcher.asciidoc[]
25-
2623
include::filters.asciidoc[]
2724

2825
include::machine-learning.asciidoc[]

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
## AssistanceAPIResponse interface
66

7+
> Warning: This API is now obsolete.
8+
>
9+
>
710
811
<b>Signature:</b>
912

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
## AssistantAPIClientParams interface
66

7+
> Warning: This API is now obsolete.
8+
>
9+
>
710
811
<b>Signature:</b>
912

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
## DeprecationAPIClientParams interface
66

7+
> Warning: This API is now obsolete.
8+
>
9+
>
710
811
<b>Signature:</b>
912

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
## DeprecationAPIResponse interface
66

7+
> Warning: This API is now obsolete.
8+
>
9+
>
710
811
<b>Signature:</b>
912

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
## DeprecationInfo interface
66

7+
> Warning: This API is now obsolete.
8+
>
9+
>
710
811
<b>Signature:</b>
912

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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; [ElasticsearchClientConfig](./kibana-plugin-core-server.elasticsearchclientconfig.md)
4+
5+
## ElasticsearchClientConfig type
6+
7+
Configuration options to be used to create a [cluster client](./kibana-plugin-core-server.iclusterclient.md) using the [createClient API](./kibana-plugin-core-server.elasticsearchservicestart.createclient.md)
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
export declare type ElasticsearchClientConfig = Pick<ElasticsearchConfig, 'customHeaders' | 'logQueries' | 'sniffOnStart' | 'sniffOnConnectionFault' | 'requestHeadersWhitelist' | 'sniffInterval' | 'hosts' | 'username' | 'password'> & {
13+
pingTimeout?: ElasticsearchConfig['pingTimeout'] | ClientOptions['pingTimeout'];
14+
requestTimeout?: ElasticsearchConfig['requestTimeout'] | ClientOptions['requestTimeout'];
15+
ssl?: Partial<ElasticsearchConfig['ssl']>;
16+
keepAlive?: boolean;
17+
};
18+
```
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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; [ElasticsearchServiceStart](./kibana-plugin-core-server.elasticsearchservicestart.md) &gt; [client](./kibana-plugin-core-server.elasticsearchservicestart.client.md)
4+
5+
## ElasticsearchServiceStart.client property
6+
7+
A pre-configured [Elasticsearch client](./kibana-plugin-core-server.iclusterclient.md)
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
readonly client: IClusterClient;
13+
```
14+
15+
## Example
16+
17+
18+
```js
19+
const client = core.elasticsearch.client;
20+
21+
```
22+

0 commit comments

Comments
 (0)