我有一个名为 EventInfo 的带有 json(字符串)属性的自定义事件。有时这个属性会大于事件属性上设置的 150 个字符的限制,所以我必须将它拆分为多个属性,即 EventInfo0、EventInfo1 等。
例如(为简单起见缩短)
EventInfo0: [{ "label" : "likeButton", "stat]
,
EventInfo1: [us" : "success" }]
我发现了如何在应用洞察中将 EventInfo 视为 json,例如:
customEvents
| where name == "people"
| extend Properties = todynamic(tostring(customDimensions.Properties))
| extend type=parsejson(Properties.['EventInfo'])
| mvexpand type
| project type, type.label, type.status]
有没有办法可以连接 EventInfo0 和 EventInfo1 来创建完整的 json 字符串,并像上面那样查询?