recently exposed to Kusto and looking to simplify results into a clean, flat table.
Brief background:
I'm parsing json that contains many different fields, but there is one specific piece of information I'm particularly interested in - Let's call the field MyField
.
In the parsed json, MyField
can actually show as MyField
, My_Field
, myfield
, 'field'. In the future, it could probably be called _my_field_
or something else similar.
I need a way coalesce the values dynamically without having to explicitly define each new naming convention. is this doable?
what I've done:
let Query01 =
Stuff
| where timestamp >= ago(90d)
| project Stuff
| evaluate bag_unpack(Stuff)
;
Query01
| project-away Stuff
| ????