Forum Discussion

JoVuon's avatar
JoVuon
Copper Contributor
Oct 15, 2020
Solved

How to Extract "Load balancing type" from Log Analytics or Resource Explorer

Hi,   I'm trying to get the value of "Load balancing type" (Public/Private) as shown in the Properties blade under a Load-Balancer via KQL from either Resource Explorer or from a table available wi...
  • hspinto's avatar
    Oct 15, 2020

    JoVuon 

     

    this property is not exposed explicitly, but you can infer the LB type by looking at the Frontend IP Configurations and determine if its Public or Internal by checking if it has a Public IP or not. The Az Resource Graph query below makes it clearer, I guess:

     

    resources
    | where type =~ 'Microsoft.Network/loadBalancers'
    | mvexpand FrontendIPs = properties.frontendIPConfigurations
    | extend loadBalancerType = iif(isempty(FrontendIPs.properties.publicIPAddress),"Internal","Public"), skuName=tostring(sku.name)
    | summarize by id, name, skuName, location, loadBalancerType, resourceGroup, subscriptionId

     

     

Resources