Interface MonitoringConfiguration
-
- All Known Subinterfaces:
InboundServicesConfiguration,OutboundServicesConfiguration
- All Known Implementing Classes:
DefaultInboundServicesConfiguration,DefaultOutboundServicesConfiguration
public interface MonitoringConfigurationDefines configuration for monitoring
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisMonitoringEnabled()Determines if monitoring is enabledbooleanisPayloadRetentionForErrorEnabled()Determines current setting of payload retention for non successful requests.booleanisPayloadRetentionForSuccessEnabled()Determines current setting of payload retention for successful requests.
-
-
-
Method Detail
-
isPayloadRetentionForSuccessEnabled
boolean isPayloadRetentionForSuccessEnabled()
Determines current setting of payload retention for successful requests.- Returns:
- true or false depending if the property is enabled or not.
-
isPayloadRetentionForErrorEnabled
boolean isPayloadRetentionForErrorEnabled()
Determines current setting of payload retention for non successful requests.- Returns:
- true or false depending if the property is enabled or not.
-
isMonitoringEnabled
boolean isMonitoringEnabled()
Determines if monitoring is enabled- Returns:
- true if monitoring is enabled, false otherwise
-
-