

Monitoring Incoming services
In Performance Monitoring Toolset, we have dedicated a section for monitoring incoming services to ColdFusion. There are three types of services- REST, SOAP, and RPC.
Any webservice or RPC call hitting a ColdFusion node or cluster will appear in this section and their metrics will be available.
Charts for all incoming services-
- Average Response Time – Average Response Time for all the REST/SOAP/RPC calls is calculated and displayed separately for all 3 kinds of services in timeseries graph for the timeperiod selected by the user.
- Top Slow URL’s– List of slowest distinct urls for each of the 3 categories is shown for the time period you have selected.
- HTTP Method Distribution – Pie chart containing the HTTP Methods like GET/POST/DELETE being used for services.
For example, let’s say you have registered a REST service named RestTest and written this code:
<
cfcomponent
rest=
"true"
restpath=
"restService"
>
<
cffunction
name=
"sayHello"
access=
"remote"
returntype=
"String"
httpmethod=
"GET"
>
<
cfset
rest =
"Hello World"
>
<
cfreturn
rest>
</
cffunction
>
</
cfcomponent
>
<
cfhttp
method=
"get"
port=
"8500"
result=
"res"
>
</
cfhttp
>
The URL detail page will show you the functions/tags used for the request. There you will see your method sayHello appearing alongwith hit count and time taken along with other relevant metrics for the request.
Monitoring Incoming services
In Performance Monitoring Toolset, we have dedicated a section for monitoring incoming services to ColdFusion. There are three types of services- REST, SOAP, and RPC.
Any webservice or RPC call hitting a ColdFusion node or cluster will appear in this section and their metrics will be available.
Charts for all incoming services-
- Average Response Time – Average Response Time for all the REST/SOAP/RPC calls is calculated and displayed separately for all 3 kinds of services in timeseries graph for the timeperiod selected by the user.
- Top Slow URL’s– List of slowest distinct urls for each of the 3 categories is shown for the time period you have selected.
- HTTP Method Distribution – Pie chart containing the HTTP Methods like GET/POST/DELETE being used for services.
For example, let’s say you have registered a REST service named RestTest and written this code:
<
cfcomponent
rest=
"true"
restpath=
"restService"
>
<
cffunction
name=
"sayHello"
access=
"remote"
returntype=
"String"
httpmethod=
"GET"
>
<
cfset
rest =
"Hello World"
>
<
cfreturn
rest>
</
cffunction
>
</
cfcomponent
>
<
cfhttp
method=
"get"
port=
"8500"
result=
"res"
>
</
cfhttp
>
The URL detail page will show you the functions/tags used for the request. There you will see your method sayHello appearing alongwith hit count and time taken along with other relevant metrics for the request.

- Most Recent
- Most Relevant