Skip to content

Commit c0d1fda

Browse files
prontjszwedko
authored andcommitted
fix(docs): add the 'http_client_requests_sent_total' (#18299)
1 parent 0c8e8eb commit c0d1fda

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

website/cue/reference/components/sources/internal_metrics.cue

+12
Original file line numberDiff line numberDiff line change
@@ -730,6 +730,14 @@ components: sources: internal_metrics: {
730730
status: _status
731731
}
732732
}
733+
http_client_requests_sent_total: {
734+
description: "The total number of sent HTTP requests, tagged with the request method."
735+
type: "counter"
736+
default_namespace: "vector"
737+
tags: _component_tags & {
738+
method: _method
739+
}
740+
}
733741
http_client_responses_total: {
734742
description: "The total number of HTTP requests, tagged with the response code."
735743
type: "counter"
@@ -1183,6 +1191,10 @@ components: sources: internal_metrics: {
11831191
description: "The HTTP status code of the request."
11841192
required: false
11851193
}
1194+
_method: {
1195+
description: "The HTTP method of the request."
1196+
required: false
1197+
}
11861198
_path: {
11871199
description: "The path that produced the error."
11881200
required: true

0 commit comments

Comments
 (0)