Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > Meaning of time-taken value for ASP pages in w3c format log files

Reply
Thread Tools

Meaning of time-taken value for ASP pages in w3c format log files

 
 
Simon Wadsworth
Guest
Posts: n/a
 
      11-08-2004
My application uses VB6 WebClasses to handle the UI, so all requests come in
via a stub ASP page.

I would like to know the time taken for the request to be processed. I am
trying to use the time-taken value in the IIS log files by I am unclear as to
the precise meaning of the value recorded.

Using a test WebClass on a development PC (Win2K Pro/SP4) the value recorded
in the IIS log files seems to vary:

1. If Response.Buffer=True, then the time recorded is the amount of time
spent in the WebClass call.

2. If Response.Buffer=False, then the time recorded is the amount of time
spent in the WebClass call PLUS the amount of time required to send the
response data to the client browser.

However, on our production servers the Response.Buffer=True is always used
but the times recorded seen to indicate that they include the data transfer
time as well. i.e. low bandwith client accesses have a larger time-taken than
local LAN users for an equivalent volume of data.

Additionally, I was my understanding that when Buffering was used with an
ASP page the sc-bytes value was not recorded. Again, on the production server
this value IS being recorded and seems accurate.

The production servers are W2K AS/SP4 using HTTPS, Basic Authentication and
Certificates.

Does anyone have any definitive information on this?

Many Thanks
 
Reply With Quote
 
 
 
 
Steve Radich \(BitShop, Inc.\)
Guest
Posts: n/a
 
      11-10-2004
If memory serves the time-taken is the total time, including transfer, as
you said. This isn't meant really for performance troubleshooting of your
pages.

You can use a third party component like asptime to grab the server time
before/after your code and either record it to ram, or record it to a
database somewhere.

Depending on what you are doing exactly you could even get time taken and
return it to the client to say how long their request took (you don't have
to display it, but you could return it so you can enable debugging on the
client to show it).

One component for asp is asptime which is free and stable -
http://www.kamath.com/downloads/default.asp?DLOAD=2 - That's no relation to
me nor BitShop, but we've used it a few times.

Steve Radich - Hosting, Colocation, Troubleshooting IIS, NT, Exchange, etc.
BitShop, Inc. - http://www.bitshop.com - IIS Experts since 1996

"Simon Wadsworth" <> wrote in
message news:F28D2B51-DB92-4F6E-851D-...
> My application uses VB6 WebClasses to handle the UI, so all requests come
> in
> via a stub ASP page.
>
> I would like to know the time taken for the request to be processed. I am
> trying to use the time-taken value in the IIS log files by I am unclear as
> to
> the precise meaning of the value recorded.
>
> Using a test WebClass on a development PC (Win2K Pro/SP4) the value
> recorded
> in the IIS log files seems to vary:
>
> 1. If Response.Buffer=True, then the time recorded is the amount of time
> spent in the WebClass call.
>
> 2. If Response.Buffer=False, then the time recorded is the amount of time
> spent in the WebClass call PLUS the amount of time required to send the
> response data to the client browser.
>
> However, on our production servers the Response.Buffer=True is always used
> but the times recorded seen to indicate that they include the data
> transfer
> time as well. i.e. low bandwith client accesses have a larger time-taken
> than
> local LAN users for an equivalent volume of data.
>
> Additionally, I was my understanding that when Buffering was used with an
> ASP page the sc-bytes value was not recorded. Again, on the production
> server
> this value IS being recorded and seems accurate.
>
> The production servers are W2K AS/SP4 using HTTPS, Basic Authentication
> and
> Certificates.
>
> Does anyone have any definitive information on this?
>
> Many Thanks



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Understanding search queries, semantics, and "Meaning" ...aren't weall looking for meaning? 5lvqbwl02@sneakemail.com Python 4 01-14-2009 02:28 PM
My.Log.WriteException not writing to Event Log with ASP.Net 2.0 Tom Wingert ASP .Net Web Services 0 01-12-2006 06:46 PM
DTD to Schema (W3C): Is it possible to combine datatyping at element level and attribute value specifications??? Ingrid XML 0 08-03-2004 12:26 PM
W3C Validator Icon and W3C Valdiator page Frank HTML 9 05-03-2004 09:32 AM
Need help on the Permissions needed to log to Event Log from ASP.NET? Henrik_the_boss ASP .Net 0 11-05-2003 10:14 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57