pf » Getting ColdFusion Server Metrics
December 16, 2003
Getting ColdFusion Server Metrics
The often forgoten function GetMetricData() function returns the same info as the cfstat utility. Here's an example:
<cfset metrics = GetMetricData("PERF_MONITOR")>
<cfoutput>
ColdFusion Server Metrics: <br>
<br>
InstanceName: #metrics.InstanceName# <br>
PageHits: #metrics.PageHits# <br>
ReqQueued: #metrics.ReqQueued# <br>
DBHits: #metrics.DBHits# <br>
ReqRunning: #metrics.ReqRunning# <br>
ReqTimedOut: #metrics.ReqTimedOut# <br>
BytesIn: #metrics.BytesIn# <br>
BytesOut: #metrics.BytesOut# <br>
AvgQueueTime: #metrics.AvgQueueTime# <br>
AvgReqTime: #metrics.AvgReqTime# <br>
AvgDBTime: #metrics.AvgDBTime# <br>
CachePops: #metrics.CachePops# <br>
Simple Load: #GetMetricData("SIMPLE_LOAD")#<br>
Prev Request Time: #GetMetricData("PREV_REQ_TIME")#ms<br>
Avg Request Time: #GetMetricData("AVG_REQ_TIME")#ms<br>
</cfoutput>
I had always thought it would be interesting to write a scheduled task to record these values in a database, and then generate reports.
Trackback Address: 101/72CAF3EE48D701C6CBB81BD0123674AF
Comments
On 01/18/2004 at 10:10:59 AM MST Brian wrote:
1
Interesting, running this on a CF5 server seems to restart the CF service. Any idea why?
On 01/20/2004 at 11:40:57 PM MST Pete Freitag wrote:
2
No idea, that should work on a CF5 server as well.
On 02/18/2004 at 1:40:53 PM MST Matt wrote:
3
Will the GetMetricData() work on the J2EE version of MX?
On 03/28/2006 at 10:05:02 AM MST Ross wrote:
4
This will work on J2EE servers, but you must initialize metrics in J2EE. See here: http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19120
On 05/05/2006 at 7:31:42 AM MDT Scott wrote:
5
Observation: On my CF5 server, it's the GetMetricData("SIMPLE_LOAD") line that seems to make the service hiccup. The other two lines ("PREV_REQ_TIME" and "AVG_REQ_TIME") work fine.
- Dear SQL Server Enterprise Manager Developer
- PostalMethods - Web Service for Snail Mail
- Mastering CFQUERYPARAM
- Google Code Search for ColdFusion
- Speaking at CFUNITED 2008
- Getting ColdFusion SQL Statements from SQL Server Trace
- CFSCRIPT Cheatsheet
- 3 New Image Effects for ColdFusion 8
Subscribe to my RSS Feed:
RSS
RSS
add to del.icio.us
Pete Freitag is a software engineer, and web developer located in











