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
| union isfuzzy=true | |
| availabilityResults, | |
| requests, | |
| exceptions, | |
| pageViews, | |
| traces, | |
| customEvents, | |
| dependencies | |
| | where customDimensions contains "gen_ai.agent.id" | |
| | extend agentId = tostring(customDimensions["gen_ai.agent.id"]) |
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
| This Azure Resource Graph (ARG) query retrieves AKS node pool details directly from the AKS cluster resource using the embedded agentPoolProfiles schema. | |
| It extracts: | |
| Kubernetes version → currentOrchestratorVersion | |
| Node OS image version → nodeImageVersion | |
| Node OS SKU → osSKU | |
| Node count (works despite count being a reserved keyword) |
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
| #!/bin/bash | |
| set +H | |
| # Set your region | |
| REGION=eastasia # Change to your desired region | |
| # List VM SKUs in the region that support Ephemeral OS Disk and show AZ support | |
| az vm list-skus \ | |
| -l $REGION \ | |
| --all \ |