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

Add http request duration to SDK metrics #2007

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

lzchen
Copy link

@lzchen lzchen commented Mar 18, 2025

Related to #1631 and partially addresses #1906

Changes

Adds a metric to track the duration of http requests made within an exporter.

Following the discussion in this issue, I wasn't exactly sure how we want to provide more detail regarding partial success. The error.type can indicate that it was a partial success but we can possibly also include information about which items succeeded/failed somewhere (perhaps in another attribute).

I also made the distinction of making this metric specific to http but am open to defining a generic one regardless of transport protocol (we can probably have protocol + response code as additional attributes if so).

Looking forward to hearing your thoughts!

Merge requirement checklist

Sorry, something went wrong.

lzchen added 2 commits March 18, 2025 11:54
@lzchen lzchen requested review from a team as code owners March 18, 2025 19:12
@github-actions github-actions bot added the enhancement New feature or request label Mar 18, 2025
lzchen added 2 commits March 18, 2025 12:21
fix
lzchen added 2 commits March 20, 2025 10:32
…ventions into requests-duration
@@ -452,5 +454,131 @@ E.g. for Java the fully qualified classname SHOULD be used in this case.
<!-- END AUTOGENERATED TEXT -->
<!-- endsemconv -->

## Request Metrics

### Metric: `otel.sdk.exporter.request.duration`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggesting

Suggested change
### Metric: `otel.sdk.exporter.request.duration`
### Metric: `otel.sdk.exporter.operation.duration`

to match other logical operations

type: metric
metric_name: otel.sdk.exporter.request.duration
stability: development
brief: "The duration of any request(s) made from the exporter during export."
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
brief: "The duration of any request(s) made from the exporter during export."
brief: "The duration of exporting a back of telemetry items. It cover the duration including all retries"

note: |
This metric defines successful requests using the full success definitions for [http](https://github.com/open-telemetry/opentelemetry-proto/blob/v1.5.0/docs/specification.md#full-success-1)
and [grpc](https://github.com/open-telemetry/opentelemetry-proto/blob/v1.5.0/docs/specification.md#full-success). Anything else is defined as an unsuccessful request. For successful requests,
`error.type` MUST NOT be set. For unsuccessful requests, `error.type` must contain a relevant failure cause.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
`error.type` MUST NOT be set. For unsuccessful requests, `error.type` must contain a relevant failure cause.
`error.type` MUST NOT be set. For unsuccessful export operations, `error.type` must contain a relevant failure cause.
It should be reported for export calls limited to a single batch. If exporter updates batch between retries, this metric SHOULD NOT be reported.

brief: "The duration of any request(s) made from the exporter during export."
note: |
This metric defines successful requests using the full success definitions for [http](https://github.com/open-telemetry/opentelemetry-proto/blob/v1.5.0/docs/specification.md#full-success-1)
and [grpc](https://github.com/open-telemetry/opentelemetry-proto/blob/v1.5.0/docs/specification.md#full-success). Anything else is defined as an unsuccessful request. For successful requests,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
and [grpc](https://github.com/open-telemetry/opentelemetry-proto/blob/v1.5.0/docs/specification.md#full-success). Anything else is defined as an unsuccessful request. For successful requests,
and [grpc](https://github.com/open-telemetry/opentelemetry-proto/blob/v1.5.0/docs/specification.md#full-success). Anything else is defined as an unsuccessful operations. For successful operations,

stability: development
brief: "The duration of any request(s) made from the exporter during export."
note: |
This metric defines successful requests using the full success definitions for [http](https://github.com/open-telemetry/opentelemetry-proto/blob/v1.5.0/docs/specification.md#full-success-1)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
This metric defines successful requests using the full success definitions for [http](https://github.com/open-telemetry/opentelemetry-proto/blob/v1.5.0/docs/specification.md#full-success-1)
This metric defines successful operations using the full success definitions for [http](https://github.com/open-telemetry/opentelemetry-proto/blob/v1.5.0/docs/specification.md#full-success-1)

recommended: when applicable
- ref: error.type
requirement_level:
conditionally_required: If request has ended with an error
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
conditionally_required: If request has ended with an error
conditionally_required: If the operation has ended with an error

requirement_level:
conditionally_required: If request has ended with an error
examples: ["rejected", "timeout", "500", "java.net.UnknownHostException"]
- ref: http.response.status_code
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- ref: http.response.status_code
- ref: http.response.status_code
brief: The HTTP status code of the last HTTP request performed in scope of this export call.

- ref: http.response.status_code
requirement_level:
recommended: when applicable
- ref: rpc.grpc.status_code
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- ref: rpc.grpc.status_code
- ref: rpc.grpc.status_code
brief: The gRPC status code of the last gRPC requests performed in scope of this export call.

component: 'otel'

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Adds SDK self-monitoring metrics for exporter request duration
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
note: Adds SDK self-monitoring metrics for exporter request duration
note: Adds SDK self-monitoring metrics for exporter call duration

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Development

Successfully merging this pull request may close these issues.

None yet

5 participants