NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: terryd on July 13, 2016, 12:49:41 AM
-
I have the attached performance breakdown on one of my applications.
Is there a way to establish from within Nettalk what procedures are causing the delays in the <5 group.
I am hoping somewhere in webhandler where these values are calculated is the place.
-
Note this is for build 9.12 (which you don't have yet.)
The embed point would be in WebHandler, in the
.PerfEndThreadTime method, after the parent call. The value returned from the parent call is the time taken.
at that point you can use one of;
! self.UserURL ! contains page name and relative path, no parameters
! self.RequestFileName ! contains page name and full local path, no parameters
! self.PageName ! contains page name with no path
! self.WholeURL ! contains pagename and parameters (no path)
! self.RequestHost ! contains the site name as used on the url.
and log as you wish.
cheers
Bruce
-
Thanks Bruce.
Sounds just what I need.