Forum Discussion
Finding a specific application name in Azure with Kusto
- Jul 13, 2021
I'm not sure if you have setup App Insights - look here: https://docs.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview
Using the Demo data, you can see many Examples in the Queries blade https://ms.portal.azure.com/#blade/Microsoft_Azure_Monitoring_Logs/DemoLogsBlade
also see: AzureMonitorCommunity/Azure Services/Application Insights at master ยท microsoft/AzureMonitorCommunity (github.com)
If you know the app name, you could search all the Tables for it. This is a poor query, but will list any tables we find the app called "Home Page" in.
search "Home Page"
| summarize count() by Type
You can then swap to that Table, and improve the query i.e, assuming the app was found in the above query in the AppPageView table, use:
AppPageViews
| where Name == "Home Page"
I'm not sure if you have setup App Insights - look here: https://docs.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview
Using the Demo data, you can see many Examples in the Queries blade https://ms.portal.azure.com/#blade/Microsoft_Azure_Monitoring_Logs/DemoLogsBlade
also see: AzureMonitorCommunity/Azure Services/Application Insights at master ยท microsoft/AzureMonitorCommunity (github.com)
If you know the app name, you could search all the Tables for it. This is a poor query, but will list any tables we find the app called "Home Page" in.
search "Home Page"
| summarize count() by Type
You can then swap to that Table, and improve the query i.e, assuming the app was found in the above query in the AppPageView table, use:
AppPageViews
| where Name == "Home Page"
- therealkristapsJul 13, 2021Copper ContributorThanks Clive. This is enough. ๐ Thanks a lot for helping out.