作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用以下查询从使用 AppInsights 失败并返回 400 的请求中获取 operationId 值:
requests
| project timestamp, id, operation_Name, success, resultCode, duration, operation_Id, cloud_RoleName, invocationId=customDimensions['InvocationId']
| where cloud_RoleName =~ 'xxxx' and operation_Name == 'createCase' and resultCode == 400
| order by timestamp desc
我在以下查询中使用这些 operationId 值来获取所发生事件的日志:
traces
| union exceptions
| where operation_Id == '35edbc7c13f7ac4c85fa0b8071a12b72'
| order by timestamp asc
有了这个,我得到了我想要的信息,但我需要多次编写和执行查询,所以我试图在两个查询之间进行连接但没有成功,因为我不是查询 AppInsights 的专家,而且我'我不确定如何加入工会,你能帮我吗?
最佳答案
请尝试以下查询:
requests
| project timestamp, id, operation_Name, success, resultCode, duration, operation_Id, cloud_RoleName, invocationId=customDimensions['InvocationId']
| where cloud_RoleName =~ 'xxxx' and operation_Name == 'createCase' and resultCode == 400
| join (
traces
| union exceptions
) on operation_Id
| project-away operation_Id1
| order by timestamp asc
关于 join
运算符的更多详细信息 - https://learn.microsoft.com/en-us/azure/kusto/query/joinoperator
关于join - 如何在 AppInsights 上使用 Kusto 查询语言进行内部联接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58390149/
我是一名优秀的程序员,十分优秀!