Skip to content

Commit

Permalink
[DOCS] HTTP client stats (elastic#70512)
Browse files Browse the repository at this point in the history
  • Loading branch information
danhermann committed Jun 7, 2021
1 parent 04d34d3 commit f9554fb
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions docs/reference/cluster/nodes-stats.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -1891,6 +1891,65 @@ Current number of open HTTP connections for the node.
`total_opened`::
(integer)
Total number of HTTP connections opened for the node.
`clients`::
(array of objects)
Information on current and recently-closed HTTP client connections.
+
.Properties of `clients`
[%collapsible%open]
=======
`id`::
(integer)
Unique ID for the HTTP client.

`agent`::
(string)
Reported agent for the HTTP client. If unavailable, this property is not
included in the response.

`local_address`::
(string)
Local address for the HTTP client.

`remote_address`::
(string)
Remote address for the HTTP client.

`last_uri`::
(string)
The URI of the client's most recent request.

`x_forwarded_for`::
(string)
Value from the client's `x-forwarded-for` HTTP header. If unavailable, this
property is not included in the response.

`x_opaque_id`::
(string)
Value from the client's `x-opaque-id` HTTP header. If unavailable, this property
is not included in the response.

`opened_time_millis`::
(integer)
Time at which the client opened the connection.

`closed_time_millis`::
(integer)
Time at which the client closed the connection if the connection is closed.

`last_request_time_millis`::
(integer)
Time of the most recent request from this client.

`request_count`::
(integer)
Number of requests from this client.

`request_size_bytes`::
(integer)
Cumulative size in bytes of all requests from this client.
=======
======

[[cluster-nodes-stats-api-response-body-breakers]]
Expand Down

0 comments on commit f9554fb

Please sign in to comment.