Skip to content

Commit eebbc7b

Browse files
authored
[DOCS] Remove 'step' from headings (#76753) (#82614)
(cherry picked from commit e246e1c)
1 parent 99c802f commit eebbc7b

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

docs/reference/data-streams/set-up-a-data-stream.asciidoc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
To set up a data stream, follow these steps:
66

7-
* <<create-index-lifecycle-policy>>
8-
* <<create-component-templates>>
9-
* <<create-index-template>>
10-
* <<create-data-stream>>
11-
* <<secure-data-stream>>
7+
. <<create-index-lifecycle-policy>>
8+
. <<create-component-templates>>
9+
. <<create-index-template>>
10+
. <<create-data-stream>>
11+
. <<secure-data-stream>>
1212

1313
You can also <<convert-index-alias-to-data-stream,convert an index alias to
1414
a data stream>>.
@@ -19,7 +19,7 @@ IMPORTANT: If you use {fleet} or {agent}, skip this tutorial. {fleet} and
1919

2020
[discrete]
2121
[[create-index-lifecycle-policy]]
22-
=== Step 1. Create an index lifecycle policy
22+
=== Create an index lifecycle policy
2323

2424
While optional, we recommend using {ilm-init} to automate the management of your
2525
data stream's backing indices. {ilm-init} requires an index lifecycle policy.
@@ -84,7 +84,7 @@ PUT _ilm/policy/my-lifecycle-policy
8484

8585
[discrete]
8686
[[create-component-templates]]
87-
=== Step 2. Create component templates
87+
=== Create component templates
8888

8989
// tag::ds-create-component-templates[]
9090
A data stream requires a matching index template. In most cases, you compose
@@ -162,7 +162,7 @@ PUT _component_template/my-settings
162162

163163
[discrete]
164164
[[create-index-template]]
165-
=== Step 3. Create an index template
165+
=== Create an index template
166166

167167
// tag::ds-create-index-template[]
168168
Use your component templates to create an index template. Specify:
@@ -204,7 +204,7 @@ PUT _index_template/my-index-template
204204

205205
[discrete]
206206
[[create-data-stream]]
207-
=== Step 4. Create the data stream
207+
=== Create the data stream
208208

209209
// tag::ds-create-data-stream[]
210210
<<add-documents-to-a-data-stream,Indexing requests>> add documents to a data
@@ -245,7 +245,7 @@ PUT _data_stream/my-data-stream
245245

246246
[discrete]
247247
[[secure-data-stream]]
248-
=== Step 5. Secure the data stream
248+
=== Secure the data stream
249249

250250
include::{xes-repo-dir}/security/authorization/alias-privileges.asciidoc[tag=data-stream-security]
251251

docs/reference/getting-started.asciidoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This guide helps beginners learn how to:
1111

1212
[discrete]
1313
[[run-elasticsearch]]
14-
=== Step 1. Run {es}
14+
=== Run {es}
1515

1616
The simplest way to set up {es} is to create a managed deployment with {ess} on
1717
{ecloud}. If you prefer to manage your own test environment, you can install and
@@ -22,7 +22,7 @@ include::{es-repo-dir}/tab-widgets/quick-start-install-widget.asciidoc[]
2222

2323
[discrete]
2424
[[send-requests-to-elasticsearch]]
25-
=== Step 2. Send requests to {es}
25+
=== Send requests to {es}
2626

2727
You send data and other requests to {es} using REST APIs. This lets you interact
2828
with {es} using any client that sends HTTP requests, such as
@@ -33,7 +33,7 @@ include::{es-repo-dir}/tab-widgets/api-call-widget.asciidoc[]
3333

3434
[discrete]
3535
[[add-data]]
36-
=== Step 3. Add data
36+
=== Add data
3737

3838
You add data to {es} as JSON objects called documents. {es} stores these
3939
documents in searchable indices.
@@ -112,7 +112,7 @@ PUT logs-my_app-default/_bulk
112112

113113
[discrete]
114114
[[qs-search-data]]
115-
=== Step 4. Search data
115+
=== Search data
116116

117117
Indexed documents are available for search in near real-time. The following
118118
search matches all log entries in `logs-my_app-default` and sorts them by
@@ -487,7 +487,7 @@ To keep exploring, index more data to your data stream and check out <<common-se
487487

488488
[discrete]
489489
[[clean-up]]
490-
=== Step 5. Clean up
490+
=== Clean up
491491

492492
When you're done, delete your test data stream and its backing indices.
493493

docs/reference/how-to/use-elasticsearch-for-time-series-data.asciidoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ using {kib} and other {stack} features.
77

88
[discrete]
99
[[set-up-data-tiers]]
10-
=== Step 1. Set up data tiers
10+
=== Set up data tiers
1111

1212
{es}'s <<index-lifecycle-management,{ilm-init}>> feature uses <<data-tiers,data
1313
tiers>> to automatically move older data to nodes with less expensive hardware
@@ -31,7 +31,7 @@ include::{es-repo-dir}/tab-widgets/data-tiers-widget.asciidoc[]
3131

3232
[discrete]
3333
[[register-snapshot-repository]]
34-
=== Step 2. Register a snapshot repository
34+
=== Register a snapshot repository
3535

3636
The cold and frozen tiers can use <<searchable-snapshots,{search-snaps}>> to
3737
reduce local storage costs.
@@ -44,7 +44,7 @@ include::{es-repo-dir}/tab-widgets/snapshot-repo-widget.asciidoc[]
4444

4545
[discrete]
4646
[[create-edit-index-lifecycle-policy]]
47-
=== Step 3. Create or edit an index lifecycle policy
47+
=== Create or edit an index lifecycle policy
4848

4949
A <<data-streams,data stream>> stores your data across multiple backing
5050
indices. {ilm-init} uses an <<ilm-index-lifecycle,index lifecycle policy>> to
@@ -63,7 +63,7 @@ include::{es-repo-dir}/tab-widgets/ilm-widget.asciidoc[]
6363

6464
[discrete]
6565
[[create-ts-component-templates]]
66-
=== Step 4. Create component templates
66+
=== Create component templates
6767

6868
TIP: If you use {fleet} or {agent}, skip to <<search-visualize-your-data>>.
6969
{fleet} and {agent} use built-in templates to create data streams for you.
@@ -73,19 +73,19 @@ include::{es-repo-dir}/data-streams/set-up-a-data-stream.asciidoc[tag=ds-create-
7373

7474
[discrete]
7575
[[create-ts-index-template]]
76-
=== Step 5. Create an index template
76+
=== Create an index template
7777

7878
include::{es-repo-dir}/data-streams/set-up-a-data-stream.asciidoc[tag=ds-create-index-template]
7979

8080
[discrete]
8181
[[add-data-to-data-stream]]
82-
=== Step 6. Add data to a data stream
82+
=== Add data to a data stream
8383

8484
include::{es-repo-dir}/data-streams/set-up-a-data-stream.asciidoc[tag=ds-create-data-stream]
8585

8686
[discrete]
8787
[[search-visualize-your-data]]
88-
=== Step 7. Search and visualize your data
88+
=== Search and visualize your data
8989

9090
To explore and search your data in {kib}, open the main menu and select
9191
**Discover**. See {kib}'s {kibana-ref}/discover.html[Discover documentation].

0 commit comments

Comments
 (0)