Created
May 13, 2021 14:45
-
-
Save ernestoguimaraes/12641d38b5587d30db06e8d4dbb85892 to your computer and use it in GitHub Desktop.
Application Insights - The code counts all instances created for each of your App Services in multiple Application Insights
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 | |
app('ADD YOU APP INSIGHTS NAME 1').performanceCounters, | |
app('ADD YOU APP INSIGHTS NAME 2').performanceCounters | |
| summarize Instancias = dcount(cloud_RoleInstance) by cloud_RoleName | |
|order by Instancias desc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment