Skip to content

Commit 37be78b

Browse files
authored
[DOCS] Fix case of ingest processor titles (#61024) (#61040)
Converts page headings to sentence case. Adds a title abbreviation.
1 parent c5fbc80 commit 37be78b

34 files changed

+161
-34
lines changed

docs/reference/ingest/processors/append.asciidoc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
[[append-processor]]
2-
=== Append Processor
2+
=== Append processor
3+
++++
4+
<titleabbrev>Append</titleabbrev>
5+
++++
6+
7+
38
Appends one or more values to an existing array if the field already exists and it is an array.
49
Converts a scalar to an array and appends one or more values to it if the field exists and it is a scalar.
510
Creates an array containing the provided values if the field doesn't exist.

docs/reference/ingest/processors/bytes.asciidoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[[bytes-processor]]
2-
=== Bytes Processor
2+
=== Bytes processor
3+
++++
4+
<titleabbrev>Bytes</titleabbrev>
5+
++++
6+
37
Converts a human readable byte value (e.g. 1kb) to its value in bytes (e.g. 1024). If the field is an array of strings, all members of the array will be converted.
48

59
Supported human readable units are "b", "kb", "mb", "gb", "tb", "pb" case insensitive. An error will occur if

docs/reference/ingest/processors/circle.asciidoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
[role="xpack"]
22
[testenv="basic"]
33
[[ingest-circle-processor]]
4-
=== Circle Processor
4+
=== Circle processor
5+
++++
6+
<titleabbrev>Circle</titleabbrev>
7+
++++
8+
59
Converts circle definitions of shapes to regular polygons which approximate them.
610

711
[[circle-processor-options]]

docs/reference/ingest/processors/convert.asciidoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[[convert-processor]]
2-
=== Convert Processor
2+
=== Convert processor
3+
++++
4+
<titleabbrev>Convert</titleabbrev>
5+
++++
6+
37
Converts a field in the currently ingested document to a different type, such as converting a string to an integer.
48
If the field value is an array, all members will be converted.
59

docs/reference/ingest/processors/csv.asciidoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[[csv-processor]]
2-
=== CSV Processor
2+
=== CSV processor
3+
++++
4+
<titleabbrev>CSV</titleabbrev>
5+
++++
6+
37
Extracts fields from CSV line out of a single text field within a document. Any empty field in CSV will be skipped.
48

59
[[csv-options]]

docs/reference/ingest/processors/date-index-name.asciidoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
[[date-index-name-processor]]
2-
=== Date Index Name Processor
2+
=== Date index name processor
3+
++++
4+
<titleabbrev>Date index name</titleabbrev>
5+
++++
36

47
The purpose of this processor is to point documents to the right time based index based
58
on a date or timestamp field in a document by using the <<date-math-index-names, date math index name support>>.

docs/reference/ingest/processors/date.asciidoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
[[date-processor]]
2-
=== Date Processor
2+
=== Date processor
3+
++++
4+
<titleabbrev>Date</titleabbrev>
5+
++++
36

47
Parses dates from fields, and then uses the date or timestamp as the timestamp for the document.
58
By default, the date processor adds the parsed date as a new field called `@timestamp`. You can specify a

docs/reference/ingest/processors/dissect.asciidoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[[dissect-processor]]
2-
=== Dissect Processor
2+
=== Dissect processor
3+
++++
4+
<titleabbrev>Dissect</titleabbrev>
5+
++++
6+
37

48
Similar to the <<grok-processor,Grok Processor>>, dissect also extracts structured fields out of a single text field
59
within a document. However unlike the <<grok-processor,Grok Processor>>, dissect does not use

docs/reference/ingest/processors/dot-expand.asciidoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
[[dot-expand-processor]]
2-
=== Dot Expander Processor
2+
=== Dot expander processor
3+
++++
4+
<titleabbrev>Dot expander</titleabbrev>
5+
++++
36

47
Expands a field with dots into an object field. This processor allows fields
58
with dots in the name to be accessible by other processors in the pipeline.

docs/reference/ingest/processors/drop.asciidoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[[drop-processor]]
2-
=== Drop Processor
2+
=== Drop processor
3+
++++
4+
<titleabbrev>Drop</titleabbrev>
5+
++++
6+
37
Drops the document without raising any errors. This is useful to prevent the document from
48
getting indexed based on some condition.
59

0 commit comments

Comments
 (0)