uppercase.asciidoc 789 B

123456789101112131415161718192021222324
  1. [[uppercase-processor]]
  2. === Uppercase Processor
  3. Converts a string to its uppercase equivalent.
  4. [[uppercase-options]]
  5. .Uppercase Options
  6. [options="header"]
  7. |======
  8. | Name | Required | Default | Description
  9. | `field` | yes | - | The field to make uppercase
  10. | `target_field` | no | `field` | The field to assign the converted value to, by default `field` is updated in-place
  11. | `ignore_missing` | no | `false` | If `true` and `field` does not exist or is `null`, the processor quietly exits without modifying the document
  12. include::common-options.asciidoc[]
  13. |======
  14. [source,js]
  15. --------------------------------------------------
  16. {
  17. "uppercase": {
  18. "field": "foo"
  19. }
  20. }
  21. --------------------------------------------------
  22. // NOTCONSOLE