Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

correct metric type for http req/res sizes #5141

Merged
merged 1 commit into from
Sep 3, 2024
Merged
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
8 changes: 4 additions & 4 deletions content/en/docs/collector/internal-telemetry.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,13 +242,13 @@ categorized by instrumentation type.
| `http_client_active_requests` | Number of active HTTP client requests. | Counter |
| `http_client_connection_duration` | Measures the duration of the successfully established outbound HTTP connections. | Histogram |
| `http_client_open_connections` | Number of outbound HTTP connections that are active or idle on the client. | Counter |
| `http_client_request_size` | Measures the size of HTTP client request bodies. | Histogram |
| `http_client_request_size` | Measures the size of HTTP client request bodies. | Counter |
| `http_client_duration` | Measures the duration of HTTP client requests. | Histogram |
| `http_client_response_size` | Measures the size of HTTP client response bodies. | Histogram |
| `http_client_response_size` | Measures the size of HTTP client response bodies. | Counter |
| `http_server_active_requests` | Number of active HTTP server requests. | Counter |
| `http_server_request_size` | Measures the size of HTTP server request bodies. | Histogram |
| `http_server_request_size` | Measures the size of HTTP server request bodies. | Counter |
| `http_server_duration` | Measures the duration of HTTP server requests. | Histogram |
| `http_server_response_size` | Measures the size of HTTP server response bodies. | Histogram |
| `http_server_response_size` | Measures the size of HTTP server response bodies. | Counter |
| `rpc_client_duration` | Measures the duration of outbound RPC. | Histogram |
| `rpc_client_request_size` | Measures the size of RPC request messages (uncompressed). | Histogram |
| `rpc_client_requests_per_rpc` | Measures the number of messages received per RPC. Should be 1 for all non-streaming RPCs. | Histogram |
Expand Down