In customDimensions
I have x number of key-value pair data (currently only two Name
and Channel
as an example in the screenshot below)
and I would like to project them to columns without explicitly specify the name of the key, so that in the future, if a new key-value pair added to the log, I don't have to go back and modify my query in order to display it as a new column.
Thank you!
The Kusto query language includes the
bag_unpack()
plugin: https://learn.microsoft.com/en-us/azure/kusto/query/bag-unpackpluginHere's an example:
Which yields: