Class: ScoutApm::LayerConverters::SlowRequestConverter

Inherits:
ConverterBase
  • Object
show all
Defined in:
lib/scout_apm/layer_converters/slow_request_converter.rb

Instance Attribute Summary

Attributes inherited from ConverterBase

#request, #root_layer, #walker

Instance Method Summary collapse

Methods inherited from ConverterBase

#find_first_layer_of_type, #scope_layer

Constructor Details

#initializeSlowRequestConverter

Returns a new instance of SlowRequestConverter.



4
5
6
7
8
9
10
11
12
13
14
# File 'lib/scout_apm/layer_converters/slow_request_converter.rb', line 4

def initialize(*)
  @backtraces = [] # An Array of MetricMetas that have a backtrace
  super

  # After call to super, so @request is populated
  @points = if request.web?
              ScoutApm::Agent.instance.slow_request_policy.score(request)
            else
              -1
            end
end

Instance Method Details

#attach_backtraces(metric_hash) ⇒ Object

Iterates over the TrackedRequest’s MetricMetas that have backtraces and attaches each to correct MetricMeta in the Metric Hash.



54
55
56
57
58
59
# File 'lib/scout_apm/layer_converters/slow_request_converter.rb', line 54

def attach_backtraces(metric_hash)
  @backtraces.each do |meta_with_backtrace|
    metric_hash.keys.find { |k| k == meta_with_backtrace }.backtrace = meta_with_backtrace.backtrace
  end
  metric_hash
end

#callObject

Unconditionally attempts to convert this into a SlowTransaction object. Can return nil if the request didn’t have any scope_layer.



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/scout_apm/layer_converters/slow_request_converter.rb', line 26

def call
  scope = scope_layer
  return nil unless scope

  ScoutApm::Agent.instance.slow_request_policy.stored!(request)

  uri = request.annotations[:uri] || ""

  (ScoutApm::Agent.instance.config.value("ignore_traces") || []).each do |pattern|
    if /#{pattern}/ =~ uri
      ScoutApm::Agent.instance.logger.debug("Skipped recording a trace for #{uri} due to `ignore_traces` pattern: #{pattern}")
      return nil
    end
  end

  metrics = create_metrics

  SlowTransaction.new(uri,
                      scope.legacy_metric_name,
                      root_layer.total_call_time,
                      metrics,
                      request.context,
                      root_layer.stop_time,
                      [], # stackprof
                      @points)
end

#create_metricsObject

Full metrics from this request. These get aggregated in Store for the overview metrics, or stored permanently in a SlowTransaction Some merging of metrics will happen here, so if a request calls the same ActiveRecord or View repeatedly, it’ll get merged.



65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# File 'lib/scout_apm/layer_converters/slow_request_converter.rb', line 65

def create_metrics
  metric_hash = Hash.new

  # Keep a list of subscopes, but only ever use the front one.  The rest
  # get pushed/popped in cases when we have many levels of subscopable
  # layers.  This lets us push/pop without otherwise keeping track very closely.
  subscope_layers = []

  walker.before do |layer|
    if layer.subscopable?
      subscope_layers.push(layer)
    end
  end

  walker.after do |layer|
    if layer.subscopable?
      subscope_layers.pop
    end
  end

  walker.walk do |layer|
    meta_options = if subscope_layers.first && layer != subscope_layers.first # Don't scope under ourself.
                     subscope_name = subscope_layers.first.legacy_metric_name
                     {:scope => subscope_name}
                   elsif layer == scope_layer # We don't scope the controller under itself
                     {}
                   else
                     {:scope => scope_layer.legacy_metric_name}
                   end

    # Specific Metric
    meta_options.merge!(:desc => layer.desc.to_s) if layer.desc
    meta = MetricMeta.new(layer.legacy_metric_name, meta_options)
    if layer.backtrace
      bt = ScoutApm::Utils::BacktraceParser.new(layer.backtrace).call
      if bt.any? # we could walk thru the call stack and not find in-app code
        meta.backtrace = bt
        # Why not just call meta.backtrace and call it done? The walker
        # could access a later later that generates the same MetricMeta
        # but doesn't have a backtrace. This could be lost in the
        # metric_hash if it is replaced by the new key.
        @backtraces << meta
      else
        ScoutApm::Agent.instance.logger.debug { "Unable to capture an app-specific backtrace for #{meta.inspect}\n#{layer.backtrace}" }
      end
    end
    metric_hash[meta] ||= MetricStats.new( meta_options.has_key?(:scope) )
    stat = metric_hash[meta]
    stat.update!(layer.total_call_time, layer.total_exclusive_time)

    # Merged Metric (no specifics, just sum up by type)
    meta = MetricMeta.new("#{layer.type}/all")
    metric_hash[meta] ||= MetricStats.new(false)
    stat = metric_hash[meta]
    stat.update!(layer.total_call_time, layer.total_exclusive_time)
  end

  metric_hash = attach_backtraces(metric_hash)

  metric_hash
end

#nameObject



16
17
18
# File 'lib/scout_apm/layer_converters/slow_request_converter.rb', line 16

def name
  request.unique_name
end

#scoreObject



20
21
22
# File 'lib/scout_apm/layer_converters/slow_request_converter.rb', line 20

def score
  @points
end