Skip to content

Instantly share code, notes, and snippets.

@marcduiker
Last active October 24, 2019 12:43
Show Gist options
  • Save marcduiker/81fd1483d3377b8c22f892002b30b82f to your computer and use it in GitHub Desktop.
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.
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