gpt4 book ai didi

azure - 从 CustomEvent 过滤数据

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

我在 azure Insights 中以自定义事件格式保存了数据。现在,我需要在我的网站中创建一个仪表板页面,该页面将从见解中提取数据并显示该数据的图表。问题是我如何根据自定义事件中保存的数据过滤数据。例如基于自定义事件或自定义数据。

请向我提供任何可以让我了解 $filer、$search、$query 如何工作的资源吗?我在这里https://dev.applicationinsights.io/quickstart但看起来还不够。

我尝试添加过滤器,例如startswith(customEvent/name, 'BotMessageReceived')https://dev.applicationinsights.io/apiexplorer/events但它不起作用。是说“运行查询时出现问题”,我有自定义事件,其名称以 BotMessageReceived 开头

谢谢达尔维尔

最佳答案

更新:没有 like 运算符,如果您想使用时间戳作为过滤器,您应该使用以下三种方法之一:

    customEvents 
| where timestamp >= datetime('2018-11-23T00:00:00.000') and timestamp <=
datetime('2018-11-23T23:59:00.000')


customEvents
| where tostring(timestamp) contains "2018-12-11"


customEvents
| where timestamp between(datetime('2018-11-23T00:00:00.000') ..
datetime('2018-11-23T23:59:00.000') )
<小时/>

请使用这个:

customEvents
| where name startswith "BotMessageReceived"

如果你使用上面提到的 api,你可以使用:

    https://api.applicationinsights.io/v1/apps/Your_application_id/query?
query=customEvents | where name startswith "BotMessageReceived"

它在我身边工作。

关于azure - 从 CustomEvent 过滤数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53755613/

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