I’m deploying a web app in Azure, on a linux machine, using python, deploying as code. Per docs, I should be able to enable automatic instrumentation of Application Insights
I have enabled the collection on the app itself, and I confirmed that it’s pointing to the correct resource group:
But I see nothing in the Application Insights dasbhoard.
In the application insights Logs I can see the odd trace and dependency exception. But I cannot see page views or visitors or the host of other metrics that should be automatically tracked.
I tried to then implement tracking with code, using the SDK, but again, to no avail:
I SSHd into my site on Azure using CLI and I could manually run a script that printed a message to a trace logger, so I know the configurations are accurate. But I cannot understand why, under both automatic and manual implementation I cannot see page views or users.
Thank you