应用程序洞察 - 如何按自定义维度排序

时间:2017-04-13 12:22:42

标签: azure azure-application-insights ms-app-analytics

我想根据所有实体中存在的customDimension.MyCustomProperty对查询结果进行排序,并且是一个数字。我怎么能这样做?

1 个答案:

答案 0 :(得分:26)

我建议首先extend使用customDimension设置结果集。然后,您必须将新列转换为字符串,int或double。原因是customDimensions被视为动态列

一个简单的例子:

traces
| extend sortKey = toint(customDimensions.MyCustomProperty)
| order by sortKey asc

投射选项包括:

  • 的ToString()
  • toint()
  • todouble()

如果您想在实际排序后删除排序键,可以project-away新列。