GEODE-2050 Add docs for new membership svc statistics
Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/89569fd3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/89569fd3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/89569fd3 Branch: refs/heads/develop Commit: 89569fd3956c175d073592503a475b3d157c1579 Parents: 4c5fca6 Author: Karen Miller <[email protected]> Authored: Tue Nov 1 16:17:45 2016 -0700 Committer: Karen Miller <[email protected]> Committed: Tue Nov 1 16:17:45 2016 -0700 ---------------------------------------------------------------------- .../statistics/statistics_list.html.md.erb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/89569fd3/geode-docs/reference/statistics/statistics_list.html.md.erb ---------------------------------------------------------------------- diff --git a/geode-docs/reference/statistics/statistics_list.html.md.erb b/geode-docs/reference/statistics/statistics_list.html.md.erb index 5f3d50d..07e4281 100644 --- a/geode-docs/reference/statistics/statistics_list.html.md.erb +++ b/geode-docs/reference/statistics/statistics_list.html.md.erb @@ -630,6 +630,14 @@ The primary statistics are: | `failedAcceptsDesc` | Total number of times an accept (receiver creation) of a connect from some other member has failed. | | `failedConnectsDesc` | Total number of times a connect (sender creation) to some other member has failed. | | `final` | String distributeMessageTimeDesc = The amount of time it takes to prepare a message and send it on the network. This includes sentMessagesTime. | +| `finalCheckRequestsReceived` | The number of final check requests that this member has received. | +| `finalCheckRequestsSent` | The number of final check requests that this member has sent. | +| `finalCheckResponsesReceived` | The number of final check responses that this member has received. | +| `finalCheckResponsesSent` | The number of final check responses that this member has sent. | +| `heartbeatRequestsSent` | The number of heartbeat request messages that this member has sent. | +| `heartbeatRequestsReceived` | The number of heartbeat request messages that this member has received. | +| `heartbeatsReceived` | The number of heartbeat messages that this member has received. | +| `heartbeatsSent` | The number of heartbeat messages that this member has sent. | | `highPriorityQueueSizeDesc` | The number of high priority distribution messages currently waiting to be processed. | | `highPriorityQueueThrottleCounDesc` | The total number of times a thread was delayed in adding a normal message to the high priority queue. | | `highPriorityQueueThrottleTimeDesc` | The total amount of time, in nanoseconds, spent delayed by the high priority queue throttle. | @@ -733,10 +741,16 @@ The primary statistics are: | `sharedUnorderedSenderConnectionsDesc` | Current number of shared sockets dedicated to sending unordered messages. | | `socketLocks` | Total number of times a socket has been locked. | | `socketLockTime` | Total amount of time, in nanoseconds, spent locking a socket. | +| `suspectsReceived` | The number of suspect messages that this member has received. | +| `suspectsSent` | The number of suspect messages that this member has sent. | | `syncSocketWriteBytes` | Total number of bytes sent out in synchronous/blocking mode on sockets. | | `syncSocketWrites` | Total number of completed synchronous/blocking socket write calls. | | `syncSocketWritesInProgress` | Current number of synchronous/blocking socket write calls in progress. | | `syncSocketWriteTime` | Total amount of time, in nanoseconds, spent in synchronous/blocking socket write calls. | +| `tcpFinalCheckRequestsReceived` | The number of TCP final check requests that this member has received. | +| `tcpFinalCheckRequestsSent` | The number of TCP final check requests that this member has sent. | +| `tcpFinalCheckResponsesReceived` | The number of TCP final check responses that this member has received. | +| `tcpFinalCheckResponsesSent` | The number of TCP final check responses that this member has sent. | | `threadOrderedSenderConnectionsDesc` | Current number of thread sockets dedicated to sending ordered messages. | | `threadUnorderedSenderConnectionsDesc` | Current number of thread sockets dedicated to sending unordered messages. | | `TOSentMsgs` | Total number of messages sent on thread owned senders. | @@ -747,6 +761,12 @@ The primary statistics are: | `ucastWrites` | Total number of unicast datagram socket write calls. | | `ucastWriteTime` | Total amount of time, in nanoseconds, spent in unicast datagram socket write calls. | | `udpDispatchRequestTime` | The total amount of time, in nanoseconds, spent deserializing and dispatching UDP messages in the message-reader thread. | +| `udpFinalCheckRequestsReceived` | The number of UDP final check requests that this member has received. | +| `udpFinalCheckRequestsSent` | The number of UDP final check requests that this member has sent. | +| `udpFinalCheckResponsesReceived` | The number of UDP final check responses that this member has received. | +| `udpFinalCheckResponsesSent` | The number of UDP final check responses that this member has sent. | +| `udpMsgDecryptionTime` | The total amount of time, in nanoseconds, spent decrypting UDP messages. | +| `udpMsgEncryptionTime` | The total amount of time, in nanoseconds, spent encrypting UDP messages. | | `viewThreadJobsDesc` | The number of messages currently being processed by view threads. | | `viewThreadsDesc` | The number of threads currently processing view messages. | | `viewThreadStarts` | Total number of times a thread has been created for the view message executor. |
