Skip to content

Commit 7af5d96

Browse files
committed
Merge branch 'master' into configure_cases_all
2 parents 742a8ea + 6a0bbcf commit 7af5d96

1,454 files changed

Lines changed: 2211 additions & 1754 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ module.exports = {
142142
},
143143
},
144144
{
145-
files: ['x-pack/legacy/plugins/ml/**/*.{js,ts,tsx}'],
145+
files: ['x-pack/plugins/ml/**/*.{js,ts,tsx}'],
146146
rules: {
147147
'react-hooks/exhaustive-deps': 'off',
148148
},

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/src/plugins/kibana_legacy/ @elastic/kibana-app
2727
/src/plugins/timelion/ @elastic/kibana-app
2828
/src/plugins/dev_tools/ @elastic/kibana-app
29-
/src/plugins/dashboard_embeddable_container/ @elastic/kibana-app
29+
/src/plugins/dashboard/ @elastic/kibana-app
3030

3131
# App Architecture
3232
/packages/kbn-interpreter/ @elastic/kibana-app-arch

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
/.es
55
.DS_Store
66
.node_binaries
7-
.native_modules
87
node_modules
98
!/src/dev/npm/integration_tests/__fixtures__/fixture1/node_modules
109
!/src/dev/notice/__fixtures__/node_modules

.i18nrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"common.ui": "src/legacy/ui",
44
"console": "src/plugins/console",
55
"core": "src/core",
6-
"dashboardEmbeddableContainer": "src/plugins/dashboard_embeddable_container",
6+
"dashboard": "src/plugins/dashboard",
77
"data": [
88
"src/legacy/core_plugins/data",
99
"src/plugins/data"

CONTRIBUTING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,8 @@ Bootstrap Kibana and install all the dependencies
171171
yarn kbn bootstrap
172172
```
173173

174+
> Node.js native modules could be in use and node-gyp is the tool used to build them. There are tools you need to install per platform and python versions you need to be using. Please see https://github.com/nodejs/node-gyp#installation and follow the guide according your platform.
175+
174176
(You can also run `yarn kbn` to see the other available commands. For more info about this tool, see https://github.com/elastic/kibana/tree/master/packages/kbn-pm.)
175177

176178
When switching branches which use different versions of npm packages you may need to run;
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; [elasticsearch](./kibana-plugin-core-server.corestart.elasticsearch.md)
4+
5+
## CoreStart.elasticsearch property
6+
7+
[ElasticsearchServiceStart](./kibana-plugin-core-server.elasticsearchservicestart.md)
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
elasticsearch: ElasticsearchServiceStart;
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
@@ -17,6 +17,7 @@ export interface CoreStart
1717
| Property | Type | Description |
1818
| --- | --- | --- |
1919
| [capabilities](./kibana-plugin-core-server.corestart.capabilities.md) | <code>CapabilitiesStart</code> | [CapabilitiesStart](./kibana-plugin-core-server.capabilitiesstart.md) |
20+
| [elasticsearch](./kibana-plugin-core-server.corestart.elasticsearch.md) | <code>ElasticsearchServiceStart</code> | [ElasticsearchServiceStart](./kibana-plugin-core-server.elasticsearchservicestart.md) |
2021
| [savedObjects](./kibana-plugin-core-server.corestart.savedobjects.md) | <code>SavedObjectsServiceStart</code> | [SavedObjectsServiceStart](./kibana-plugin-core-server.savedobjectsservicestart.md) |
2122
| [uiSettings](./kibana-plugin-core-server.corestart.uisettings.md) | <code>UiSettingsServiceStart</code> | [UiSettingsServiceStart](./kibana-plugin-core-server.uisettingsservicestart.md) |
2223

docs/development/core/server/kibana-plugin-core-server.elasticsearchservicesetup.adminclient.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@
44

55
## ElasticsearchServiceSetup.adminClient property
66

7-
A client for the `admin` cluster. All Elasticsearch config value changes are processed under the hood. See [IClusterClient](./kibana-plugin-core-server.iclusterclient.md)<!-- -->.
7+
> Warning: This API is now obsolete.
8+
>
9+
> Use [ElasticsearchServiceStart.legacy.client](./kibana-plugin-core-server.elasticsearchservicestart.legacy.md) instead.
10+
>
11+
> A client for the `admin` cluster. All Elasticsearch config value changes are processed under the hood. See [IClusterClient](./kibana-plugin-core-server.iclusterclient.md)<!-- -->.
12+
>
813
914
<b>Signature:</b>
1015

docs/development/core/server/kibana-plugin-core-server.elasticsearchservicesetup.createclient.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@
44

55
## ElasticsearchServiceSetup.createClient property
66

7-
Create application specific Elasticsearch cluster API client with customized config. See [IClusterClient](./kibana-plugin-core-server.iclusterclient.md)<!-- -->.
7+
> Warning: This API is now obsolete.
8+
>
9+
> Use [ElasticsearchServiceStart.legacy.createClient](./kibana-plugin-core-server.elasticsearchservicestart.legacy.md) instead.
10+
>
11+
> Create application specific Elasticsearch cluster API client with customized config. See [IClusterClient](./kibana-plugin-core-server.iclusterclient.md)<!-- -->.
12+
>
813
914
<b>Signature:</b>
1015

docs/development/core/server/kibana-plugin-core-server.elasticsearchservicesetup.dataclient.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@
44

55
## ElasticsearchServiceSetup.dataClient property
66

7-
A client for the `data` cluster. All Elasticsearch config value changes are processed under the hood. See [IClusterClient](./kibana-plugin-core-server.iclusterclient.md)<!-- -->.
7+
> Warning: This API is now obsolete.
8+
>
9+
> Use [ElasticsearchServiceStart.legacy.client](./kibana-plugin-core-server.elasticsearchservicestart.legacy.md) instead.
10+
>
11+
> A client for the `data` cluster. All Elasticsearch config value changes are processed under the hood. See [IClusterClient](./kibana-plugin-core-server.iclusterclient.md)<!-- -->.
12+
>
813
914
<b>Signature:</b>
1015

0 commit comments

Comments
 (0)