Skip to content

Append List Processor

Refael Mizrahi edited this page Jan 20, 2022 · 5 revisions

Append List [appendList]

This processor allows you to append additional data to a list (array) field, it supports templates.

  • path (the path to the field to add, doted fqdn)
  • values - array of values to add, i.e. values: ["val1","val2"]

Example

{
  "steps": [
    {
      "appendList": {
        "config": {
          "path": "geoip.coordinates",
          "values": [
            "{{geoip.longitude}}",
            "{{geoip.latitude}}"
          ]
        }
      }
    }
  ]
}
Clone this wiki locally