This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| KubePodInventory | |
| | where ClusterName == "prod-aks-cluster" | |
| | where isnotempty(Computer) // eliminate unscheduled pods | |
| | where PodStatus in ('Running') | |
| | extend podLabels = parse_json (PodLabel) | |
| | where podLabels[0]['app.kubernetes.io/instance'] == "payment-service" | |
| | where Namespace == "payment-ns" | |
| | extend ActualContainerName=tostring(split(ContainerName, '/')[1]) | |
| | extend InstanceName=strcat(ClusterId, '/', PodUid, '/', ActualContainerName) | |
| | distinct Name, InstanceName |