【发布时间】:2016-07-19 07:35:58
【问题描述】:
我在 Application Insights Analytics 中创建了几个查询来获得我想要的图表。
例子:
customEvents
| where timestamp >= ago(31d)
| where name == "Search"
| project name, customDimensions, customMeasurements, customDimensions.["Query"]
| summarize count() by tostring(customDimensions.["Query"])
| render piechart
现在我想知道是否可以将此查询/图表添加到我的 Application Insights 仪表板?我不想总是去分析工具才能看到这个特定的图表。
我一直在谷歌搜索,但没有结果。
谢谢, 托马斯
【问题讨论】:
标签: azure azure-application-insights