https://github.com/falcosecurity/falco/pull/410 introduced a regression, where when using json output the output field of the json object itself would become json, after the first alert. For example:
The reason for this was that the inspector buffer format is set in falco_formats::format_event to properly render the output_fields property, but it wasn't being set back to PF_NORMAL. This line should be added back.
https://github.com/falcosecurity/falco/pull/410 introduced a regression, where when using json output the output field of the json object itself would become json, after the first alert. For example:
The reason for this was that the inspector buffer format is set in falco_formats::format_event to properly render the output_fields property, but it wasn't being set back to
PF_NORMAL
. This line should be added back.