Package akka.remote

Class RemoteLogMarker


  • public class RemoteLogMarker
    extends java.lang.Object
    This is public with the purpose to document the used markers and properties of log events. No guarantee that it will remain binary compatible, but the marker names and properties are considered public API and will not be changed without notice.
    • Constructor Summary

      Constructors 
      Constructor Description
      RemoteLogMarker()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static LogMarker connect​(Address remoteAddress, scala.Option<java.lang.Object> remoteAddressUid)
      Marker "akkaConnect" of log event when outbound connection is attempted.
      static LogMarker disconnected​(Address remoteAddress, scala.Option<java.lang.Object> remoteAddressUid)
      Marker "akkaDisconnected" of log event when outbound connection is closed.
      static LogMarker failureDetectorGrowing​(java.lang.String remoteAddress)
      Marker "akkaFailureDetectorGrowing" of log event when failure detector heartbeat interval is growing too large.
      static LogMarker quarantine​(Address remoteAddress, scala.Option<java.lang.Object> remoteAddressUid)
      Marker "akkaQuarantine" of log event when a node is quarantined.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • RemoteLogMarker

        public RemoteLogMarker()
    • Method Detail

      • failureDetectorGrowing

        public static LogMarker failureDetectorGrowing​(java.lang.String remoteAddress)
        Marker "akkaFailureDetectorGrowing" of log event when failure detector heartbeat interval is growing too large.

        Parameters:
        remoteAddress - The address of the node that the failure detector is monitoring. Included as property "akkaRemoteAddress".
      • quarantine

        public static LogMarker quarantine​(Address remoteAddress,
                                           scala.Option<java.lang.Object> remoteAddressUid)
        Marker "akkaQuarantine" of log event when a node is quarantined.

        Parameters:
        remoteAddress - The address of the node that is quarantined. Included as property "akkaRemoteAddress".
        remoteAddressUid - The address of the node that is quarantined. Included as property "akkaRemoteAddressUid".
      • connect

        public static LogMarker connect​(Address remoteAddress,
                                        scala.Option<java.lang.Object> remoteAddressUid)
        Marker "akkaConnect" of log event when outbound connection is attempted.

        Parameters:
        remoteAddress - The address of the connected node. Included as property "akkaRemoteAddress".
        remoteAddressUid - The address of the connected node. Included as property "akkaRemoteAddressUid".
      • disconnected

        public static LogMarker disconnected​(Address remoteAddress,
                                             scala.Option<java.lang.Object> remoteAddressUid)
        Marker "akkaDisconnected" of log event when outbound connection is closed.

        Parameters:
        remoteAddress - The address of the disconnected node. Included as property "akkaRemoteAddress".
        remoteAddressUid - The address of the disconnected node. Included as property "akkaRemoteAddressUid".