Sha256: 7be57b2d8ba521dad97bf0850e183b70ff7c9442ddb7a2d0e9353d288cc58bdd

Contents?: true

Size: 1.25 KB

Versions: 7

Compression:

Stored size: 1.25 KB

Contents

require "json"

module LogjamAgent
  class Request
    attr_reader :caller_id, :fields

    def initialize(app, env, logger, initial_fields)
      @logger = logger
      @app = app
      @env = env
      @forwarder = Forwarders.get(app, env)
      @lines = []
      @id = UUID4R::uuid(1).gsub('-','')
      @fields = initial_fields.merge(:request_id => @id, :host => LogjamAgent.hostname, :process_id => Process.pid, :lines => @lines)
    end

    def id
      "#{@app}-#{@env}-#{@id}"
    end

    def caller_id
      @fields[:caller_id]
    end

    def add_line(severity, timestamp, message)
      @lines << [severity, format_time(timestamp), message.strip]
    end

    def add_exception(exception)
      ((@fields[:exceptions] ||= []) << exception).uniq!
    end

    def forward
      engine = @fields.delete(:engine)
      @forwarder.forward(@fields.to_json, engine)
    rescue Exception => e
      handle_forwarding_error(e)
    end

    private

    def format_time(t)
      # iso time with microseconds
      t.strftime("%Y-%m-%dT%H:%M:%S.#{"%06d" % t.usec}")
    end

    def handle_forwarding_error(exception)
      @logger.error exception.to_s
      LogjamAgent.error_handler.call(exception)
    rescue Exception
      # swallow all exceptions
    end

  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
logjam_agent-0.4.4 lib/logjam_agent/request.rb
logjam_agent-0.4.3 lib/logjam_agent/request.rb
logjam_agent-0.4.2 lib/logjam_agent/request.rb
logjam_agent-0.4.1 lib/logjam_agent/request.rb
logjam_agent-0.4.0 lib/logjam_agent/request.rb
logjam_agent-0.3.6 lib/logjam_agent/request.rb
logjam_agent-0.3.5 lib/logjam_agent/request.rb