check no. of users and sessions on Web Servers
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
On Nov 28, 10:35 pm, "Hassan" <has... [at] test.com> 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
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
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" <w3.4you [at] gmail.com> wrote in message
news:b50de6ad-a7e3-494f-82fb-1001fafbbb22 [at] e10g2000prf.google groups.com...
> On Nov 28, 10:35 pm, "Hassan" <has... [at] test.com> 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
Hassan wrote:
> Whats stateful vs stateless ?
http://en.wikipedia.org/wiki/Stateless_server
Andrew
Re: check no. of users and sessions on Web Servers
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" <hassan [at] test.com> wrote in message
news:%23BxLMIlMIHA.2064 [at] 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
>