Replies: 1 comment
-
Came across this issue which discusses this interaction. The simplest solution seems like it'd be to add an option like I did end up finding a workaround where I don't set the proxy environment variables in the Lambda configuration, but then set them in the main function (or in an |
Beta Was this translation helpful? Give feedback.
-
I have an issue where when connecting to the endpoint defined in the OTLP Exporter config, it doesn't respect the
NO_PROXY
configuration. The reason this happens is it forces thedns
GRPC resolver, which resolves to multiple IP addresses and those addresses are checked against theNO_PROXY
configuration. In my case the IP addresses aren't consistent so I can't just add those toNO_PROXY
instead.I can't seem to figure out a way to force the
passthrough
resolver, or explicitly forcegrpc.WithNoProxy()
dial option. Adding thepassthrough://
scheme breaks the OTLP Exporter config validation saying there are too many colons (http
,https
, anddns
schemes work because they are trimmed).Before looking into a solution for this, I just wanted to make sure nobody knows a way to solve this with the currently implementation. Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions