Interface ManagedFailoverLoadBalancerMBean
-
- All Superinterfaces:
ManagedCounterMBean
,ManagedPerformanceCounterMBean
,ManagedProcessorMBean
public interface ManagedFailoverLoadBalancerMBean extends ManagedProcessorMBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TabularData
exceptionStatistics()
String
getExceptions()
String
getLastGoodProcessorId()
Integer
getMaximumFailoverAttempts()
Integer
getSize()
Boolean
isRoundRobin()
Boolean
isSticky()
-
Methods inherited from interface org.apache.camel.api.management.mbean.ManagedCounterMBean
getExchangesTotal, getResetTimestamp, getStartTimestamp, reset
-
Methods inherited from interface org.apache.camel.api.management.mbean.ManagedPerformanceCounterMBean
dumpStatsAsXml, getDeltaProcessingTime, getExchangesCompleted, getExchangesFailed, getExchangesInflight, getExternalRedeliveries, getFailuresHandled, getFirstExchangeCompletedExchangeId, getFirstExchangeCompletedTimestamp, getFirstExchangeFailureExchangeId, getFirstExchangeFailureTimestamp, getLastExchangeCompletedExchangeId, getLastExchangeCompletedTimestamp, getLastExchangeFailureExchangeId, getLastExchangeFailureTimestamp, getLastProcessingTime, getMaxProcessingTime, getMeanProcessingTime, getMinProcessingTime, getRedeliveries, getTotalProcessingTime, isStatisticsEnabled, setStatisticsEnabled
-
Methods inherited from interface org.apache.camel.api.management.mbean.ManagedProcessorMBean
dumpProcessorAsXml, getCamelId, getCamelManagementName, getIndex, getProcessorId, getRouteId, getState, getStepId, getSupportExtendedInformation, start, stop
-
-
-
-
Method Detail
-
getSize
@ManagedAttribute(description="Number of processors in the load balancer") Integer getSize()
-
isRoundRobin
@ManagedAttribute(description="Whether or not the failover load balancer should operate in round robin mode or not.") Boolean isRoundRobin()
-
isSticky
@ManagedAttribute(description="Whether or not the failover load balancer should operate in sticky mode or not.") Boolean isSticky()
-
getMaximumFailoverAttempts
@ManagedAttribute(description="A value to indicate after X failover attempts we should exhaust (give up).") Integer getMaximumFailoverAttempts()
-
getExceptions
@ManagedAttribute(description="The class names of the exceptions the load balancer uses (separated by comma)") String getExceptions()
-
getLastGoodProcessorId
@ManagedAttribute(description="Processor id of the last known good processor that succeed processing the exchange") String getLastGoodProcessorId()
-
exceptionStatistics
@ManagedOperation(description="Statistics of the content based router for each exception") TabularData exceptionStatistics()
-
-