MACROMEDIA COLDFUSION MX 61-CFML Reference page 500

Cfml reference
Hide thumbs Also See for COLDFUSION MX 61-CFML:
Table of Contents

Advertisement

Field
ReqTimedOut
BytesIn
BytesOut
AvgQueueTime For the last two HTTP requests (current and previous), the average length of time
AvgReqTime
AvgDBTime
cachepops
Example
<!--- This example gets and displays metric data from Windows NT PerfMonitor -
-->
<cfset pmData = GetMetricData( "PERF_MONITOR" ) >
<cfoutput>
Current PerfMonitor data is: <p>
InstanceName:#pmData.InstanceName# <p>
PageHits:#pmData.PageHits# <p>
ReqQueued: #pmData.ReqQueued# <p>
DBHits: #pmData.DBHits# <p>
ReqRunning: #pmData.ReqRunning# <p>
ReqTimedOut: #pmData.ReqTimedOut# <p>
BytesIn: #pmData.BytesIn# <p>
BytesOut: #pmData.BytesOut# <p>
AvgQueueTime: #pmData.AvgQueueTime# <p>
AvgReqTime: #pmData.AvgReqTime# <p>
AvgDBTime: #pmData.AvgDBTime# <p>
</cfoutput>
500
Chapter 3: ColdFusion Functions
Description
Number of HTTP requests that timed out while in the staging queue or during
processing.
Number of bytes in HTTP requests to ColdFusion MX
Number of bytes in HTTP responses from ColdFusion MX
the request waited in the staging queue.
For the last two HTTP requests (current and previous), the average length of time
the server required to process the request
For the last two HTTP requests (current and previous), the average length of time
the server took to process CFQueries in the request.
This parameter is deprecated.ColdFusion automatically sets its value to -1.

Advertisement

Table of Contents
loading

This manual is also suitable for:

Coldfusion mx

Table of Contents