View Network Statistics Between Members
get
/management/coherence/cluster/members/{memberIdentifier}/networkStats
Use this endpoint to determine network performance from the current viewing member to the specified viewed member. To specify the viewed member, enter the ID of the member.
Request
Path Parameters
-
memberIdentifier(required): string
An identifier of the member, it can either be the name or the nodeId of the member.
Response
Supported Media Types
- application/json
200 Response
A successful request that includes network status and statistics
Root Schema : networkStats
Type:
Show Source
object
-
currentMemberId:
integer
The Id of the member who is viewing.
-
deferredPackets:
integer(int32)
Read Only:
true
The number of packets addressed to the viewed member that the viewing member is currently deferring to send. The viewing member will delay sending these packets until the number of outstanding packets falls below the value of the Threshold attribute. The value of this attribute is only meaningful if the viewing member has FlowControl enabled. -
deferring:
boolean
Read Only:
true
Indicates whether or not the viewing member is currently deferring packets to the viewed member. The value of this attribute is only meaningful if the viewing member has FlowControl enabled. -
lastIn:
integer(int64)
Read Only:
true
The number of milliseconds that have elapsed since the viewing member last received an acknowledgment from the viewed member. -
lastOut:
integer(int64)
Read Only:
true
The number of milliseconds that have elapsed since the viewing member last sent a packet to the viewed member. -
lastSlow:
integer(int64)
Read Only:
true
The number of milliseconds that have elapsed since the viewing member declared the viewed member as slow, or -1 if the viewed member has never been declared slow. -
location:
string
Read Only:
true
The location of the MBean server -
member:
string
Read Only:
true
Name of the cluster member -
nodeId:
integer(int64)
Read Only:
true
The ID of member to which the MBean belongs -
outstandingPackets:
integer(int32)
Read Only:
true
The number of packets that the viewing member has sent to the viewed member which have yet to be acknowledged. The value of this attribute is only meaningful if the viewing member has FlowControl enabled. -
paused:
boolean
Read Only:
true
Indicates whether or not the viewing member currently considers the viewed member to be unresponsive. The value of this attribute is only meaningful if the viewing member has FlowControl enabled. -
pauseRate:
number(float)
Read Only:
true
The percentage of time since the last time statistics were reset in which the viewing member considered the viewed member to be unresponsive. Under normal conditions this value should be very close to 0.0. Values near 1.0 would indicate that the viewed node is nearly inoperable, likely due to extremely long GC pauses. The value of this attribute is only meaningful if the viewing member has FlowControl enabled. -
publisherSuccessRate:
number(float)
Read Only:
true
The publisher success rate from the viewing node to the viewed node since the statistics were last reset. -
receiverSuccessRate:
number(float)
Read Only:
true
The receiver success rate from the viewing node to the viewed node since the statistics were last reset. -
refreshTime:
string(date-time)
Read Only:
true
The timestamp when this model was last retrieved from a corresponding node. For local servers it is the local time. -
threshold:
integer(int32)
Read Only:
true
The maximum number of outstanding packets for the viewed member that the viewing member is allowed to accumulate before initiating the deferral algorithm. The value of this attribute is only meaningful if the viewing member has FlowControl enabled. -
type:
string
Read Only:
true
Allowed Values:[ "PointToPoint" ]
The type of the MBean -
viewedMemberId:
integer(int32)
The Id of the member being viewed.
-
viewerStatistics:
array viewerStatistics
Read Only:
true
Human readable summary of the point-to-point statistics from the viewing member for all other members.
Nested Schema : viewerStatistics
Type:
array
Read Only:
true
Human readable summary of the point-to-point statistics from the viewing member for all other members.
Show Source