We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e4077cb + 0bb5407 commit 72e4faeCopy full SHA for 72e4fae
1 file changed
samples/features/azure-arc/troubleshooting/hybrid-compute-extension-last-connect.kql
@@ -0,0 +1,7 @@
1
+resources
2
+ | where type =~ 'microsoft.hybridcompute/machines/extensions'
3
+ | where properties.type in ('WindowsAgent.SqlServer','LinuxAgent.SqlServer')
4
+ | parse id with * '/providers/Microsoft.HybridCompute/machines/' machineName '/extensions/' *
5
+ | parse properties with * 'timestampUTC : ' timestampUTC ';' *
6
+ | project timestampUTC, subscriptionId, resourceGroup, machineName
7
+ | order by timestampUTC desc
0 commit comments