2018-12-20 08:04:54 -05:00
|
|
|
[[uppercase-processor]]
|
2020-08-12 11:49:54 -04:00
|
|
|
=== Uppercase processor
|
|
|
|
++++
|
|
|
|
<titleabbrev>Uppercase</titleabbrev>
|
|
|
|
++++
|
|
|
|
|
2020-03-18 08:07:49 -04:00
|
|
|
Converts a string to its uppercase equivalent. If the field is an array of strings, all members of the array will be converted.
|
2018-12-20 08:04:54 -05:00
|
|
|
|
|
|
|
[[uppercase-options]]
|
|
|
|
.Uppercase Options
|
|
|
|
[options="header"]
|
|
|
|
|======
|
|
|
|
| Name | Required | Default | Description
|
|
|
|
| `field` | yes | - | The field to make uppercase
|
|
|
|
| `target_field` | no | `field` | The field to assign the converted value to, by default `field` is updated in-place
|
|
|
|
| `ignore_missing` | no | `false` | If `true` and `field` does not exist or is `null`, the processor quietly exits without modifying the document
|
|
|
|
include::common-options.asciidoc[]
|
|
|
|
|======
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"uppercase": {
|
|
|
|
"field": "foo"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
// NOTCONSOLE
|