check no. of users and sessions on Web Servers

check no. of users and sessions on Web Servers

am 29.11.2007 07:35:07 von hassan

How can I check no. of IIS users on our Web Servers and no. of
sessions/requests that are being processed?

Using IIS 6.0

Re: check no. of users and sessions on Web Servers

am 29.11.2007 09:35:26 von David Wang

On Nov 28, 10:35 pm, "Hassan" wrote:
> How can I check no. of IIS users on our Web Servers and no. of
> sessions/requests that are being processed?
>
> Using IIS 6.0


Not really possible with IIS by default because there is no definition
of "session" and "user" in HTTP. HTTP is stateless.

Tools which add state can be added to IIS to allow measurement of
"session" and "user" generically, regardless of application platform.

Application Platforms like ASP, ASP.Net, etc may have their own
counters to measure "sessions" and "users" because they are stateful.


//David
http://w3-4u.blogspot.com
http://blogs.msdn.com/David.Wang
//

RE: check no. of users and sessions on Web Servers

am 29.11.2007 16:57:01 von Eric Hertlein

Using perfmon you could add counters from the performance object 'Active
Server Pages'. From there you can grab 'Requests/Sec' and things like
'Session Current' and 'Sessions Total'. From the performance object 'Web
Service' you can add the counters 'Current Connections' and 'Total Method
Requests/sec'.


"Hassan" wrote:

> How can I check no. of IIS users on our Web Servers and no. of
> sessions/requests that are being processed?
>
> Using IIS 6.0
>
>
>

Re: check no. of users and sessions on Web Servers

am 30.11.2007 05:53:05 von hassan

Whats stateful vs stateless ?

I know we use ASP as I have been monitoring an ASP related object in
perfmon.

It sounds like a naive question. I am just learning how to manage IIS
Servers and I dont know anything about web programming too..

"David Wang" wrote in message
news:b50de6ad-a7e3-494f-82fb-1001fafbbb22@e10g2000prf.google groups.com...
> On Nov 28, 10:35 pm, "Hassan" wrote:
>> How can I check no. of IIS users on our Web Servers and no. of
>> sessions/requests that are being processed?
>>
>> Using IIS 6.0
>
>
> Not really possible with IIS by default because there is no definition
> of "session" and "user" in HTTP. HTTP is stateless.
>
> Tools which add state can be added to IIS to allow measurement of
> "session" and "user" generically, regardless of application platform.
>
> Application Platforms like ASP, ASP.Net, etc may have their own
> counters to measure "sessions" and "users" because they are stateful.
>
>
> //David
> http://w3-4u.blogspot.com
> http://blogs.msdn.com/David.Wang
> //

Re: check no. of users and sessions on Web Servers

am 30.11.2007 12:08:38 von Andrew Morton

Hassan wrote:
> Whats stateful vs stateless ?

http://en.wikipedia.org/wiki/Stateless_server

Andrew

Re: check no. of users and sessions on Web Servers

am 30.11.2007 18:33:39 von Trevor Benedict R

IIS Status (Freeware)
http://www.alchemy.co.nz/products/products_6_1.html

You could use this to monitor the requests realtime.

If you need more stats
http://iismonitor.motobit.com/

Regards,

Trevor Benedict
MCSD



"Hassan" wrote in message
news:%23BxLMIlMIHA.2064@TK2MSFTNGP06.phx.gbl...
> How can I check no. of IIS users on our Web Servers and no. of
> sessions/requests that are being processed?
>
> Using IIS 6.0
>