Azure Application Insights-使用Javascript中的自定义属性跟踪事件



我们正在使用客户端javascript SDK(通过基于片段的集成(for Application Insights来跟踪自定义事件

appInsights.trackEvent({name:"WinGame"});

如何向其中添加自定义属性?像这样的东西?!

appInsights.trackEvent({name:"WinGame", customProperties:{gameName:"Game 1", player:"my player 1"}});

如JS Azure应用程序github页面所示:

自定义属性可以通过名为参数的属性。这可以使用任何TrackAPI。

appInsights.trackEvent({   
name: 'some event',  
properties: { // accepts any type
prop1: 'string',
prop2: 123.45,
prop3: { nested: 'objects are okay too' }   
} 
}); 

相关内容

  • 没有找到相关文章

最新更新