我正在查询"痕迹"在applicationInsights中。以下查询有效,返回数百个结果:
traces | where customDimensions.ESReleaseCommand contains("\"MediaInfo\":{\"Id\":192381")
但是,这些更精确的查询返回零结果:
traces | where customDimensions.ESReleaseCommand.MediaInfo.Id == 192381
traces | where customDimensions.ESReleaseCommand.MediaInfo contains("192381")
我是否需要做一些神奇的事情才能深入了解customDemension属性?