Sha256: ffceb36eac472037fd59672b8636a5f9ceed1dc0fd7c1aeba60fba60ddecefcb

Contents?: true

Size: 1.55 KB

Versions: 6

Compression:

Stored size: 1.55 KB

Contents

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

      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

6 entries across 6 versions & 1 rubygems

Version Path
timber-2.0.24 lib/timber/events/http_client_response.rb
timber-2.0.23 lib/timber/events/http_client_response.rb
timber-2.0.22 lib/timber/events/http_client_response.rb
timber-2.0.21 lib/timber/events/http_client_response.rb
timber-2.0.20 lib/timber/events/http_client_response.rb
timber-2.0.19 lib/timber/events/http_client_response.rb