Class: TraceView::Reporter

Inherits:
Object
  • Object
show all
Defined in:
lib/oboe_metal.rb

Class Method Summary collapse

Class Method Details

.clear_all_tracesObject

clear_all_traces

Truncates the trace output file to zero



48
49
50
# File 'lib/oboe_metal.rb', line 48

def self.clear_all_traces
  File.truncate($trace_file, 0)
end

.get_all_tracesObject

get_all_traces

Retrieves all traces written to the trace file



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/oboe_metal.rb', line 57

def self.get_all_traces
  io = File.open($trace_file, 'r')
  contents = io.readlines(nil)

  return contents if contents.empty?

  s = StringIO.new(contents[0])

  traces = []

  until s.eof?
    if ::BSON.respond_to? :read_bson_document
      traces << BSON.read_bson_document(s)
    else
      traces << BSON::Document.from_bson(s)
    end
  end

  traces
end

.sendReport(evt) ⇒ Object



39
40
41
# File 'lib/oboe_metal.rb', line 39

def self.sendReport(evt)
  TraceView.reporter.sendReport(evt)
end

.startObject

Initialize the TraceView Context, reporter and report the initialization



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/oboe_metal.rb', line 15

def self.start
  return unless TraceView.loaded

  begin
    Oboe_metal::Context.init

    if ENV.key?('TRACEVIEW_GEM_TEST')
      TraceView.reporter = TraceView::FileReporter.new('/tmp/trace_output.bson')
    else
      TraceView.reporter = TraceView::UdpReporter.new(TraceView::Config[:reporter_host], TraceView::Config[:reporter_port])
    end

    # Only report __Init from here if we are not instrumenting a framework.
    # Otherwise, frameworks will handle reporting __Init after full initialization
    unless defined?(::Rails) || defined?(::Sinatra) || defined?(::Padrino) || defined?(::Grape)
      TraceView::API.report_init unless ENV.key?('TRACEVIEW_GEM_TEST')
    end

  rescue => e
    $stderr.puts e.message
    raise
  end
end