gpt4 book ai didi

azure - 将 PerformanceCounter 发送到 ApplicationInsights

转载 作者:行者123 更新时间:2023-12-03 02:50:34 25 4
gpt4 key购买 nike

我正在尝试手动将一些 PerformanceCounters 发送到 ApplicationInsights。

我尝试使用以下正文直接发布到 https://dc.services.visualstudio.com/v2/track:

{
"iKey": "xxxxxxx",
"time": "2019-05-23T10:22:52.9586379Z",
"name": "MetricData",
"tags": {
"ai.cloud.role": "My Test Role"
},
"data": {
"baseType": "MetricData",
"baseData": {
"metrics": [
{
"name": "performanceCounters/processCpuPercentage",
"value": 0.5,
"count": 1
}
]
}
}
}

此调用以 customMetrics 结束,我真的希望它以 performanceCounters 结束,以便我可以使用所有现有的仪表板。

我浏览了 github 存储库,但找不到实际将 perfconter 写入 json 的位置。

有什么想法吗?

谢谢!

最佳答案

更新:通过postman使用以下数据进行快速测试,运行正常。

数据:

{
"name": "Microsoft.ApplicationInsights.foo.PerformanceCounter",
"time": "2019-05-28T08:22:20.6464765-07:00",
"iKey": "xxxxx",
"tags": { "ai.internal.sdkVersion": "1.2.0.5639" },
"data": {
"baseType": "PerformanceCounterData",
"baseData": {
"ver": 2,
"categoryName": "Process",
"counterName": "% Processor Time",
"instanceName": "TestPerfCounters.vshost",
"value": 20.0318031311035
}
}
}

在 postman 中:

enter image description here

在 Azure 门户 -> 应用洞察 -> 日志中,我可以在 performanceCounters 表中找到数据。

enter image description here

<小时/>

根据此 doc 的最后一部分,请尝试将“baseType”更改为“PerformanceCounterData”

文档截图:

enter image description here

我没有时间测试它。但如果有任何问题,请告诉我。

关于azure - 将 PerformanceCounter 发送到 ApplicationInsights,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56290228/

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