Search code examples
azureazure-application-insights

Origin point of application insights data in Azure?


I have enabled application insights on a couple of web service end points. Is there a way to check which end point the application insights log data comes from? Thank you.


Solution

  • I used url as filter in order to filter the query from the logs. Here is my query

    requests  
    |where url contains "https://webapp12408.azurewebsites.net"  
    

    enter image description here

    enter image description here