Skip to content

JSON Processor

Refael Mizrahi edited this page Apr 7, 2022 · 6 revisions

Json [json]

This processor parses a JSON string into a JSON object.

You can parse every field that comes as JSON in your log.

  • field
  • targetField (optional)

Example

{
  "steps": [
    {
      "json": {
        "config": {
          "field": "message"
        }
      }
    }
  ]
}
{
  "steps": [
    {
      "json": {
        "config": {
          "field": "message",
          "targetField": "params"
        }
      }
    }
  ]
}
Clone this wiki locally