'Pretty prints' a JSON field. The function formats a JSON field for improved readability. This can be an expensive operation.
It is recommended to apply json:prettyPrint()
after filtering your data at the end of the query. This prevents unnecessary formatting of data that will be discarded.
Default behaviour is as follows:
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 field will be formatted.
Parameter | Type | Required | Default Value | Description |
---|---|---|---|---|
as | string | optional[a] | The name of the field to store the output in. | |
field [b] | string | optional[a] | @rawstring | The name of the field to format. |
step | number | optional[a] | 2 | The indentation in number of characters, minimum 2 spaces. |
strict | boolean | optional[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. |
Hide omitted argument names for this function
Omitted Argument NamesThe argument name for
field
can be omitted; the following forms of this function are equivalent:logscale Syntaxjson:prettyPrint("value")
and:
logscale Syntaxjson:prettyPrint(field="value")
These examples show basic structure only.
json:prettyPrint()
Examples
Click
next to an example below to get the full details.Format JSON
Format JSON in @rawstring field using the
json:prettyPrint()
function
Query
#type=json
| account=123
| json:prettyPrint()
Introduction
In this example, the json:prettyPrint()
function is used to format the @rawstring
field.
Step-by-Step
Starting with the source repository events.
- logscale
#type=json
Filters for events with the
JSON
type. - logscale
| account=123
Filters for events related to account 123.
It is recommended to filter the event set as much as possible before using the
json:prettyPrint()
function to prevent unnecessary formatting of discarded data. - logscale
| json:prettyPrint()
Formats the
JSON
content for improved readability. Without a specified field, it formats the @rawstring field.Note that if input is not valid JSON, it returns unmodified values. To prevent this, you can set a
strict
parameter. For an example of usage, see Format Only Valid JSON. Event Result set.
Summary and Results
The query is used to make JSON data more readable in the results. Formatting JSON in the @rawstring field after filtering the data is very important as it is a resource-intensive operation.
Format Only Valid JSON
Format only JSON data that is considered valid using the
json:prettyPrint()
function
Query
formattedJson := json:prettyPrint(field=message, strict=true)
Introduction
In this example, the json:prettyPrint()
function is used to format the message field
as JSON with the
strict
parameter set to true
to only process valid
JSON.
Step-by-Step
Starting with the source repository events.
- logscale
formattedJson := json:prettyPrint(field=message, strict=true)
Uses the
field
parameter to specify the message field as the source of JSON data and thestrict
parameter set totrue
to only process valid JSON.Formats the valid JSON data for improved readability and assigns the results to a new field named formattedJson.
Note that if the JSON in the message field is invalid, the formattedJson field will not be created for that event.
Event Result set.
Summary and Results
The query is used to make valid JSON data more readable in the results.
Note that without
strict
parameter
set to true
, the
json:prettyPrint()
function attempts to format even
invalid JSON, which might lead to unexpected results.