You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by na...@apache.org on 2021/07/02 09:40:36 UTC

[ignite] branch ignite-2.11 updated: IGNITE-14901 Add documentation for the Discovery and SSL metrics. (#9174)

This is an automated email from the ASF dual-hosted git repository.

namelchev pushed a commit to branch ignite-2.11
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/ignite-2.11 by this push:
     new 23adfa5  IGNITE-14901 Add documentation for the Discovery and SSL metrics. (#9174)
23adfa5 is described below

commit 23adfa58c9cfaba275250348df7a5d456f96c9ed
Author: Mikhail Petrov <32...@users.noreply.github.com>
AuthorDate: Fri Jul 2 12:38:18 2021 +0300

    IGNITE-14901 Add documentation for the Discovery and SSL metrics. (#9174)
    
    (cherry picked from commit c0c2789aaf53d840dedf52f262389ff9b1e87d2b)
---
 docs/_docs/monitoring-metrics/new-metrics.adoc | 60 ++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)

diff --git a/docs/_docs/monitoring-metrics/new-metrics.adoc b/docs/_docs/monitoring-metrics/new-metrics.adoc
index fc95311..36df674 100644
--- a/docs/_docs/monitoring-metrics/new-metrics.adoc
+++ b/docs/_docs/monitoring-metrics/new-metrics.adoc
@@ -280,11 +280,71 @@ Register name: `io.communication`
 [cols="2,1,3",opts="header"]
 |===
 |Name|    Type|    Description
+|ActiveSessionsCount|   integer|   Active TCP sessions count.
 |OutboundMessagesQueueSize|   integer| Outbound messages queue size.
 |SentMessagesCount  | integer| Sent messages count.
 |SentBytesCount | long  |  Sent bytes count.
 |ReceivedBytesCount|  long|    Received bytes count.
 |ReceivedMessagesCount|   integer| Received messages count.
+|RejectedSslSessionsCount|   integer|   TCP sessions count that were rejected due to the SSL errors (metric is exported only if SSL is enabled).
+|SslEnabled|   boolean|   Indicates whether SSL is enabled.
+|SslHandshakeDurationHistogram|   histogram|   Histogram of SSL handshake duration in milliseconds (metric is exported only if SSL is enabled).
+|===
+
+
+== Ignite Thin Client Connector
+
+Register name: `connector.client.thin.tcp`
+
+
+[cols="2,1,3",opts="header"]
+|===
+|Name|    Type|    Description
+|ActiveSessionsCount|   integer|   Active TCP sessions count.
+|ReceivedBytesCount|   long|   Received bytes count.
+|RejectedSslSessionsCount|   integer|   TCP sessions count that were rejected due to the SSL errors (metric is exported only if SSL is enabled).
+|SentBytesCount|   long|   Sent bytes count.
+|SslEnabled|   boolean|   Indicates whether SSL is enabled.
+|SslHandshakeDurationHistogram|   histogram|   Histogram of SSL handshake duration in milliseconds (metric is exported only if SSL is enabled).
+|===
+
+
+== Ignite REST Client Connector
+
+Register name: `connector.client.rest.tcp`
+
+
+[cols="2,1,3",opts="header"]
+|===
+|Name|    Type|    Description
+|ActiveSessionsCount|   integer|   Active TCP sessions count.
+|ReceivedBytesCount|   long|    Received bytes count.
+|RejectedSslSessionsCount|   integer|   TCP sessions count that were rejected due to the SSL errors (metric is exported only if SSL is enabled).
+|SentBytesCount|   long|   Sent bytes count.
+|SslEnabled|   boolean|   Indicates whether SSL is enabled.
+|SslHandshakeDurationHistogram|   histogram|   Histogram of SSL handshake duration in milliseconds (metric is exported only if SSL is enabled).
+|===
+
+
+== Discovery IO
+
+Register name: `io.discovery`
+
+
+[cols="2,1,3",opts="header"]
+|===
+|Name|    Type|    Description
+|CoordinatorSince|   long|   Timestamp since which the local node became the coordinator (metric is exported only from server nodes).
+|Coordinator|   UUID|   Coordinator ID (metric is exported only from server nodes).
+|CurrentTopologyVersion|   long|   Current topology version.
+|JoinedNodes|   integer|   Joined nodes count.
+|LeftNodes|   integer|   Left nodes count.
+|MessageWorkerQueueSize|   integer|   Current message worker queue size.
+|PendingMessagesRegistered|   integer|   Pending registered messages count.
+|RejectedSslConnectionsCount|   integer|   TCP discovery connections count that were rejected due to the SSL errors.
+|SslEnabled|   boolean|   Indicates whether SSL is enabled.
+|TotalProcessedMessages|   integer|   Total processed messages count.
+|TotalReceivedMessages|   integer|   Total received messages count.
 |===