public interface MessageHandlerMetrics
| Modifier and Type | Method and Description |
|---|---|
int |
getActiveCount() |
Statistics |
getDuration() |
int |
getErrorCount() |
int |
getHandleCount() |
double |
getMaxDuration() |
double |
getMeanDuration() |
double |
getMinDuration() |
java.lang.String |
getName() |
java.lang.String |
getSource() |
double |
getStandardDeviationDuration() |
void |
reset() |
@ManagedOperation void reset()
@ManagedMetric(metricType=COUNTER,
displayName="Handler Execution Count")
int getHandleCount()
@ManagedMetric(metricType=COUNTER,
displayName="Handler Error Count")
int getErrorCount()
@ManagedMetric(metricType=GAUGE,
displayName="Handler Mean Duration in Milliseconds")
double getMeanDuration()
@ManagedMetric(metricType=GAUGE,
displayName="Handler Min Duration in Milliseconds")
double getMinDuration()
@ManagedMetric(metricType=GAUGE,
displayName="Handler Max Duration in Milliseconds")
double getMaxDuration()
@ManagedMetric(metricType=GAUGE,
displayName="Handler Standard Deviation Duration in Milliseconds")
double getStandardDeviationDuration()
@ManagedMetric(metricType=GAUGE,
displayName="Handler Active Execution Count")
int getActiveCount()
Statistics getDuration()
java.lang.String getName()
java.lang.String getSource()