Replies: 1 comment 1 reply
-
#6079 was just merged so you'll be able to set the connectTimeout once the next release is published. There still isn't any option for setting the read or write timeout. Can you describe your use case and why you believe those should be set? Thx. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all. We're using the OtlpGrpcSpanExporter, OtlpGrpcLogExporter, and OtlpGrpcMetricExporter in a sample application that hits our own OTel service. On the server side, we have an SLA of 60 seconds so we'd like to account for that on the client side by increasing the timeout to 60 seconds.
We tried using
.setTimeout(Duration.ofSeconds(60))
but saw that this only set the callTimeout in the internal OkHttpGrpcExporter - the connectTimeout, readTimeout, and writeTimeout are all still the default 10 seconds.Is there a way for us to set the other timeouts as well? Or would writing our own exporters be a solution for this? TIA!
Beta Was this translation helpful? Give feedback.
All reactions