Sha256: 8fb8f1744732dd1aea9f914369b5a0b7ab6390bf00b1d4efd4342a4a627afc1e
Contents?: true
Size: 1.73 KB
Versions: 1
Compression:
Stored size: 1.73 KB
Contents
require "timber/event" require "timber/util" module Timber module Events # The HTTP server request event tracks incoming HTTP requests to your HTTP server. # Such as unicorn, webrick, puma, etc. # # @note This event should be installed automatically through integrations, # such as the {Integrations::ActionController::LogSubscriber} integration. class HTTPRequest < Timber::Event attr_reader :body, :content_length, :headers, :host, :method, :path, :port, :query_string, :request_id, :scheme, :service_name def initialize(attributes) @body = attributes[:body] && Util::HTTPEvent.normalize_body(attributes[:body]) @content_length = Timber::Util::Object.try(attributes[:content_length], :to_i) @headers = Util::HTTPEvent.normalize_headers(attributes[:headers]) @host = attributes[:host] @method = Util::HTTPEvent.normalize_method(attributes[:method]) || raise(ArgumentError.new(":method is required")) @path = attributes[:path] @port = attributes[:port] @query_string = Util::HTTPEvent.normalize_query_string(attributes[:query_string]) @scheme = attributes[:scheme] @request_id = attributes[:request_id] end def to_hash {body: body, content_length: content_length, headers: headers, host: host, method: method, path: path, port: port, query_string: query_string, request_id: request_id, scheme: scheme} end alias to_h to_hash # Builds a hash representation containing simple objects, suitable for serialization (JSON). def as_json(_options = {}) {:http_request => to_hash} end def message 'Started %s "%s"' % [method, path] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
timber-2.5.1 | lib/timber/events/http_request.rb |