begin require "oj" rescue LoadError require "json" end module LogjamAgent class Request attr_reader :fields, :uuid def initialize(app, env, initial_fields) @app = app @env = env @forwarder = Forwarders.get(app, env) @lines = [] @uuid = LogjamAgent.generate_uuid @fields = initial_fields.merge(:request_id => @uuid, :host => LogjamAgent.hostname, :process_id => Process.pid, :lines => @lines) @mutex = Mutex.new @ignored = false end def ignore! @ignored = true end def ignored? @ignored end def id "#{@app}-#{@env}-#{@uuid}" end def action @fields[:action] end def caller_id @fields[:caller_id] end def caller_action @fields[:caller_action] end def add_line(severity, timestamp, message) @mutex.synchronize do @lines << [severity, format_time(timestamp), message.strip] end end def add_exception(exception) @mutex.synchronize do ((@fields[:exceptions] ||= []) << exception).uniq! end end def forward return if @ignored engine = @fields.delete(:engine) # puts @fields.inspect @forwarder.forward(LogjamAgent.encode_payload(@fields), :engine => 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) LogjamAgent.logger.error exception.to_s if LogjamAgent.logger LogjamAgent.error_handler.call(exception) rescue Exception # swallow all exceptions end end end