gpt4 book ai didi

azure - 使用 ODATA 从 Application Insights REST API 获取最旧的记录

转载 作者:行者123 更新时间:2023-12-03 01:40:46 25 4
gpt4 key购买 nike

我们希望在应用程序洞察中获取最旧的可用事件,但即使我们按时间戳排序,我们也始终会获取最后的事件。这只是订购的结果。

https://api.applicationinsights.io/v1/apps/[id]/events/customEvents?$count=true&$filter=timestamp gt 2000-01-01T00:00:00&$select=timestamp, user/id, customEvent/name&$orderBy=timestamp asc&$top=100

最佳答案

请使用这种查询,它在我这边工作:

https://api.applicationinsights.io/v1/apps/your_app_id/query?query=customEvents | where timestamp >= datetime('2018-12-11T00:00:00.000')| project timestamp ,name| order by timestamp asc| take 20

以及 postman 的测试结果: enter image description here

关于azure - 使用 ODATA 从 Application Insights REST API 获取最旧的记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53774756/

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