Class: OneApm::Support::HTTPClients::HTTPClientRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/one_apm/support/http_clients/httpclient_wrappers.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(request) ⇒ HTTPClientRequest

Returns a new instance of HTTPClientRequest.



30
31
32
33
# File 'lib/one_apm/support/http_clients/httpclient_wrappers.rb', line 30

def initialize(request)
  @request = request
  @uri = request.header.request_uri
end

Instance Attribute Details

#requestObject (readonly)

Returns the value of attribute request.



28
29
30
# File 'lib/one_apm/support/http_clients/httpclient_wrappers.rb', line 28

def request
  @request
end

#uriObject (readonly)

Returns the value of attribute uri.



28
29
30
# File 'lib/one_apm/support/http_clients/httpclient_wrappers.rb', line 28

def uri
  @uri
end

Instance Method Details

#[](key) ⇒ Object



51
52
53
# File 'lib/one_apm/support/http_clients/httpclient_wrappers.rb', line 51

def [](key)
  request.headers[key]
end

#[]=(key, value) ⇒ Object



55
56
57
# File 'lib/one_apm/support/http_clients/httpclient_wrappers.rb', line 55

def []=(key, value)
  request.http_header[key] = value
end

#hostObject



43
44
45
46
47
48
49
# File 'lib/one_apm/support/http_clients/httpclient_wrappers.rb', line 43

def host
  if hostname = (self['host'] || self['Host'])
    hostname.split(':').first
  else
    uri.host.to_s
  end
end

#methodObject



39
40
41
# File 'lib/one_apm/support/http_clients/httpclient_wrappers.rb', line 39

def method
  request.header.request_method
end

#typeObject



35
36
37
# File 'lib/one_apm/support/http_clients/httpclient_wrappers.rb', line 35

def type
  "HTTPClient"
end