gpt4 book ai didi

javascript - Azure Application Insights - 在 JavaScript 的自定义事件中使用自定义维度和自定义测量

转载 作者:行者123 更新时间:2023-12-02 23:13:42 25 4
gpt4 key购买 nike

我有一个用 JavaScript 编写的单页应用程序。我当前正在使用 JavaScript API 将事件记录到 Azure Application Insights 。此时,我正在使用如下代码记录事件:

let eventLog = {
name: 'Custom Event Name',
customDimensions: {
target: 'app'
},
customMeasurements: {
totalTime: '00:00:01.1234'
}
};

appInsights.trackEvent(eventLog);

当我运行代码时,我注意到自定义事件正在写入我的 Application Insights 实例。虽然 Application Insights 中显示了正确的事件名称,但我没有看到任何自定义维度或自定义度量。

如何通过 JavaScript API 将自定义维度和自定义测量以及自定义事件记录到 Azure Application Insights?

谢谢!

最佳答案

遥测对象的字段名称应分别为 propertiesmeasurements,代码如下。另外,测量项目的值应该是数字。

let eventLog = {
name: 'Custom Event Name',
properties: {
target: 'app'
},
measurements: {
totalTime: 0.34567
}
};

appInsights.trackEvent(eventLog);

enter image description here

关于javascript - Azure Application Insights - 在 JavaScript 的自定义事件中使用自定义维度和自定义测量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65005572/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com