Skip to content

Commit 6644bf2

Browse files
authored
NGF: update nginx metrics (#558)
Agent updated some metrics names and descriptions. Updating the NGF doc that describes them.
1 parent c589ea7 commit 6644bf2

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

content/ngf/how-to/monitoring/prometheus.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,23 @@ NGINX Gateway Fabric currently supports a subset of all metrics available throug
9090
the supported metrics along with a small accompanying description.
9191

9292
Metrics provided by NGINX Open Source include:
93-
- `nginx_http_connections`: NGINX-wide statistics describing HTTP connections.
94-
- `nginx_http_requests`: The total number of client requests received from clients.
93+
- `nginx_http_connection_count_connections`: The current number of connections.
94+
- `nginx_http_connections_total`: The total number of connections, since NGINX was last started or reloaded.
95+
- `nginx_http_request_count_requests`: The total number of client requests received, since the last collection interval.
96+
- `nginx_http_requests_total`: The total number of client requests received, since NGINX was last started or reloaded.
9597

9698
In addition to the previous metrics provided by NGINX Open Source, NGINX Plus includes:
97-
- `nginx_config_reloads`: The total number of NGINX config reloads.
98-
- `nginx_http_response_status_responses_total`: The number of responses, grouped by status code range.
99+
- `nginx_config_reloads_total`: The total number of NGINX config reloads.
100+
- `nginx_http_response_count_responses`: The total number of HTTP responses sent to clients since the last collection interval, grouped by status code range.
101+
- `nginx_http_response_status_responses_total`: The total number of responses since NGINX was last started or reloaded, grouped by status code range.
99102
- `nginx_http_request_discarded_requests_total`: The total number of requests completed without sending a response.
100103
- `nginx_http_request_processing_count_requests`: The number of client requests that are currently being processed.
101104
- `nginx_http_request_byte_io_bytes_total`: The total number of HTTP byte IO.
102105
- `nginx_http_upstream_keepalive_count_connections`: The current number of idle keepalive connections per HTTP upstream.
106+
- `nginx_http_upstream_peer_connection_count_connections`: The average number of active connections per HTTP upstream peer.
103107
- `nginx_http_upstream_peer_byte_io_bytes_total`: The total number of byte IO per HTTP upstream peer.
104108
- `nginx_http_upstream_peer_count_peers`: The current count of peers on the HTTP upstream grouped by state.
105-
- `nginx_http_upstream_peer_fails_attempts`: The total number of unsuccessful attempts to communicate with the HTTP upstream peer.
109+
- `nginx_http_upstream_peer_fails_attempts_total`: The total number of unsuccessful attempts to communicate with the HTTP upstream peer.
106110
- `nginx_http_upstream_peer_header_time_milliseconds`: The average time to get the response header from the HTTP upstream peer.
107111
- `nginx_http_upstream_peer_health_checks_requests_total`: The total number of health check requests made to a HTTP upstream peer.
108112
- `nginx_http_upstream_peer_requests_total`: The total number of client requests forwarded to the HTTP upstream peer.

0 commit comments

Comments
 (0)