ebyhr commented on code in PR #14360:
URL: https://github.com/apache/iceberg/pull/14360#discussion_r2441295056
##########
core/src/main/java/org/apache/iceberg/rest/HTTPClient.java:
##########
@@ -529,6 +533,11 @@ public Builder withAuthSession(AuthSession session) {
return this;
}
+ public Builder withOpenTelemetry(OpenTelemetry openTelemetry) {
+ this.telemetry = openTelemetry;
+ return this;
+ }
Review Comment:
Just passing `OpenTelemetry` instance is sufficient in this repository.
In Trino, we have 2 config properties to enable tracing:
```properties
tracing.enabled=true
tracing.exporter.endpoint=http://observe.example.com:4317
```
https://trino.io/docs/current/admin/opentelemetry.html
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]