How could I parse the json array in Kusto?
Here is what I tried:
customEvents
| where name == "myname"
| project a = parse_json(customDimensions.Content)
| extend b = a[0].Section;
But as you can see the b
still remains empty and never gets initialized to the Section
value. While, according to the KQL documentation it should work.