Miyamoto Musashi
Miyamoto Musashi

Reputation: 532

Azure portal: How to find today's visitors count of my Azure web app?

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

Answers (2)

Ivan Glasenberg
Ivan Glasenberg

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:

enter image description here

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:

enter image description here

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:

enter image description here

Upvotes: 4

4c74356b41
4c74356b41

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

Related Questions