Append List Processor - logzio/sawmill GitHub Wiki

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": "my_list",
          "values": [
            "{{field1}}",
            "{{field2}}"
          ]
        }
      }
    }
  ]
}