Pretty Prints a JSON field. This can be an expensive operation and you should usually do this after filtering your data — at the end of your query. This will prevent data that will be filtered out from being formatted. If the field does not contain valid JSON, the unmodified input value is stored in the output field. If no field is specified the @rawstring will be formatted.

ParameterTypeRequiredDefaultDescription
asstringoptional[a]  The name of the field to store the output in.
field[b]stringoptional[a]@rawstring The name of the field to format.
stepnumberoptional[a]2 The indentation in number of characters, minimum 2 spaces.
strictbooleanoptional[a]false If set to true only valid JSON input produce a value in the output field. By default invalid JSON is copied to the output field unmodified.

[a] Optional parameters use their default value unless explicitly set

[b] The argument name field can be omitted.

Omitted Argument Names

The argument name for field can be omitted; the following forms of this function are equivalent:

logscale
json:prettyPrint("@rawstring")

and:

logscale
json:prettyPrint(field="@rawstring")

Format JSON in the @rawstring field after filtering the data.

logscale
#type=json
| account=123
| json:prettyPrint()

Only copy valid JSON to the output field by setting strict=true. Here the field formattedJson will not be created for events with invalid JSON in message.

logscale
formattedJson := json:prettyPrint(field=message, strict=true)