We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is no configurable response_timeout in httpjson input. I have an endpoint that takes more than the default timeout to response.
Here is the default response_timeout, which is hard coded, for httpjson:
tr := &http.Transport{ ResponseHeaderTimeout: time.Duration(3 * time.Second), TLSClientConfig: tlsCfg, } client := &http.Client{ Transport: tr, Timeout: time.Duration(4 * time.Second), }
The text was updated successfully, but these errors were encountered:
I have opened a pull request to add this.
Sorry, something went wrong.
closed by #1651
Fix changelog for #1650
cc2b53a
No branches or pull requests
There is no configurable response_timeout in httpjson input. I have an endpoint that takes more than the default timeout to response.
Here is the default response_timeout, which is hard coded, for httpjson:
The text was updated successfully, but these errors were encountered: