如何将 getschema 用于 customDimensions?
How do I use getschema for customDimensions?
我使用了类似
的查询
requests
| getschema
得到一个 table 包含 requests
table 中所有列的名称和类型。如何获得 requests.customDimensions
的相同结果?
看起来这可以使用 buildschema
and then transforming the output into a consumable format (thanks Dmitry Matveev 帮助我完成那篇文章来完成):
requests
| summarize schema=buildschema(customDimensions)
| mvexpand bagexpansion=array schema
| project name=schema[0], type=schema[1]
我使用了类似
的查询requests
| getschema
得到一个 table 包含 requests
table 中所有列的名称和类型。如何获得 requests.customDimensions
的相同结果?
看起来这可以使用 buildschema
and then transforming the output into a consumable format (thanks Dmitry Matveev 帮助我完成那篇文章来完成):
requests
| summarize schema=buildschema(customDimensions)
| mvexpand bagexpansion=array schema
| project name=schema[0], type=schema[1]