Correct, it won't tell you what CF is currently chewing on. It would be brief, you would see the reads as it pages the file into memory and then nothing after that. You can set the file filter to *.cfm and see which cfm files are accessed.
Also, you wouldn't see many file accesses if trusted cache was turned on in the Administrator as the files aren't re-read from disk if they've already been read into memory by the CFAS. I just tried using Sys-Internals' Process Explorer there now which gives you a list of open files for a process but it seems to be restricted to DLL's and binaries. To solve your problem though, you'd probably be better off writing some debug code inside the problematic template. The cf_debug tag is quite handy for debugging iterative code as it displays a snapshot of variables in a new pop-up every time it's called. HTH, Kevin -----Original Message----- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: Friday, October 26, 2001 15:05 To: CF-Talk Subject: RE: Running Requests? Wouldn't the file only be accessed briefly and not show during the length of the request? The file isn't "open" while it's being processed, right? > If your server is NT/W2K you could try the filemon tool at: > > http://www.sysinternals.com/ntw2k/source/filemon.shtml > > -----Original Message----- > From: Tony Schreiber [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 26, 2001 12:34 > To: CF-Talk > Subject: RE: Running Requests? > > > Well, for one, I want to see what cf pages are being hit in real time, > but mostly because if I have an errant template or something > spiralling out of control, I want to find out which one it is. > > I was writing one page not too long ago, can't remember what I was > doing, but as soon as it would run, cfas memory usage would skyrocket > until the server hung... It was immediately apparent which script was > causing the commotion... > > > > > > Is there any way to see what templates are currently being > > > > > processed? > > > > > > > > I don't think this is exposed by any of the performance monitor > > > > data. > > > > > > Any other way? > > > > There's no way of which I'm aware that would give you real-time > > access > > > to that information. It might be useful to explain why you're > > interested in that. > > > > Dave Watts, CTO, Fig Leaf Software > > http://www.figleaf.com/ > > voice: (202) 797-5496 > > fax: (202) 797-5444 > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

