Sha256: 631982c50e420173ab6e65795298ce0780903ecc5cbb196ac2f28c3a7f1a2b9b

Contents?: true

Size: 1.7 KB

Versions: 15

Compression:

Stored size: 1.7 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 HTTPRequest < Timber::Event
      attr_reader :host, :method, :path, :port, :query_params, :content_type,
        :remote_addr, :referrer, :request_id, :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]
        @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, user_agent: user_agent}}
      end
      alias to_h to_hash

      def as_json(_options = {})
        hash = to_hash
        hash[:headers] = Util::Hash.compact(hash[:headers])
        hash = Util::Hash.compact(hash)
        {:http_request => 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

15 entries across 15 versions & 2 rubygems

Version Path
timber-1.0.13 lib/timber/events/http_request.rb
timber-1.0.12 lib/timber/events/http_request.rb
timber-1.0.11 lib/timber/events/http_request.rb
timber-1.0.10 lib/timber/events/http_request.rb
timber-1.0.9 lib/timber/events/http_request.rb
timber-1.0.8 lib/timber/events/http_request.rb
timber-1.0.7 lib/timber/events/http_request.rb
timber-1.0.6 lib/timber/events/http_request.rb
timber-1.0.5 lib/timber/events/http_request.rb
timber-1.0.4 lib/timber/events/http_request.rb
timber-1.0.3 lib/timber/events/http_request.rb
timberio-1.0.3 lib/timber/events/http_request.rb
timberio-1.0.2 lib/timber/events/http_request.rb
timberio-1.0.1 lib/timber/events/http_request.rb
timberio-1.0.0 lib/timber/events/http_request.rb