Skip to content

Commit 3572495

Browse files
committedFeb 2, 2025
Merge branch 'add-narrative-content' of github.com:elastic/docs-content into add-narrative-content
2 parents 9c721ae + 07ff9bd commit 3572495

File tree

6 files changed

+15
-16
lines changed

6 files changed

+15
-16
lines changed
 

‎docset.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
project: 'Elastic documentation'
22
exclude:
33
- 'README.md'
4-
- 'raw-migrated-files/*'
54
toc:
65
- file: index.md
76
- toc: get-started

‎explore-analyze/dashboards/building.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ mapped_pages:
1515
$$$dashboard-minimum-requirements$$$
1616
To create or edit dashboards, you first need to:
1717

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.
1919

2020
::::{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.
2222
::::
2323

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).

‎explore-analyze/dashboards/tutorials.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ mapped_pages:
77

88
Learn more about building dashboards and creating visualizations with the following tutorials.
99

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.
1111

1212

1313

‎explore-analyze/query-filter/languages/eql.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1131,7 +1131,7 @@ The async search continues to run in the background without blocking other reque
11311131
}
11321132
```
11331133

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.
11351135

11361136
```console
11371137
GET /_eql/search/FmNJRUZ1YWZCU3dHY1BIOUhaenVSRkEaaXFlZ3h4c1RTWFNocDdnY2FSaERnUTozNDE=?wait_for_completion_timeout=2s
@@ -1182,13 +1182,13 @@ GET /my-data-stream/_eql/search
11821182
}
11831183
```
11841184

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.
11861186

11871187
```console
11881188
GET /_eql/search/FmNJRUZ1YWZCU3dHY1BIOUhaenVSRkEaaXFlZ3h4c1RTWFNocDdnY2FSaERnUTozNDE=?keep_alive=5d
11891189
```
11901190

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.
11921192

11931193
```console
11941194
DELETE /_eql/search/FmNJRUZ1YWZCU3dHY1BIOUhaenVSRkEaaXFlZ3h4c1RTWFNocDdnY2FSaERnUTozNDE=
@@ -1223,7 +1223,7 @@ The response includes a search ID. `is_partial` and `is_running` are `false`, in
12231223
}
12241224
```
12251225

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:
12271227

12281228
```console
12291229
GET /_eql/search/FjlmbndxNmJjU0RPdExBTGg0elNOOEEaQk9xSjJBQzBRMldZa1VVQ2pPa01YUToxMDY=
@@ -1233,7 +1233,7 @@ Saved synchronous searches are still subject to the `keep_alive` parameter’s r
12331233

12341234
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).
12351235

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).
12371237

12381238

12391239
## Run an EQL search across clusters [run-eql-search-across-clusters]

‎manage-data/data-store/text-analysis/specify-an-analyzer.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ If you don’t typically create mappings for your indices, you can use [index te
3131
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).
3232
2. The `analysis.analyzer.default` index setting. See [Specify the default analyzer for an index](#specify-index-time-default-analyzer).
3333

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.
3535

3636

3737
## Specify the analyzer for a field [specify-index-field-analyzer]
@@ -79,22 +79,22 @@ PUT my-index-000001
7979

8080
## How {{es}} determines the search analyzer [specify-search-analyzer]
8181

82-
::::{warning}
82+
::::{warning}
8383
In most cases, specifying a different search analyzer is unnecessary. Doing so could negatively impact relevancy and result in unexpected search results.
8484

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.
8686

8787
::::
8888

8989

9090
At search time, {{es}} determines which analyzer to use by checking the following parameters in order:
9191

9292
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).
9494
3. The `analysis.analyzer.default_search` index setting. See [Specify the default search analyzer for an index](#specify-search-default-analyzer).
9595
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).
9696

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.
9898

9999

100100
## Specify the search analyzer for a query [specify-search-query-analyzer]

‎manage-data/lifecycle/index-lifecycle-management/index-management-in-kibana.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Investigate your indices and perform operations from the **Indices** view.
3131
:::
3232

3333
* 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).
3535
* 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.
3636

3737
:::{image} ../../../images/elasticsearch-reference-management_index_details.png

0 commit comments

Comments
 (0)