Interface RuntimeEndpointRegistry.Statistic
- Enclosing interface:
RuntimeEndpointRegistry
public static interface RuntimeEndpointRegistry.Statistic
Statistics gathered about the endpoint.
-
Method Summary
Modifier and TypeMethodDescriptionWhether the endpoint is used as input our outputlonggetHits()Usage of the endpoint, such as how many messages it has received / sent todefault longMaximum message body size in bytes (-1 if not available)default longMaximum message headers size in bytes (-1 if not available)default longMean message body size in bytes (-1 if not available)default longMean message headers size in bytes (-1 if not available)default longMinimum message body size in bytes (-1 if not available)default longMinimum message headers size in bytes (-1 if not available)The route id (if the endpoint is associated with a route)getUri()The endpoint uri
-
Method Details
-
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. -
getMinBodySize
default long getMinBodySize()Minimum message body size in bytes (-1 if not available)- Since:
- 4.21
-
getMaxBodySize
default long getMaxBodySize()Maximum message body size in bytes (-1 if not available)- Since:
- 4.21
-
getMeanBodySize
default long getMeanBodySize()Mean message body size in bytes (-1 if not available)- Since:
- 4.21
-
getMinHeadersSize
default long getMinHeadersSize()Minimum message headers size in bytes (-1 if not available)- Since:
- 4.21
-
getMaxHeadersSize
default long getMaxHeadersSize()Maximum message headers size in bytes (-1 if not available)- Since:
- 4.21
-
getMeanHeadersSize
default long getMeanHeadersSize()Mean message headers size in bytes (-1 if not available)- Since:
- 4.21
-