应用程序洞察请求 table client_Type

Application insights requests table client_Type

在 application insights 中,我 运行 针对 requests table:

以下查询
requests 
| where timestamp > ago(30d)
| where resultCode contains "401"
| order by timestamp

client_Type 列仅包含 PC 值。 PC 和移动设备(智能手机和 PDA)都调用监视的 API。我需要查明是否有任何失败的 401 呼叫是从移动设备发出的。

我尝试用谷歌搜索可能的值并找到此页面 https://docs.microsoft.com/en-us/azure/azure-monitor/reference/tables/requests(这没有帮助)。 client_type 列中的哪些值表示移动设备?有没有其他方法区分PC和移动设备?

可以你的问题吗?

我假设你想知道 client_Type,比如 pc,iphone(ios),移动 phone(android), pad... 所以也许 OS 类型 可以帮助划分客户。

requests
 | where client_OS has "microsoft"

对了,根据this doc,好像只有2个client_type的enum值:browser or pc?