-
Notifications
You must be signed in to change notification settings - Fork 216
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
base: main
Are you sure you want to change the base?
Conversation
…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` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggesting
### 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." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`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, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- 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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- 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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note: Adds SDK self-monitoring metrics for exporter request duration | |
note: Adds SDK self-monitoring metrics for exporter call duration |
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
[chore]