Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/lua/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Azure数据浏览器:多选参数“;选择全部";返回所有可能的选项_Azure_Azure Data Explorer_Kql - Fatal编程技术网

Azure数据浏览器:多选参数“;选择全部";返回所有可能的选项

Azure数据浏览器:多选参数“;选择全部";返回所有可能的选项,azure,azure-data-explorer,kql,Azure,Azure Data Explorer,Kql,在Azure Data Explorer(dashboards,通过URL:dataexplorer.Azure.com/dashboards/的web访问)中,如果选中“全选”选项,则多选参数将返回空(isempty()==true)。但是,如果选择了“全选”选项,我需要知道所有选项。有办法做到这一点吗 下面是multiselect参数输入的一个查询示例。您将看到“in”过滤器意味着我需要multiselect参数的所有选项/值的完整列表 Events | where FilteredItem

在Azure Data Explorer(dashboards,通过URL:dataexplorer.Azure.com/dashboards/的web访问)中,如果选中“全选”选项,则多选参数将返回空(isempty()==true)。但是,如果选择了“全选”选项,我需要知道所有选项。有办法做到这一点吗

下面是multiselect参数输入的一个查询示例。您将看到“in”过滤器意味着我需要multiselect参数的所有选项/值的完整列表

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)

你能澄清一下你在用什么用户体验吗?不同的客户端可能有不同的方式将UX元素信息发送到查询中。我是一个用户,对界面比较新。这是我访问的基本URL:这是否回答了我使用的UX的问题?