Last active
October 24, 2019 12:43
-
-
Save marcduiker/81fd1483d3377b8c22f892002b30b82f to your computer and use it in GitHub Desktop.
Log Analytics query to get various properties of Function App instances incl its dependencies.
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
requests | | |
project timestamp, id, operation_Id, operation_Name, duration, cloud_RoleName, cloud_RoleInstance | | |
where cloud_RoleName =~ 'FUNCTION_APP_NAME' | | |
join kind= inner (dependencies | project target, duration, performanceBucket, operation_Id) on operation_Id | | |
order by duration desc | | |
take 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment