@ManagedMetric(metricType = MetricType.GAUGE, displayName = "Active Handler Count")
 public long getActiveHandlerCountLong() {
   int count = 0;
   for (MessageHandlerMetrics monitor : this.handlers) {
     count += monitor.getActiveCountLong();
   }
   return count;
 }