class ScoutApm::Remote::Recorder

Attributes

logger[R]
remote_agent_host[R]
remote_agent_port[R]

Public Class Methods

new(remote_agent_host, remote_agent_port, logger) click to toggle source
# File lib/scout_apm/remote/recorder.rb, line 8
def initialize(remote_agent_host, remote_agent_port, logger)
  @remote_agent_host = remote_agent_host
  @remote_agent_port = remote_agent_port
  @logger = logger
end

Public Instance Methods

post(encoded_message) click to toggle source
# File lib/scout_apm/remote/recorder.rb, line 49
def post(encoded_message)
  http = Net::HTTP.new(remote_agent_host, remote_agent_port)
  request = Net::HTTP::Post.new("/users")
  request.body = encoded_message
  response = http.request(request)
end
record!(request) click to toggle source
# File lib/scout_apm/remote/recorder.rb, line 23
def record!(request)
  begin
    t1 = Time.now
    # Mark this request as recorded, so the next lookup on this thread, it
    # can be recreated
    request.recorded!

    # Only send requests that we actually want. Incidental http &
    # background thread stuff can just be dropped
    unless request.job? || request.web?
      return
    end

    request.prepare_to_dump!
    message = ScoutApm::Remote::Message.new('record', 'record!', request)
    encoded = message.encode
    logger.debug "Remote Agent: Posting a message of length: #{encoded.length}"
    post(encoded)
    t2 = Time.now

    logger.debug("Remote Recording took: #{t2.to_f - t1.to_f} seconds")
  rescue => e
    logger.debug "Remote: Error while sending to collector: #{e.inspect}, #{e.backtrace.join("\n")}"
  end
end
start() click to toggle source
# File lib/scout_apm/remote/recorder.rb, line 14
def start
  # nothing to do
  self
end
stop() click to toggle source
# File lib/scout_apm/remote/recorder.rb, line 19
def stop
  # nothing to do
end