Reputation: 532
I have an ASP.NET Core web app on Azure. I'm using Azure Portal, of course. It is running fine, no problems.
Here is my question: Where in the Portal can I find out how many visitors the website has had today?
I've looked into Application Insights, but it looks like a large amount of study and work just to answer a simple, ordinary question: How many visitors today?
Any help will be appreciated.
Upvotes: 2
Views: 5166
Reputation: 29950
I see you mentioned application insights. And for your case, it's the easy and convenient way, just a few steps.
1.Create an application insights:
2.In azure portal, nav to your web app -> in the left blade, select "Application Insights", and click "Turn on site extension" -> fill in necessary fields -> click Apply button:
3.Now everything is ready, if you want to see how many users visit your site, just nav to the application insights -> in the left blade, click Users:
Upvotes: 4
Reputation: 72171
There is no such a metric available for Azure App Services, closest you can get is the number of requests. You can look at the metrics if you open the metrics blade of the App Service
Upvotes: 2