gpt4 book ai didi

Azure 日志不包含所有数据

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

我有一个 Azure Function 和我可以看到的所有调用:

enter image description here

但是当我转到“日志”并尝试以下查询时:

traces 
| project
timestamp,
message,
operation_Name,
operation_Id,
cloud_RoleName
| where cloud_RoleName =~ 'FunctionDeviceManager' and operation_Name =~ 'FunctionAlertServiceCallback'
| order by timestamp desc
| take 2000

我看到以下结果:

enter image description here

正如我们所看到的,许多调用(例如,ID为:95ecc6d554d78fa34534813efb82abba、29b613056e582666c132de6ff73b2c2e、29b613056e582666c132de6ff73b2c2e以及许多其他调用,其中大多数)都没有显示在结果。

出了什么问题?

最佳答案

调用日志不基于traces集合中的数据。相反,它基于请求数据。您可以通过选择在 Application Insights 中运行查询

轻松查看这一点

enter image description here

它运行此查询

requests
| project
timestamp,
id,
operation_Name,
success,
resultCode,
duration,
operation_Id,
cloud_RoleName,
invocationId=customDimensions['InvocationId']
| where timestamp > ago(30d)
| where cloud_RoleName =~ 'xxx' and operation_Name =~ 'yyy'
| order by timestamp desc
| take 20

这解释了结果的差异。

现在,关于跟踪集合并不总是包含与请求相关的数据的原因:默认情况下,如果未在 host.json 文件中指定,所有类型的遥测都将受到采样,请参阅 the docs .

例如,当您使用 Visual Studio 2022 创建新的 http 触发函数时,将添加以下 host.json

{
"version": "2.0",
"logging": {
"applicationInsights": {
"samplingSettings": {
"isEnabled": true,
"excludedTypes": "Request"
}
}
}
}

如您所见,请求遥测被排除在正在采样的遥测类型之外。这可能会导致您遇到的问题:未对请求集合进行采样,而对跟踪集合进行采样。因此,某些数据不在您的查询结果列表中。

关于Azure 日志不包含所有数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73595716/

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