Skip to content

Commit 8faf82f

Browse files
authored
Update monitor-health.adoc (#872)
1 parent 134aac7 commit 8faf82f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

modules/manage/partials/monitor-health.adoc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,12 @@ rate(redpanda_kafka_request_latency_seconds_count{redpanda_request="produce"}[5m
137137

138138
==== Internal RPC latency
139139

140-
To monitor Redpanda internal RPC latency, use the xref:reference:public-metrics-reference.adoc#redpanda_rpc_request_latency_seconds[`redpanda_rpc_request_latency_seconds`] histogram. For example, create a query for the 99th percentile latency:
140+
To monitor Redpanda internal RPC latency, use the xref:reference:public-metrics-reference.adoc#redpanda_rpc_request_latency_seconds[`redpanda_rpc_request_latency_seconds`] histogram with
141+
the `redpanda_server="internal"` label. For example, create a query for the 99th percentile latency:
141142

142143
[,promql]
143144
----
144-
histogram_quantile(0.99, (sum(rate(redpanda_rpc_request_latency_seconds_bucket[5m])) by (le, provider, region, instance, namespace, pod, redpanda_server)))
145+
histogram_quantile(0.99, (sum(rate(redpanda_rpc_request_latency_seconds_bucket{redpanda_server="internal"}[5m])) by (le, provider, region, instance, namespace, pod)))
145146
----
146147

147148
You can monitor the rate of internal RPC requests with xref:reference:public-metrics-reference.adoc#redpanda_rpc_request_latency_seconds[`redpanda_rpc_request_latency_seconds`] histogram's count:
@@ -263,4 +264,4 @@ rate(redpanda_rest_proxy_request_errors_total[5m])
263264

264265
=== Data transforms
265266

266-
See xref:develop:data-transforms/monitor.adoc[].
267+
See xref:develop:data-transforms/monitor.adoc[].

0 commit comments

Comments
 (0)