JSON Processor - logzio/sawmill GitHub Wiki
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"
}
}
}
]
}