You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: explore-analyze/dashboards/building.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -15,10 +15,10 @@ mapped_pages:
15
15
$$$dashboard-minimum-requirements$$$
16
16
To create or edit dashboards, you first need to:
17
17
18
-
* have [data indexed into {{es}}](https://www.elastic.co/guide/en/elasticsearch/reference/current/getting-started-index.html) and a [data view](find-and-organize/data-views.md). A data view is a subset of your {{es}} data, and allows you to load just the right data when building a visualization or exploring it.
18
+
* have [data indexed into {{es}}](https://www.elastic.co/guide/en/elasticsearch/reference/current/getting-started-index.html) and a [data view](../find-and-organize/data-views.md). A data view is a subset of your {{es}} data, and allows you to load just the right data when building a visualization or exploring it.
19
19
20
20
::::{tip}
21
-
If you don’t have data at hand and still want to explore dashboards, you can import one of the [sample data sets](../manage-data/ingest/sample-data.md) available.
21
+
If you don’t have data at hand and still want to explore dashboards, you can import one of the [sample data sets](../../manage-data/ingest/sample-data.md) available.
22
22
::::
23
23
24
-
* have sufficient permissions on the **Dashboard** feature. If that’s not the case, you might get a read-only indicator. A {{kib}} administrator can [grant you the required privileges](../deploy-manage/users-roles/cluster-or-deployment-auth/kibana-privileges.md).
24
+
* have sufficient permissions on the **Dashboard** feature. If that’s not the case, you might get a read-only indicator. A {{kib}} administrator can [grant you the required privileges](../../deploy-manage/users-roles/cluster-or-deployment-auth/kibana-privileges.md).
Copy file name to clipboardexpand all lines: explore-analyze/dashboards/tutorials.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ mapped_pages:
7
7
8
8
Learn more about building dashboards and creating visualizations with the following tutorials.
9
9
10
-
These tutorials use [sample data](overview/kibana-quickstart.md#gs-get-data-into-kibana) available in {{kib}} as a way to get started more easily, but you can apply and adapt these instructions to your own data as well.
10
+
These tutorials use [sample data](../overview/kibana-quickstart.md#gs-get-data-into-kibana) available in {{kib}} as a way to get started more easily, but you can apply and adapt these instructions to your own data as well.
Copy file name to clipboardexpand all lines: explore-analyze/query-filter/languages/eql.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -1131,7 +1131,7 @@ The async search continues to run in the background without blocking other reque
1131
1131
}
1132
1132
```
1133
1133
1134
-
To check the progress of an async search, use the [get async EQL search API](get-async-https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search-api.html) with the search ID. Specify how long you’d like for complete results in the `wait_for_completion_timeout` parameter.
1134
+
To check the progress of an async search, use the [get async EQL search API](https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search-api.html) with the search ID. Specify how long you’d like for complete results in the `wait_for_completion_timeout` parameter.
1135
1135
1136
1136
```console
1137
1137
GET /_eql/search/FmNJRUZ1YWZCU3dHY1BIOUhaenVSRkEaaXFlZ3h4c1RTWFNocDdnY2FSaERnUTozNDE=?wait_for_completion_timeout=2s
@@ -1182,13 +1182,13 @@ GET /my-data-stream/_eql/search
1182
1182
}
1183
1183
```
1184
1184
1185
-
You can use the [get async EQL search API](get-async-https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search-api.html)'s `keep_alive` parameter to later change the retention period. The new retention period starts after the get request runs.
1185
+
You can use the [get async EQL search API](https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search-api.html)'s `keep_alive` parameter to later change the retention period. The new retention period starts after the get request runs.
1186
1186
1187
1187
```console
1188
1188
GET /_eql/search/FmNJRUZ1YWZCU3dHY1BIOUhaenVSRkEaaXFlZ3h4c1RTWFNocDdnY2FSaERnUTozNDE=?keep_alive=5d
1189
1189
```
1190
1190
1191
-
Use the [delete async EQL search API](delete-async-https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search-api.html) to manually delete an async EQL search before the `keep_alive` period ends. If the search is still ongoing, {{es}} cancels the search request.
1191
+
Use the [delete async EQL search API](https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search-api.html) to manually delete an async EQL search before the `keep_alive` period ends. If the search is still ongoing, {{es}} cancels the search request.
@@ -1223,7 +1223,7 @@ The response includes a search ID. `is_partial` and `is_running` are `false`, in
1223
1223
}
1224
1224
```
1225
1225
1226
-
Use the [get async EQL search API](get-async-https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search-api.html) to get the same results later:
1226
+
Use the [get async EQL search API](https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search-api.html) to get the same results later:
1227
1227
1228
1228
```console
1229
1229
GET /_eql/search/FjlmbndxNmJjU0RPdExBTGg0elNOOEEaQk9xSjJBQzBRMldZa1VVQ2pPa01YUToxMDY=
@@ -1233,7 +1233,7 @@ Saved synchronous searches are still subject to the `keep_alive` parameter’s r
1233
1233
1234
1234
You can also check only the status of the saved synchronous search without results by using [get async EQL status API](https://www.elastic.co/guide/en/elasticsearch/reference/current/get-async-eql-status-api.html).
1235
1235
1236
-
You can also manually delete saved synchronous searches using the [delete async EQL search API](delete-async-https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search-api.html).
1236
+
You can also manually delete saved synchronous searches using the [delete async EQL search API](https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search-api.html).
1237
1237
1238
1238
1239
1239
## Run an EQL search across clusters [run-eql-search-across-clusters]
Copy file name to clipboardexpand all lines: manage-data/data-store/text-analysis/specify-an-analyzer.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ If you don’t typically create mappings for your indices, you can use [index te
31
31
1. The [`analyzer`](https://www.elastic.co/guide/en/elasticsearch/reference/current/analyzer.html) mapping parameter for the field. See [Specify the analyzer for a field](#specify-index-field-analyzer).
32
32
2. The `analysis.analyzer.default` index setting. See [Specify the default analyzer for an index](#specify-index-time-default-analyzer).
33
33
34
-
If none of these parameters are specified, the [`standard` analyzer](analysis-standard-https://www.elastic.co/guide/en/elasticsearch/reference/current/analyzer.html) is used.
34
+
If none of these parameters are specified, the [`standard` analyzer](https://www.elastic.co/guide/en/elasticsearch/reference/current/analyzer.html) is used.
35
35
36
36
37
37
## Specify the analyzer for a field [specify-index-field-analyzer]
@@ -79,22 +79,22 @@ PUT my-index-000001
79
79
80
80
## How {{es}} determines the search analyzer [specify-search-analyzer]
81
81
82
-
::::{warning}
82
+
::::{warning}
83
83
In most cases, specifying a different search analyzer is unnecessary. Doing so could negatively impact relevancy and result in unexpected search results.
84
84
85
-
If you choose to specify a separate search analyzer, we recommend you thoroughly [test your analysis configuration](test-https://www.elastic.co/guide/en/elasticsearch/reference/current/analyzer.html) before deploying in production.
85
+
If you choose to specify a separate search analyzer, we recommend you thoroughly [test your analysis configuration](https://www.elastic.co/guide/en/elasticsearch/reference/current/analyzer.html) before deploying in production.
86
86
87
87
::::
88
88
89
89
90
90
At search time, {{es}} determines which analyzer to use by checking the following parameters in order:
91
91
92
92
1. The [`analyzer`](https://www.elastic.co/guide/en/elasticsearch/reference/current/analyzer.html) parameter in the search query. See [Specify the search analyzer for a query](#specify-search-query-analyzer).
93
-
2. The [`search_analyzer`](search-https://www.elastic.co/guide/en/elasticsearch/reference/current/analyzer.html) mapping parameter for the field. See [Specify the search analyzer for a field](#specify-search-field-analyzer).
93
+
2. The [`search_analyzer`](https://www.elastic.co/guide/en/elasticsearch/reference/current/analyzer.html) mapping parameter for the field. See [Specify the search analyzer for a field](#specify-search-field-analyzer).
94
94
3. The `analysis.analyzer.default_search` index setting. See [Specify the default search analyzer for an index](#specify-search-default-analyzer).
95
95
4. The [`analyzer`](https://www.elastic.co/guide/en/elasticsearch/reference/current/analyzer.html) mapping parameter for the field. See [Specify the analyzer for a field](#specify-index-field-analyzer).
96
96
97
-
If none of these parameters are specified, the [`standard` analyzer](analysis-standard-https://www.elastic.co/guide/en/elasticsearch/reference/current/analyzer.html) is used.
97
+
If none of these parameters are specified, the [`standard` analyzer](https://www.elastic.co/guide/en/elasticsearch/reference/current/analyzer.html) is used.
98
98
99
99
100
100
## Specify the search analyzer for a query [specify-search-query-analyzer]
Copy file name to clipboardexpand all lines: manage-data/lifecycle/index-lifecycle-management/index-management-in-kibana.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Investigate your indices and perform operations from the **Indices** view.
31
31
:::
32
32
33
33
* To show details and perform operations such as close, forcemerge, and flush, click the index name. To perform operations on multiple indices, select their checkboxes and then open the **Manage** menu. For more information on managing indices, refer to [Index APIs](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices.html).
34
-
* To filter the list of indices, use the search bar or click a badge. Badges indicate if an index is a [follower index](https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-put-follow.html), a [rollup index](https://www.elastic.co/guide/en/elasticsearch/reference/current/rollup-get-rollup-index-caps.html), or [frozen](frozen-https://www.elastic.co/guide/en/elasticsearch/reference/current/indices.html).
34
+
* To filter the list of indices, use the search bar or click a badge. Badges indicate if an index is a [follower index](https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-put-follow.html), a [rollup index](https://www.elastic.co/guide/en/elasticsearch/reference/current/rollup-get-rollup-index-caps.html), or [frozen](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices.html).
35
35
* To drill down into the index [mappings](../../data-store/mapping.md), [settings](https://www.elastic.co/guide/en/elasticsearch/reference/current/index-modules.html#index-modules-settings), and statistics, click an index name. From this view, you can navigate to **Discover** to further explore the documents in the index.
0 commit comments