diff --git a/docs/user-guide/data-hub/log-parsing/split-json-array.md b/docs/user-guide/data-hub/log-parsing/split-json-array.md index e325fcbc..276cfa0b 100644 --- a/docs/user-guide/data-hub/log-parsing/split-json-array.md +++ b/docs/user-guide/data-hub/log-parsing/split-json-array.md @@ -15,8 +15,7 @@ When log data is sent with **nested objects** in an array, it **cannot** be used Example of log data that **can** be used for alerts and visualizations: ```json -{ - "nested_arr": [ +"array_field": [ { "field": "test" }, @@ -24,13 +23,13 @@ Example of log data that **can** be used for alerts and visualizations: "field": "test2" } ] -} ``` Example of log data that **cannot** be used for alerts or visualizations: ```json -"array_field": [ +{ + "nested_arr": [ { "field": "test" }, @@ -38,6 +37,7 @@ Example of log data that **cannot** be used for alerts or visualizations: "field": "test2" } ] +} ```