gpt4 book ai didi

Azure 数据资源管理器 : Multi-Select Parameter "Select All" return all possible options instead

转载 作者:行者123 更新时间:2023-12-05 06:11:41 24 4
gpt4 key购买 nike

在 Azure 数据资源管理器(仪表板,通过 Web 访问 URL:dataexplorer.azure.com/dashboards/)中,如果“全选”,多选参数将返回空 (isempty() == true)选项被选中。但是,如果选择“全选”选项,我需要知道所有选项。有办法做到这一点吗?

这是我的 Kusto 查询的示例,多选参数输入到其中。您将看到“in”过滤器意味着我需要多选参数的所有选项/值的完整列表。

Events
| where FilteredItem in (_multiselectParameter)
| where Timestamp between(_startTime.._endTime)
| summarize event_count = count() by bin(Timestamp, make_timespan(_timeSpan))

预先感谢您的帮助!

最佳答案

考虑到“全选”选项,编写Where子句的方法如下:

| where FilteredItem in (_multiselectParameter) or isempty(_multiselectParameter)

关于Azure 数据资源管理器 : Multi-Select Parameter "Select All" return all possible options instead,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63893975/

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