> What's the easiest way to track the 'footprint' of a CF > page? It's memory usage, CPU usage, etc? Is it at all > possible in a page by page basis? I'm getting a memory hit > that I need to track it down. It's not timing out nor > going over the 'alert' limit.
I don't think the server is really capable of it... I remember having a conversation with someone once about monitoring memory utilization and being told that even Java internally isn't really capable of measuring its own memory consumption on a per-object sort of basis -- you can know how much memory the JVM is using, but beyond that you're pretty (read completely) limited. That being said, on memory consumption, if you're religious about using request variables, you could possibly use something in the OnRequestEnd.cfm which digs through all the variables in the request scope and adds the length of all string variables together. Problem with this of course is that if you use any CFC's that pretty much eliminates the ability to determine anything about their memory consumption. If you're not using CFC's or custom tags you could do the same thing with the variables scope. Granted, cycling through a whole scope like that is going to be another process hit, so you wouldn't want to run it for very long, but it might give you an idea where to look. I admit, it's a stab in the dark, but it's all I got. :) s. isaac dealey 954.522.6080 new epoch : isn't it time for a change? add features without fixtures with the onTap open source framework http://macromedia.breezecentral.com/p49777853/ http://www.sys-con.com/author/?id=4806 http://www.fusiontap.com ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200337 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

