Browse Source

Fix ignore_missing docs for a couple of Ingest processors (#95244)

Joe Gallo 2 years ago
parent
commit
9bc09d576a

+ 1 - 1
docs/reference/ingest/processors/csv.asciidoc

@@ -15,7 +15,7 @@ Extracts fields from CSV line out of a single text field within a document. Any
 | `target_fields`   | yes       | -        | The array of fields to assign extracted values to
 | `separator`       | no        | ,        | Separator used in CSV, has to be single character string
 | `quote`           | no        | "        | Quote used in CSV, has to be single character string
-| `ignore_missing`  | no        | `true`   | If `true` and `field` does not exist, the processor quietly exits without modifying the document
+| `ignore_missing`  | no        | `false`  | If `true` and `field` does not exist, the processor quietly exits without modifying the document
 | `trim`            | no        | `false`  | Trim whitespaces in unquoted fields
 | `empty_value`     | no        | -        | Value used to fill empty fields, empty fields will be skipped if this is not provided.
                                              Empty field is one with no value (2 consecutive separators) or empty quotes (`""`)

+ 1 - 1
docs/reference/ingest/processors/redact.asciidoc

@@ -38,7 +38,7 @@ patterns. Legacy Grok patterns are not supported.
 | `pattern_definitions`  | no        | -                   | A map of pattern-name and pattern tuples defining custom patterns to be used by the processor. Patterns matching existing names will override the pre-existing definition
 | `prefix`               | no        | <                   | Start a redacted section with this token
 | `suffix`               | no        | >                   | End a redacted section with this token
-| `ignore_missing`       | no        | false               | If `true` and `field` does not exist or is `null`, the processor quietly exits without modifying the document
+| `ignore_missing`       | no        | `true`              | If `true` and `field` does not exist or is `null`, the processor quietly exits without modifying the document
 include::common-options.asciidoc[]
 |======