Is there a real-time IIS trafic viewer (or a way to programmatically get it through C #)

I would like to get an idea of โ€‹โ€‹the web traffic that I have in the IIS box, and wondered if there is already a good real-time IIS tool there.

Ideally, I could use the usual scripting logic for.

Also, is there a way to programmatically (from C #) access this information? It seems like this can be done through performance counters or IIS log parsing, but there is certainly a better way.

+7
source share
3 answers

I ended up implementing a real-time IIS / App logging solution using Firebase (see http://blog.diniscruz.com/search/label/Firebase for a bunch of related posts, and this one for a screenshot in action: http: / /blog.diniscruz.com/2014/04/from-azure-to-firebase-could-not.html ).

It works very well, and we have real-time access to what is happening on the live website.

I can post more information about the topic you are interested in.

0
source

Good point, I need it soon too. A quick search gave me IIS Traffic Monitor and this toolkit .
Not used any of them.

+2
source

If you need an easy way to see traffic in real time, but not an IIS tool , try Google Analytics - it will view real-time active users on your site. Of course, you can also get an idea of โ€‹โ€‹historical data (over time) to get a real picture of the traffic to your site.

On the other hand, log parsing will be more accurate that you can programmatically or even โ€œold schoolโ€ report either by loading log data into Excel or SQL ....

0
source

All Articles