Skip to content

Commit b4182e0

Browse files
Merge branch 'master' into add-brace-json-import
2 parents 1bd5bd2 + 82ba41c commit b4182e0

File tree

230 files changed

+3052
-1128
lines changed

Some content is hidden

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

230 files changed

+3052
-1128
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,8 +381,9 @@ x-pack/plugins/telemetry_collection_xpack/schema/xpack_plugins.json @elastic/kib
381381
**/*.scss @elastic/kibana-design
382382
#CC# /packages/kbn-ui-framework/ @elastic/kibana-design
383383

384-
# Core design
384+
# Core UI design
385385
/src/plugins/dashboard/**/*.scss @elastic/kibana-core-ui-designers
386+
/src/plugins/embeddable/**/*.scss @elastic/kibana-core-ui-designers
386387
/x-pack/plugins/canvas/**/*.scss @elastic/kibana-core-ui-designers
387388
/x-pack/plugins/spaces/**/*.scss @elastic/kibana-core-ui-designers
388389
/x-pack/plugins/security/**/*.scss @elastic/kibana-core-ui-designers
244 KB
Loading

docs/apm/troubleshooting.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ the values in `http.request.cookies` are not indexed and thus not searchable.
157157

158158
*Ensure an index pattern exists*
159159
As a first step, you should ensure the correct index pattern exists.
160-
In Kibana, navigate to *Management > Kibana > Index Patterns*.
160+
Open the main menu, then click *Stack Management > Index Patterns*.
161161
In the pattern list, you should see an apm index pattern; The default is `apm-*`.
162162
If you don't, the index pattern doesn't exist. See <<no-apm-data-found>> for information on how to fix this problem.
163163

docs/canvas/canvas-tutorial.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ For this tutorial, you'll need to add the <<add-sample-data, Sample eCommerce or
1414

1515
Your first step to working with Canvas is to create a workpad.
1616

17-
. Open the menu, then go to *Canvas*.
17+
. Open the main menu, then click *Canvas*.
1818

1919
. On the *Canvas workpads* page, click *Create workpad*.
2020

docs/dev-tools/console/console.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Console enables you to interact with the REST API of {es}. You can:
77
* View API documentation
88
* Get your request history
99

10-
To get started, open the menu, go to *Dev Tools*, then click *Console*.
10+
To get started, open the main menu, click *Dev Tools*, then click *Console*.
1111

1212
[role="screenshot"]
1313
image::dev-tools/console/images/console.png["Console"]

docs/dev-tools/grokdebugger/index.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ is automatically enabled in {kib}.
3535
NOTE: If you're using {stack-security-features}, you must have the `manage_pipeline`
3636
permission to use the Grok Debugger.
3737

38-
. Open the menu, go to *Dev Tools*, then click *Grok Debugger*.
38+
. Open the main menu, click *Dev Tools*, then click *Grok Debugger*.
3939
. In *Sample Data*, enter a message that is representative of the data that you
4040
want to parse. For example:
4141
+

docs/dev-tools/painlesslab/index.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ process {ref}/docs-reindex.html[reindexed data], define complex
1212
<<watcher-create-advanced-watch, Watcher conditions>>,
1313
and work with data in other contexts.
1414

15-
To get started, open the menu, go to *Dev Tools*, then click *Painless Lab*.
15+
To get started, open the main menu, click *Dev Tools*, then click *Painless Lab*.
1616

1717
image::dev-tools/painlesslab/images/painless-lab.png[Painless Lab]

docs/dev-tools/searchprofiler/getting-started.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[[profiler-getting-started]]
33
=== Getting Started
44

5-
The {searchprofiler} is automatically enabled in {kib}. From the menu, go to *Dev Tools*, then click *Search Profiler*
5+
The {searchprofiler} is automatically enabled in {kib}. Open the main menu, click *Dev Tools*, then click *Search Profiler*
66
to get started.
77

88
{searchprofiler} displays the names of the indices searched, the shards in each index,

docs/development/plugins/data/server/kibana-plugin-plugins-data-server.indexpatternsfetcher._constructor_.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ Constructs a new instance of the `IndexPatternsFetcher` class
99
<b>Signature:</b>
1010

1111
```typescript
12-
constructor(callDataCluster: LegacyAPICaller);
12+
constructor(elasticsearchClient: ElasticsearchClient, allowNoIndices?: boolean);
1313
```
1414

1515
## Parameters
1616

1717
| Parameter | Type | Description |
1818
| --- | --- | --- |
19-
| callDataCluster | <code>LegacyAPICaller</code> | |
19+
| elasticsearchClient | <code>ElasticsearchClient</code> | |
20+
| allowNoIndices | <code>boolean</code> | |
2021

docs/development/plugins/data/server/kibana-plugin-plugins-data-server.indexpatternsfetcher.getfieldsforwildcard.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ getFieldsForWildcard(options: {
1313
pattern: string | string[];
1414
metaFields?: string[];
1515
fieldCapsOptions?: {
16-
allowNoIndices: boolean;
16+
allow_no_indices: boolean;
1717
};
1818
}): Promise<FieldDescriptor[]>;
1919
```
@@ -22,7 +22,7 @@ getFieldsForWildcard(options: {
2222

2323
| Parameter | Type | Description |
2424
| --- | --- | --- |
25-
| options | <code>{</code><br/><code> pattern: string &#124; string[];</code><br/><code> metaFields?: string[];</code><br/><code> fieldCapsOptions?: {</code><br/><code> allowNoIndices: boolean;</code><br/><code> };</code><br/><code> }</code> | |
25+
| options | <code>{</code><br/><code> pattern: string &#124; string[];</code><br/><code> metaFields?: string[];</code><br/><code> fieldCapsOptions?: {</code><br/><code> allow_no_indices: boolean;</code><br/><code> };</code><br/><code> }</code> | |
2626

2727
<b>Returns:</b>
2828

0 commit comments

Comments
 (0)