Package akka.cluster
Class ClusterLogMarker
- java.lang.Object
- 
- akka.cluster.ClusterLogMarker
 
- 
 public class ClusterLogMarker extends java.lang.ObjectThis 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.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classClusterLogMarker.Properties$INTERNAL API
 - 
Constructor SummaryConstructors Constructor Description ClusterLogMarker()
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static LogMarkerheartbeatStarvation()Marker "akkaHeartbeatStarvation" of log event when scheduled heartbeat was delayed.static LogMarkerjoinFailed()Marker "akkaJoinFailed" of log event when node couldn't join seed nodes.static LogMarkerleaderIncapacitated()Marker "akkaClusterLeaderIncapacitated" of log event when leader can't perform its duties.static LogMarkerleaderRestored()Marker "akkaClusterLeaderRestored" of log event when leader can perform its duties again.static LogMarkermemberChanged(UniqueAddress node, MemberStatus status)Marker "akkaMemberChanged" of log event when a member's status is changed by the leader.static LogMarkerreachable(Address node)Marker "akkaReachable" of log event when a node is marked as reachable again based no failure detector observation.static LogMarkersbrDowning(akka.cluster.sbr.DowningStrategy.Decision decision)Marker "akkaSbrDowning" of log event when Split Brain Resolver has made a downing decision.static LogMarkersbrDowningNode(UniqueAddress node, akka.cluster.sbr.DowningStrategy.Decision decision)Marker "akkaSbrDowningNode" of log event when a member is downed by Split Brain Resolver.static LogMarkersbrInstability()Marker "akkaSbrInstability" of log event when Split Brain Resolver has detected too much instability and will down all nodes.static LogMarkersbrLeaseAcquired(akka.cluster.sbr.DowningStrategy.Decision decision)Marker "akkaSbrLeaseAcquired" of log event when Split Brain Resolver has acquired the lease.static LogMarkersbrLeaseDenied(akka.cluster.sbr.DowningStrategy.Decision reverseDecision)Marker "akkaSbrLeaseDenied" of log event when Split Brain Resolver has acquired the lease.static LogMarkersbrLeaseReleased()Marker "akkaSbrLeaseReleased" of log event when Split Brain Resolver has released the lease.static LogMarkersingletonStarted()Marker "akkaClusterSingletonStarted" of log event when Cluster Singleton instance has started.static LogMarkersingletonTerminated()Marker "akkaClusterSingletonTerminated" of log event when Cluster Singleton instance has terminated.static LogMarkerunreachable(Address node)Marker "akkaUnreachable" of log event when a node is marked as unreachable based no failure detector observation.
 
- 
- 
- 
Method Detail- 
unreachablepublic static LogMarker unreachable(Address node) Marker "akkaUnreachable" of log event when a node is marked as unreachable based no failure detector observation.- Parameters:
- node- The address of the node that is marked as unreachable. Included as property "akkaRemoteAddress".
 
 - 
reachablepublic static LogMarker reachable(Address node) Marker "akkaReachable" of log event when a node is marked as reachable again based no failure detector observation.- Parameters:
- node- The address of the node that is marked as reachable. Included as property "akkaRemoteAddress".
 
 - 
heartbeatStarvationpublic static LogMarker heartbeatStarvation() Marker "akkaHeartbeatStarvation" of log event when scheduled heartbeat was delayed.
 - 
leaderIncapacitatedpublic static LogMarker leaderIncapacitated() Marker "akkaClusterLeaderIncapacitated" of log event when leader can't perform its duties. Typically because there are unreachable nodes that have not been downed.
 - 
leaderRestoredpublic static LogMarker leaderRestored() Marker "akkaClusterLeaderRestored" of log event when leader can perform its duties again.
 - 
joinFailedpublic static LogMarker joinFailed() Marker "akkaJoinFailed" of log event when node couldn't join seed nodes.
 - 
memberChangedpublic static LogMarker memberChanged(UniqueAddress node, MemberStatus status) Marker "akkaMemberChanged" of log event when a member's status is changed by the leader.- Parameters:
- node- The address of the node that is changed. Included as property "akkaRemoteAddress" and "akkaRemoteAddressUid".
- status- New member status. Included as property "akkaMemberStatus".
 
 - 
singletonStartedpublic static LogMarker singletonStarted() Marker "akkaClusterSingletonStarted" of log event when Cluster Singleton instance has started.
 - 
singletonTerminatedpublic static LogMarker singletonTerminated() Marker "akkaClusterSingletonTerminated" of log event when Cluster Singleton instance has terminated.
 - 
sbrDowningpublic static LogMarker sbrDowning(akka.cluster.sbr.DowningStrategy.Decision decision) Marker "akkaSbrDowning" of log event when Split Brain Resolver has made a downing decision. Followed byClusterLogMarker.sbrDowningNodefor each node that is downed.- Parameters:
- decision- The downing decision. Included as property "akkaSbrDecision".
 
 - 
sbrDowningNodepublic static LogMarker sbrDowningNode(UniqueAddress node, akka.cluster.sbr.DowningStrategy.Decision decision) Marker "akkaSbrDowningNode" of log event when a member is downed by Split Brain Resolver.- Parameters:
- node- The address of the node that is downed. Included as property "akkaRemoteAddress" and "akkaRemoteAddressUid".
- decision- The downing decision. Included as property "akkaSbrDecision".
 
 - 
sbrInstabilitypublic static LogMarker sbrInstability() Marker "akkaSbrInstability" of log event when Split Brain Resolver has detected too much instability and will down all nodes.
 - 
sbrLeaseAcquiredpublic static LogMarker sbrLeaseAcquired(akka.cluster.sbr.DowningStrategy.Decision decision) Marker "akkaSbrLeaseAcquired" of log event when Split Brain Resolver has acquired the lease.- Parameters:
- decision- The downing decision. Included as property "akkaSbrDecision".
 
 - 
sbrLeaseDeniedpublic static LogMarker sbrLeaseDenied(akka.cluster.sbr.DowningStrategy.Decision reverseDecision) Marker "akkaSbrLeaseDenied" of log event when Split Brain Resolver has acquired the lease.- Parameters:
- reverseDecision- The (reverse) downing decision. Included as property "akkaSbrDecision".
 
 - 
sbrLeaseReleasedpublic static LogMarker sbrLeaseReleased() Marker "akkaSbrLeaseReleased" of log event when Split Brain Resolver has released the lease.
 
- 
 
-