[http_check] add support for no_proxy environment variable #2448
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Why this PR?
If a
no_proxy
environment variable is set we should honor it when making requests. This PR addresses the issue by adding the environment variable to theproxies
dict used byrequests
to make the request.Questions
no_proxy
in the yaml configuration file?http
andhttps
system-wide environment variables as well if they're not set in the configuration file?Answers
no_proxy
flag.datadog.conf
proxy is enabled, but environment variables are found for https or http proxies, these will be enforced.Notes
Unfortunately this is now a little more convoluted then I would've liked. Passing the
self.proxies
dict withhttp
and/orhttps
and ano_proxy
key (orno
keyrequests
also takes) will not work, only after popping the relevant entries off the dictionary did I see the expected behavior. This has forced us to enforce the proxy settings explicitly per iteration.