Class: Datadog::CI::Transport::HTTP
- Inherits:
-
Object
- Object
- Datadog::CI::Transport::HTTP
- Defined in:
- lib/datadog/ci/transport/http.rb
Defined Under Namespace
Classes: ResponseDecorator
Constant Summary collapse
- DEFAULT_TIMEOUT =
30- MAX_RETRIES =
3- INITIAL_BACKOFF =
1
Instance Attribute Summary collapse
-
#compress ⇒ Object
readonly
Returns the value of attribute compress.
-
#host ⇒ Object
readonly
Returns the value of attribute host.
-
#port ⇒ Object
readonly
Returns the value of attribute port.
-
#ssl ⇒ Object
readonly
Returns the value of attribute ssl.
-
#timeout ⇒ Object
readonly
Returns the value of attribute timeout.
Instance Method Summary collapse
-
#initialize(host:, port:, timeout: DEFAULT_TIMEOUT, ssl: true, compress: false) ⇒ HTTP
constructor
A new instance of HTTP.
- #request(path:, payload:, headers:, verb: "post", retries: MAX_RETRIES, backoff: INITIAL_BACKOFF, accept_compressed_response: false) ⇒ Object
Constructor Details
#initialize(host:, port:, timeout: DEFAULT_TIMEOUT, ssl: true, compress: false) ⇒ HTTP
Returns a new instance of HTTP.
25 26 27 28 29 30 31 |
# File 'lib/datadog/ci/transport/http.rb', line 25 def initialize(host:, port:, timeout: DEFAULT_TIMEOUT, ssl: true, compress: false) @host = host @port = port @timeout = timeout @ssl = ssl.nil? ? true : ssl @compress = compress.nil? ? false : compress end |
Instance Attribute Details
#compress ⇒ Object (readonly)
Returns the value of attribute compress.
14 15 16 |
# File 'lib/datadog/ci/transport/http.rb', line 14 def compress @compress end |
#host ⇒ Object (readonly)
Returns the value of attribute host.
14 15 16 |
# File 'lib/datadog/ci/transport/http.rb', line 14 def host @host end |
#port ⇒ Object (readonly)
Returns the value of attribute port.
14 15 16 |
# File 'lib/datadog/ci/transport/http.rb', line 14 def port @port end |
#ssl ⇒ Object (readonly)
Returns the value of attribute ssl.
14 15 16 |
# File 'lib/datadog/ci/transport/http.rb', line 14 def ssl @ssl end |
#timeout ⇒ Object (readonly)
Returns the value of attribute timeout.
14 15 16 |
# File 'lib/datadog/ci/transport/http.rb', line 14 def timeout @timeout end |
Instance Method Details
#request(path:, payload:, headers:, verb: "post", retries: MAX_RETRIES, backoff: INITIAL_BACKOFF, accept_compressed_response: false) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/datadog/ci/transport/http.rb', line 33 def request( path:, payload:, headers:, verb: "post", retries: MAX_RETRIES, backoff: INITIAL_BACKOFF, accept_compressed_response: false ) if compress headers[Ext::Transport::HEADER_CONTENT_ENCODING] = Ext::Transport::CONTENT_ENCODING_GZIP payload = Gzip.compress(payload) end if accept_compressed_response headers[Ext::Transport::HEADER_ACCEPT_ENCODING] = Ext::Transport::CONTENT_ENCODING_GZIP end Datadog.logger.debug do "Sending #{verb} request: host=#{host}; port=#{port}; ssl_enabled=#{ssl}; " \ "compression_enabled=#{compress}; path=#{path}; payload_size=#{payload.size}" end response = ResponseDecorator.new( perform_http_call(path: path, payload: payload, headers: headers, verb: verb, retries: retries, backoff: backoff) ) Datadog.logger.debug do "Received server response: #{response.inspect}" end response end |