在 Azure App Insight 中,如何获取从 App Center 跟踪的事件的属性?
In Azure App Insight, how to get properties of events tracked from App Center?
我将 App Center 与 Xamarin.Forms 移动应用程序一起使用。
我使用 App Center 的 Analytics,尤其是 Events 来记录很多信息。
为了计算这些信息,我使用了 Azure App Insights。
我已经配置了从 App Center 到 App Insight 的导出,它运行良好。
我的问题是,在 App Insight 中,我可以看到事件,但看不到事件的属性。
例如,来自该文档 https://docs.microsoft.com/en-us/appcenter/sdk/analytics/xamarin#custom-events
我能够看到 "Video clicked" 事件,但看不到 "Category" 和 "FileName"。
请问我怎样才能在 App Insight 中获得这些信息?
另外,是否可以知道每个属性之间的关系?换句话说,要按跟踪的日期和时间对所有属性进行分组?
提前致谢:)
这里有两个打印屏幕来说明我的问题:
您可以在 Application Insights Analytics 中使用此查询:
customEvents
| where timestamp >ago(90d)
| where name == "your custom event"
然后在结果中查看是否可以提取属性。
我将 App Center 与 Xamarin.Forms 移动应用程序一起使用。 我使用 App Center 的 Analytics,尤其是 Events 来记录很多信息。
为了计算这些信息,我使用了 Azure App Insights。 我已经配置了从 App Center 到 App Insight 的导出,它运行良好。
我的问题是,在 App Insight 中,我可以看到事件,但看不到事件的属性。
例如,来自该文档 https://docs.microsoft.com/en-us/appcenter/sdk/analytics/xamarin#custom-events 我能够看到 "Video clicked" 事件,但看不到 "Category" 和 "FileName"。 请问我怎样才能在 App Insight 中获得这些信息?
另外,是否可以知道每个属性之间的关系?换句话说,要按跟踪的日期和时间对所有属性进行分组?
提前致谢:)
这里有两个打印屏幕来说明我的问题:
您可以在 Application Insights Analytics 中使用此查询:
customEvents
| where timestamp >ago(90d)
| where name == "your custom event"
然后在结果中查看是否可以提取属性。