Skip to content

fix(docs): add the 'http_client_requests_sent_total' #18299

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

Merged
merged 1 commit into from
Aug 18, 2023
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
12 changes: 12 additions & 0 deletions website/cue/reference/components/sources/internal_metrics.cue
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down