在Azure App Insight中,如何获取从App Center跟踪的事件的属性?

时间:2018-10-25 09:29:39

标签: azure-application-insights visual-studio-app-center

我将App Center与Xamarin.Forms移动应用程序一起使用。 我使用App Center的Analytics(分析),尤其是“事件”来记录很多信息。

为了计算这些信息,我使用Azure App Insights。 我已经配置了从App Center到App Insight的导出,效果很好。

我的问题是,在App Insight中,我可以看到事件,但是看不到事件的属性。

例如,来自该文档https://docs.microsoft.com/en-us/appcenter/sdk/analytics/xamarin#custom-events 我能够看到“单击视频”事件,但看不到“类别”和“文件名”。 我如何在App Insight中获得这些信息?

还可以知道每个属性之间的关系吗?换句话说,要按跟踪的日期和时间对所有属性进行分组?

预先感谢:)

这里有两个打印屏幕来说明我的问题: App Center

Azure App Insights

1 个答案:

答案 0 :(得分:1)

您可以在Application Insights Analytics中使用此查询:

customEvents 
| where timestamp >ago(90d) 
| where name == "your custom event"

然后查看是否可以在结果中获取属性。