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

This commit is contained in:
Joe Gallo 2023-04-13 16:34:40 -04:00 committed by GitHub
parent 991507860a
commit 9bc09d576a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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 | `target_fields` | yes | - | The array of fields to assign extracted values to
| `separator` | no | , | Separator used in CSV, has to be single character string | `separator` | no | , | Separator used in CSV, has to be single character string
| `quote` | no | " | Quote 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 | `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_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 (`""`) Empty field is one with no value (2 consecutive separators) or empty quotes (`""`)

View file

@ -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 | `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 | `prefix` | no | < | Start a redacted section with this token
| `suffix` | no | > | End 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[] include::common-options.asciidoc[]
|====== |======