gpt4 book ai didi

azure - Application Insights 日志查询获取组中的最新行

转载 作者:行者123 更新时间:2023-12-02 06:30:24 25 4
gpt4 key购买 nike

我正在尝试在 Application Insights 中查找组中每个成员的最新行。

这是查询:

traces | 
where timestamp > ago(1h) |
where message startswith "TEST DONE" |
order by timestamp desc nulls last |
extend json=parse_json(substring(message,10)) |
summarize any(timestamp, tostring(json.status)) by tostring(json.testKey)

它确实只返回一行,但它不是最新的,它是一组可能的行中的任意随机行。

最佳答案

我认为您正在寻找 arg_max 函数?

https://learn.microsoft.com/en-us/azure/kusto/query/arg-max-aggfunction

类似于:

traces | 
where timestamp > ago(1h) |
where message startswith "TEST DONE" |
order by timestamp desc nulls last |
extend json=parse_json(substring(message,10)) |
extend testKey = tostring(json.testKey) |
extend status = tostring(json.status) |
summarize arg_max(timestamp, status) by testKey

关于azure - Application Insights 日志查询获取组中的最新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53128017/

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