diff --git a/website/cue/reference/components/sources/internal_metrics.cue b/website/cue/reference/components/sources/internal_metrics.cue index 5115d4f35c32d..da3b404156188 100644 --- a/website/cue/reference/components/sources/internal_metrics.cue +++ b/website/cue/reference/components/sources/internal_metrics.cue @@ -730,6 +730,14 @@ components: sources: internal_metrics: { status: _status } } + http_client_requests_sent_total: { + description: "The total number of sent HTTP requests, tagged with the request method." + type: "counter" + default_namespace: "vector" + tags: _component_tags & { + method: _method + } + } http_client_responses_total: { description: "The total number of HTTP requests, tagged with the response code." type: "counter" @@ -1183,6 +1191,10 @@ components: sources: internal_metrics: { description: "The HTTP status code of the request." required: false } + _method: { + description: "The HTTP method of the request." + required: false + } _path: { description: "The path that produced the error." required: true