Skip to content

Commit b7d0635

Browse files
[manage data] Move images (#864)
Moves images per elastic/docs-builder#774 in preparation for docs-assembler.
1 parent 94f87a0 commit b7d0635

File tree

142 files changed

+591
-114
lines changed

Some content is hidden

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

142 files changed

+591
-114
lines changed

manage-data/data-store/data-streams.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Keep in mind that some features such as [Time Series Data Streams (TSDS)](../dat
3232

3333
A data stream consists of one or more [hidden](elasticsearch://reference/elasticsearch/index-settings/index-modules.md#index-hidden), auto-generated backing indices.
3434

35-
:::{image} ../../images/elasticsearch-reference-data-streams-diagram.svg
35+
:::{image} /manage-data/images/elasticsearch-reference-data-streams-diagram.svg
3636
:alt: data streams diagram
3737
:::
3838

@@ -49,7 +49,7 @@ The name pattern for the backing indices is an implementation detail and no inte
4949

5050
When you submit a read request to a data stream, the stream routes the request to all its backing indices.
5151

52-
:::{image} ../../images/elasticsearch-reference-data-streams-search-request.svg
52+
:::{image} /manage-data/images/elasticsearch-reference-data-streams-search-request.svg
5353
:alt: data streams search request
5454
:::
5555

@@ -58,7 +58,7 @@ When you submit a read request to a data stream, the stream routes the request t
5858

5959
The most recently created backing index is the data stream’s write index. The stream adds new documents to this index only.
6060

61-
:::{image} ../../images/elasticsearch-reference-data-streams-index-request.svg
61+
:::{image} /manage-data/images/elasticsearch-reference-data-streams-index-request.svg
6262
:alt: data streams index request
6363
:::
6464

manage-data/data-store/data-streams/downsampling-time-series-data-stream.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,26 +27,26 @@ Check the following sections to learn more:
2727

2828
A [time series](time-series-data-stream-tsds.md#time-series) is a sequence of observations taken over time for a specific entity. The observed samples can be represented as a continuous function, where the time series dimensions remain constant and the time series metrics change over time.
2929

30-
:::{image} ../../../images/elasticsearch-reference-time-series-function.png
30+
:::{image} /manage-data/images/elasticsearch-reference-time-series-function.png
3131
:alt: time series function
3232
:::
3333

3434
In an Elasticsearch index, a single document is created for each timestamp, containing the immutable time series dimensions, together with the metrics names and the changing metrics values. For a single timestamp, several time series dimensions and metrics may be stored.
3535

36-
:::{image} ../../../images/elasticsearch-reference-time-series-metric-anatomy.png
36+
:::{image} /manage-data/images/elasticsearch-reference-time-series-metric-anatomy.png
3737
:alt: time series metric anatomy
3838
:::
3939

4040
For your most current and relevant data, the metrics series typically has a low sampling time interval, so it’s optimized for queries that require a high data resolution.
4141

42-
:::{image} ../../../images/elasticsearch-reference-time-series-original.png
42+
:::{image} /manage-data/images/elasticsearch-reference-time-series-original.png
4343
:alt: time series original
4444
:title: Original metrics series
4545
:::
4646

4747
Downsampling works on older, less frequently accessed data by replacing the original time series with both a data stream of a higher sampling interval and statistical representations of that data. Where the original metrics samples may have been taken, for example, every ten seconds, as the data ages you may choose to reduce the sample granularity to hourly or daily. You may choose to reduce the granularity of `cold` archival data to monthly or less.
4848

49-
:::{image} ../../../images/elasticsearch-reference-time-series-downsampled.png
49+
:::{image} /manage-data/images/elasticsearch-reference-time-series-downsampled.png
5050
:alt: time series downsampled
5151
:title: Downsampled metrics series
5252
:::

manage-data/data-store/data-streams/manage-data-stream.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A value in the data retention column indicates that the data stream is managed b
1414

1515
In {{es-serverless}}, indices matching the `logs-*-*` pattern use the logsDB index mode by default. The logsDB index mode creates a [logs data stream](./logs-data-stream.md).
1616

17-
:::{image} ../../../images/serverless-management-data-stream.png
17+
:::{image} /manage-data/images/serverless-management-data-stream.png
1818
:alt: Data stream details
1919
:screenshot:
2020
:::

manage-data/data-store/data-streams/time-series-data-stream-tsds.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ A time series is a sequence of observations for a specific entity. Together, the
5050
* The price of a stock
5151
* Temperature and humidity readings from a weather sensor.
5252

53-
:::{image} ../../../images/elasticsearch-reference-time-series-chart.svg
53+
:::{image} /manage-data/images/elasticsearch-reference-time-series-chart.svg
5454
:alt: time series chart
5555
:title: Time series of weather sensor readings plotted as a graph
5656
:::
@@ -146,7 +146,7 @@ In a TSDS, each backing index, including the most recent backing index, has a ra
146146

147147
When you add a document to a TSDS, {{es}} adds the document to the appropriate backing index based on its `@timestamp` value. As a result, a TSDS can add documents to any TSDS backing index that can receive writes. This applies even if the index isn’t the most recent backing index.
148148

149-
:::{image} ../../../images/elasticsearch-reference-time-bound-indices.svg
149+
:::{image} /manage-data/images/elasticsearch-reference-time-bound-indices.svg
150150
:alt: time bound indices
151151
:::
152152

manage-data/data-store/index-basics.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Go to **{{project-settings}} → {{manage-app}} → {{index-manage-app}}**.
7373

7474
Investigate your indices and perform operations from the **Indices** view.
7575

76-
:::{image} /images/serverless-index-management-indices.png
76+
:::{image} /manage-data/images/serverless-index-management-indices.png
7777
:alt: Index Management indices
7878
:screenshot:
7979
:::
@@ -89,7 +89,7 @@ A [data stream](/manage-data/data-store/data-streams.md) lets you store append-o
8989

9090
Investigate your data streams and address lifecycle management needs in the **Data Streams** view.
9191

92-
:::{image} /images/serverless-management-data-stream.png
92+
:::{image} /manage-data/images/serverless-management-data-stream.png
9393
:alt: Data stream details
9494
:screenshot:
9595
:::
@@ -107,7 +107,7 @@ An [index template](/manage-data/data-store/templates.md) is a way to tell {{es}
107107

108108
Create, edit, clone, and delete your index templates in the **Index Templates** view. Changes made to an index template do not affect existing indices.
109109

110-
:::{image} /images/serverless-index-management-index-templates.png
110+
:::{image} /manage-data/images/serverless-index-management-index-templates.png
111111
:alt: Index templates
112112
:screenshot:
113113
:::
@@ -123,7 +123,7 @@ Create, edit, clone, and delete your index templates in the **Index Templates**
123123

124124
Create, edit, clone, and delete your component templates in the **Component Templates** view.
125125

126-
:::{image} /images/serverless-management-component-templates.png
126+
:::{image} /manage-data/images/serverless-management-component-templates.png
127127
:alt: Component templates
128128
:screenshot:
129129
:::
@@ -137,7 +137,7 @@ An [enrich policy](/manage-data/ingest/transform-enrich/data-enrichment.md#enric
137137

138138
Add data from your existing indices to incoming documents using the **Enrich Policies** view.
139139

140-
:::{image} /images/serverless-management-enrich-policies.png
140+
:::{image} /manage-data/images/serverless-management-enrich-policies.png
141141
:alt: Enrich policies
142142
:screenshot:
143143
:::

manage-data/data-store/near-real-time-search.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ Lucene, the Java libraries on which {{es}} is based, introduced the concept of p
1313

1414
Sitting between {{es}} and the disk is the filesystem cache. Documents in the in-memory indexing buffer ([Figure 1](#img-pre-refresh)) are written to a new segment ([Figure 2](#img-post-refresh)). The new segment is written to the filesystem cache first (which is cheap) and only later is it flushed to disk (which is expensive). However, after a file is in the cache, it can be opened and read just like any other file.
1515

16-
:::{image} /images/elasticsearch-reference-lucene-in-memory-buffer.png
16+
:::{image} /manage-data/images/elasticsearch-reference-lucene-in-memory-buffer.png
1717
:alt: A Lucene index with new documents in the in-memory buffer
1818
:title: A Lucene index with new documents in the in-memory buffer
1919
:name: img-pre-refresh
2020
:::
2121

2222
Lucene allows new segments to be written and opened, making the documents they contain visible to search ​without performing a full commit. This is a much lighter process than a commit to disk, and can be done frequently without degrading performance.
2323

24-
:::{image} /images/elasticsearch-reference-lucene-written-not-committed.png
24+
:::{image} /manage-data/images/elasticsearch-reference-lucene-written-not-committed.png
2525
:alt: The buffer contents are written to a segment, which is searchable, but is not yet committed
2626
:title: The buffer contents are written to a segment, which is searchable, but is not yet committed
2727
:name: img-post-refresh

manage-data/data-store/templates/index-template-management.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ applies_to:
1111

1212
Create, edit, clone, and delete your index templates in the **Index Templates** view. Changes made to an index template do not affect existing indices.
1313

14-
:::{image} ../../../images/elasticsearch-reference-management-index-templates.png
14+
:::{image} /manage-data/images/elasticsearch-reference-management-index-templates.png
1515
:alt: Index templates
1616
:screenshot:
1717
:::
@@ -28,7 +28,7 @@ In this tutorial, you’ll create an index template and use it to configure two
2828

2929
1. In the **Index Templates** view, open the **Create template** wizard.
3030

31-
:::{image} ../../../images/elasticsearch-reference-management_index_create_wizard.png
31+
:::{image} /manage-data/images/elasticsearch-reference-management_index_create_wizard.png
3232
:alt: Create wizard
3333
:screenshot:
3434
:::
@@ -45,15 +45,15 @@ In this tutorial, you’ll create an index template and use it to configure two
4545

4646
Component templates are optional. For this tutorial, do not add any component templates.
4747

48-
:::{image} ../../../images/elasticsearch-reference-management_index_component_template.png
48+
:::{image} /manage-data/images/elasticsearch-reference-management_index_component_template.png
4949
:alt: Component templates page
5050
:screenshot:
5151
:::
5252

5353
2. Define index settings. These are optional. For this tutorial, leave this section blank.
5454
3. Define a mapping that contains an [object](elasticsearch://reference/elasticsearch/mapping-reference/object.md) field named `geo` with a child [`geo_point`](elasticsearch://reference/elasticsearch/mapping-reference/geo-point.md) field named `coordinates`:
5555

56-
:::{image} ../../../images/elasticsearch-reference-management-index-templates-mappings.png
56+
:::{image} /manage-data/images/elasticsearch-reference-management-index-templates-mappings.png
5757
:alt: Mapped fields page
5858
:screenshot:
5959
:::

manage-data/data-store/text-analysis/token-graphs.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ When a [tokenizer](anatomy-of-an-analyzer.md#analyzer-anatomy-tokenizer) convert
1515

1616
Using these, you can create a [directed acyclic graph](https://en.wikipedia.org/wiki/Directed_acyclic_graph), called a *token graph*, for a stream. In a token graph, each position represents a node. Each token represents an edge or arc, pointing to the next position.
1717

18-
:::{image} ../../../images/elasticsearch-reference-token-graph-qbf-ex.svg
18+
:::{image} /manage-data/images/elasticsearch-reference-token-graph-qbf-ex.svg
1919
:alt: token graph qbf ex
2020
:::
2121

@@ -25,7 +25,7 @@ Some [token filters](anatomy-of-an-analyzer.md#analyzer-anatomy-token-filters) c
2525

2626
In the following graph, `quick` and its synonym `fast` both have a position of `0`. They span the same positions.
2727

28-
:::{image} ../../../images/elasticsearch-reference-token-graph-qbf-synonym-ex.svg
28+
:::{image} /manage-data/images/elasticsearch-reference-token-graph-qbf-synonym-ex.svg
2929
:alt: token graph qbf synonym ex
3030
:::
3131

@@ -43,7 +43,7 @@ Some tokenizers, such as the [`nori_tokenizer`](elasticsearch://reference/elasti
4343

4444
In the following graph, `domain name system` and its synonym, `dns`, both have a position of `0`. However, `dns` has a `positionLength` of `3`. Other tokens in the graph have a default `positionLength` of `1`.
4545

46-
:::{image} ../../../images/elasticsearch-reference-token-graph-dns-synonym-ex.svg
46+
:::{image} /manage-data/images/elasticsearch-reference-token-graph-dns-synonym-ex.svg
4747
:alt: token graph dns synonym ex
4848
:::
4949

@@ -60,7 +60,7 @@ A user runs a search for the following phrase using the `match_phrase` query:
6060

6161
During [search analysis](index-search-analysis.md), `dns`, a synonym for `domain name system`, is added to the query string’s token stream. The `dns` token has a `positionLength` of `3`.
6262

63-
:::{image} ../../../images/elasticsearch-reference-token-graph-dns-synonym-ex.svg
63+
:::{image} /manage-data/images/elasticsearch-reference-token-graph-dns-synonym-ex.svg
6464
:alt: token graph dns synonym ex
6565
:::
6666

@@ -88,7 +88,7 @@ This means these filters will produce invalid token graphs for streams containin
8888

8989
In the following graph, `dns` is a multi-position synonym for `domain name system`. However, `dns` has the default `positionLength` value of `1`, resulting in an invalid graph.
9090

91-
:::{image} ../../../images/elasticsearch-reference-token-graph-dns-invalid-ex.svg
91+
:::{image} /manage-data/images/elasticsearch-reference-token-graph-dns-invalid-ex.svg
9292
:alt: token graph dns invalid ex
9393
:::
9494

Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

manage-data/images/elasticsearch-reference-data-streams-diagram.svg

+1
Loading

manage-data/images/elasticsearch-reference-data-streams-index-request.svg

+1
Loading

manage-data/images/elasticsearch-reference-data-streams-search-request.svg

+1
Loading

0 commit comments

Comments
 (0)