diff --git a/docs/pages/includes/metrics.mdx b/docs/pages/includes/metrics.mdx index 3b0c924966264..638b602266a23 100644 --- a/docs/pages/includes/metrics.mdx +++ b/docs/pages/includes/metrics.mdx @@ -15,7 +15,7 @@ | `backend_batch_write_seconds` | histogram | cache | Latency for backend batch write operations. | | `backend_read_requests_total` | counter | cache | Number of read requests to the backend. | | `backend_read_seconds` | histogram | cache | Latency for read operations. | -| `backend_requests` | counter | cache | Number of write requests to the backend. | +| `backend_requests` | counter | cache | Number of requests to the backend (reads, writes, and keepalives). | | `backend_write_seconds` | histogram | cache | Latency for backend write operations. | | `cluster_name_not_found_total` | counter | Teleport Auth | Number of times a cluster was not found. | | `dynamo_requests_total` | counter | DynamoDB | Total number of requests to the DynamoDB API. | diff --git a/lib/backend/report.go b/lib/backend/report.go index 7448deb00e209..c792d90c9570b 100644 --- a/lib/backend/report.go +++ b/lib/backend/report.go @@ -442,7 +442,7 @@ var ( requests = prometheus.NewCounterVec( prometheus.CounterOpts{ Name: teleport.MetricBackendRequests, - Help: "Number of write requests to the backend", + Help: "Number of requests to the backend (reads, writes, and keepalives)", }, []string{teleport.ComponentLabel, teleport.TagReq, teleport.TagRange}, )