Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/pages/includes/metrics.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down
2 changes: 1 addition & 1 deletion lib/backend/report.go
Original file line number Diff line number Diff line change
Expand Up @@ -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},
)
Expand Down