首页 > 解决方案 > KQL / Azure Resource Graph Explorer:组合来自多条记录的值

问题描述

我正在尝试获取为 azure 资源图资源管理器中的一组负载均衡器配置的所有公共 ips 和 fqdns。我通过以下查询获得了我需要的所有数据:

Resources
| where type =~ 'Microsoft.Network/loadBalancers'
| where subscriptionId =~ '11111111-2222-3333-4444-555555555555'
| where resourceGroup =~ 'resource-group-name'
| mv-expand ipConfig=properties.frontendIPConfigurations
| project name, publicIpId = tostring(ipConfig.properties.publicIPAddress.id)
| join kind=leftouter (
    Resources
    | where type =~ 'microsoft.network/publicipaddresses'
    | project publicIpId = id, publicIpAddress = tostring(properties.ipAddress), fqdn = tostring(properties.dnsSettings.fqdn)
)
on publicIpId
| summarize by name, publicIpAddress, fqdn

但结果的形式是:

name              publicIpAddress       fqdn
outbound-lb       x.y.z.1               a domain
frontend-lb       x.y.z.2               another domain
frontend-lb       x.y.z.3               third domain
services-lb       x.y.z.4               fourth domain

我需要的是:

name              publicIpAddress       fqdn
outbound-lb       x.y.z.1               a domain
frontend-lb       x.y.z.2, x.y.z.3      another domain, third domain
services-lb       x.y.z.4               fourth domain

我一直在查看该summarize make_list()功能,但未能成功获得所需的结果!

标签: azure-data-explorerkqlazure-resource-graph

解决方案


你可以尝试替换这个:

| summarize by name, publicIpAddress, fqdn

有了这个:

| summarize publicIpAddress = strcat_array(make_set(publicIpAddress), ", "), 
            fqdn = strcat_array(make_set(fqdn), ", ")
         by name

推荐阅读