Package org.apache.camel.spi
Interface RuntimeEndpointRegistry.Statistic
-
- Enclosing interface:
- RuntimeEndpointRegistry
public static interface RuntimeEndpointRegistry.StatisticStatistics gathered about the endpoint.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDirection()Whether the endpoint is used as input our outputlonggetHits()Usage of the endpoint, such as how many messages it has received / sent toStringgetRouteId()The route id (if the endpoint is associated with a route)StringgetUri()The endpoint uri
-
-
-
Method Detail
-
getUri
String getUri()
The endpoint uri
-
getRouteId
String getRouteId()
The route id (if the endpoint is associated with a route)
-
getDirection
String getDirection()
Whether the endpoint is used as input our output The returned value can either be in or out
-
getHits
long getHits()
Usage of the endpoint, such as how many messages it has received / sent to This information is only available ifManagementStatisticsLevelis configured asManagementStatisticsLevel.Extended.
-
-