コード例 #1
0
 public void recordAcceptResponseTime(
     String parentApplicationName, short parentApplicationType, int elapsedTime) {
   final ContextMetric contextMetric = this.metricRegistry.getResponseMetric();
   contextMetric.addAcceptHistogram(parentApplicationName, parentApplicationType, elapsedTime);
 }
コード例 #2
0
 public void recordUserAcceptResponseTime(int elapsedTime) {
   final ContextMetric contextMetric = this.metricRegistry.getResponseMetric();
   contextMetric.addUserAcceptHistogram(elapsedTime);
 }
コード例 #3
0
 public void recordContextMetric(int elapsedTime) {
   final ContextMetric contextMetric = this.metricRegistry.getResponseMetric();
   contextMetric.addResponseTime(elapsedTime);
 }