Skip to content

Commit 11b1ebf

Browse files
authored
[DOCS] Document transport and http node stats (#50473)
Documents the `transport` and `http` parameters returned by the `_nodes/stats` API.
1 parent 6501338 commit 11b1ebf

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

docs/reference/cluster/nodes-stats.asciidoc

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -922,6 +922,44 @@ Highest number of active threads in the thread pool.
922922
(integer)
923923
Number of tasks completed by the thread pool executor.
924924

925+
[[cluster-nodes-stats-api-response-body-transport]]
926+
===== `transport` section
927+
928+
`transport.server_open`::
929+
(integer)
930+
Number of open TCP connections used for internal communication between nodes.
931+
932+
`transport.rx_count`::
933+
(integer)
934+
Total number of RX (receive) packets received by the node during internal
935+
cluster communication.
936+
937+
`transport.rx_size_in_bytes`::
938+
(integer)
939+
Size, in bytes, of RX packets received by the node during internal cluster
940+
communication.
941+
942+
`transport.tx_count`::
943+
(integer)
944+
Total number of TX (transmit) packets sent by the node during internal cluster
945+
communication.
946+
947+
`transport.tx_size_in_bytes`::
948+
(integer)
949+
Size, in bytes, of TX packets sent by the node during internal cluster
950+
communication.
951+
952+
[[cluster-nodes-stats-api-response-body-http]]
953+
===== `http` section
954+
955+
`http.current_open`::
956+
(integer)
957+
Current number of open HTTP connections for the node.
958+
959+
`http.total_opened`::
960+
(integer)
961+
Total number of HTTP connections opened for the node.
962+
925963
[[cluster-nodes-stats-api-response-body-ingest]]
926964
===== `ingest` section
927965

0 commit comments

Comments
 (0)