Sha256: b0c36c3fb7d1cb6b5777332d810860009ff8f1214c332c5294f932a56ac5c200

Contents?: true

Size: 1.73 KB

Versions: 2

Compression:

Stored size: 1.73 KB

Contents

module Timber
  module Events
    # The HTTP request event tracks incoming HTTP requests.
    #
    # @note This event should be installed automatically through probes,
    #   such as the {Probes::ActionControllerLogSubscriber} probe.
    class HTTPServerRequest < Timber::Event
      attr_reader :host, :method, :path, :port, :query_params, :content_type,
        :remote_addr, :referrer, :request_id, :scheme, :user_agent

      def initialize(attributes)
        @host = attributes[:host] || raise(ArgumentError.new(":host is required"))
        @method = attributes[:method] || raise(ArgumentError.new(":method is required"))
        @path = attributes[:path] || raise(ArgumentError.new(":path is required"))
        @port = attributes[:port]
        @query_params = attributes[:query_params]
        @content_type = attributes[:content_type]
        @remote_addr = attributes[:remote_addr]
        @referrer = attributes[:referrer]
        @request_id = attributes[:request_id]
        @scheme = attributes[:scheme] || raise(ArgumentError.new(":scheme is required"))
        @user_agent = attributes[:user_agent]
      end

      def to_hash
        {host: host, method: method, path: path, port: port, query_params: query_params,
          headers: {content_type: content_type, remote_addr: remote_addr, referrer: referrer,
            request_id: request_id, scheme: scheme, user_agent: user_agent}}
      end
      alias to_h to_hash

      def as_json(_options = {})
        {:server_side_app => {:http_server_request => to_hash}}
      end

      def message
        'Started %s "%s" for %s' % [
        method,
        path,
        remote_addr]
      end

      def status_description
        Rack::Utils::HTTP_STATUS_CODES[status]
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
timber-1.1.10 lib/timber/events/http_server_request.rb
timber-1.1.9 lib/timber/events/http_server_request.rb