Sha256: 38316157a0e7ee42e02777148ae12f07beffa68d315d770b6f98955ad90893f0
Contents?: true
Size: 1.69 KB
Versions: 3
Compression:
Stored size: 1.69 KB
Contents
require "timber/event" require "timber/util" module Timber module Events # The HTTP client response event tracks responses for *outgoing* HTTP *requests*. # This gives you structured insight into communication with external services. # # @note This event should be installed automatically through integrations, # such as the {Integrations::NetHTTP} integration. class HTTPClientResponse < Timber::Event attr_reader :body, :headers, :request_id, :service_name, :status, :time_ms def initialize(attributes) @headers = Util::HTTPEvent.normalize_headers(attributes[:headers]) @request_id = attributes[:request_id] @service_name = attributes[:service_name] @status = attributes[:status] || raise(ArgumentError.new(":status is required")) @time_ms = attributes[:time_ms] || raise(ArgumentError.new(":time_ms is required")) @time_ms = @time_ms.round(6) @body = Util::HTTPEvent.normalize_body(@headers["content-type"], attributes[:body]) end def to_hash {body: body, headers: headers, request_id: request_id, service_name: service_name, status: status, time_ms: time_ms} end alias to_h to_hash # Builds a hash representation containing simple objects, suitable for serialization (JSON). def as_json(_options = {}) {:http_client_response => to_hash} end def message message = "Outgoing HTTP response" if service_name message << " from #{service_name}" end message << " #{status_description} in #{time_ms}ms" end def status_description Rack::Utils::HTTP_STATUS_CODES[status] end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
timber-2.1.1 | lib/timber/events/http_client_response.rb |
timber-2.1.0 | lib/timber/events/http_client_response.rb |
timber-2.1.0.rc6 | lib/timber/events/http_client_response.rb |