scout_apm 3.0.0.pre25 → 4.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (133) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/test.yml +49 -0
  3. data/.gitignore +1 -1
  4. data/.rubocop.yml +5 -5
  5. data/.travis.yml +19 -14
  6. data/CHANGELOG.markdown +148 -4
  7. data/Gemfile +1 -7
  8. data/README.markdown +30 -4
  9. data/Rakefile +1 -1
  10. data/ext/allocations/allocations.c +2 -0
  11. data/gems/README.md +28 -0
  12. data/gems/octoshark.gemfile +4 -0
  13. data/gems/rails3.gemfile +5 -0
  14. data/gems/rails4.gemfile +4 -0
  15. data/gems/rails5.gemfile +4 -0
  16. data/gems/rails6.gemfile +4 -0
  17. data/lib/scout_apm.rb +38 -9
  18. data/lib/scout_apm/agent.rb +29 -10
  19. data/lib/scout_apm/agent/exit_handler.rb +0 -1
  20. data/lib/scout_apm/agent_context.rb +22 -3
  21. data/lib/scout_apm/app_server_load.rb +7 -2
  22. data/lib/scout_apm/attribute_arranger.rb +0 -2
  23. data/lib/scout_apm/auto_instrument.rb +5 -0
  24. data/lib/scout_apm/auto_instrument/instruction_sequence.rb +31 -0
  25. data/lib/scout_apm/auto_instrument/layer.rb +23 -0
  26. data/lib/scout_apm/auto_instrument/parser.rb +27 -0
  27. data/lib/scout_apm/auto_instrument/rails.rb +175 -0
  28. data/lib/scout_apm/background_job_integrations/legacy_sneakers.rb +55 -0
  29. data/lib/scout_apm/background_job_integrations/que.rb +134 -0
  30. data/lib/scout_apm/background_job_integrations/resque.rb +6 -2
  31. data/lib/scout_apm/background_job_integrations/shoryuken.rb +124 -0
  32. data/lib/scout_apm/background_job_integrations/sidekiq.rb +5 -19
  33. data/lib/scout_apm/background_job_integrations/sneakers.rb +87 -0
  34. data/lib/scout_apm/config.rb +45 -8
  35. data/lib/scout_apm/detailed_trace.rb +217 -0
  36. data/lib/scout_apm/environment.rb +19 -1
  37. data/lib/scout_apm/error.rb +27 -0
  38. data/lib/scout_apm/error_service.rb +32 -0
  39. data/lib/scout_apm/error_service/error_buffer.rb +39 -0
  40. data/lib/scout_apm/error_service/error_record.rb +211 -0
  41. data/lib/scout_apm/error_service/ignored_exceptions.rb +66 -0
  42. data/lib/scout_apm/error_service/middleware.rb +32 -0
  43. data/lib/scout_apm/error_service/notifier.rb +33 -0
  44. data/lib/scout_apm/error_service/payload.rb +47 -0
  45. data/lib/scout_apm/error_service/periodic_work.rb +17 -0
  46. data/lib/scout_apm/error_service/railtie.rb +11 -0
  47. data/lib/scout_apm/error_service/sidekiq.rb +80 -0
  48. data/lib/scout_apm/extensions/transaction_callback_payload.rb +1 -1
  49. data/lib/scout_apm/fake_store.rb +3 -0
  50. data/lib/scout_apm/framework_integrations/rails_2.rb +2 -1
  51. data/lib/scout_apm/framework_integrations/rails_3_or_4.rb +17 -6
  52. data/lib/scout_apm/git_revision.rb +6 -3
  53. data/lib/scout_apm/instant/middleware.rb +2 -1
  54. data/lib/scout_apm/instrument_manager.rb +8 -7
  55. data/lib/scout_apm/instruments/action_controller_rails_2.rb +3 -1
  56. data/lib/scout_apm/instruments/action_controller_rails_3_rails4.rb +56 -55
  57. data/lib/scout_apm/instruments/action_view.rb +126 -26
  58. data/lib/scout_apm/instruments/active_record.rb +70 -19
  59. data/lib/scout_apm/instruments/http.rb +48 -0
  60. data/lib/scout_apm/instruments/memcached.rb +43 -0
  61. data/lib/scout_apm/instruments/mongoid.rb +9 -4
  62. data/lib/scout_apm/instruments/net_http.rb +8 -1
  63. data/lib/scout_apm/job_record.rb +4 -2
  64. data/lib/scout_apm/layaway_file.rb +4 -0
  65. data/lib/scout_apm/layer.rb +6 -57
  66. data/lib/scout_apm/layer_children_set.rb +15 -6
  67. data/lib/scout_apm/layer_converters/converter_base.rb +15 -30
  68. data/lib/scout_apm/layer_converters/database_converter.rb +2 -15
  69. data/lib/scout_apm/layer_converters/slow_job_converter.rb +12 -2
  70. data/lib/scout_apm/layer_converters/slow_request_converter.rb +14 -4
  71. data/lib/scout_apm/layer_converters/trace_converter.rb +184 -0
  72. data/lib/scout_apm/limited_layer.rb +0 -7
  73. data/lib/scout_apm/metric_stats.rb +0 -8
  74. data/lib/scout_apm/middleware.rb +1 -1
  75. data/lib/scout_apm/periodic_work.rb +19 -0
  76. data/lib/scout_apm/remote/message.rb +4 -0
  77. data/lib/scout_apm/remote/server.rb +13 -1
  78. data/lib/scout_apm/reporter.rb +8 -3
  79. data/lib/scout_apm/reporting.rb +2 -1
  80. data/lib/scout_apm/request_histograms.rb +8 -0
  81. data/lib/scout_apm/serializers/app_server_load_serializer.rb +4 -0
  82. data/lib/scout_apm/serializers/directive_serializer.rb +4 -0
  83. data/lib/scout_apm/serializers/payload_serializer.rb +2 -2
  84. data/lib/scout_apm/serializers/payload_serializer_to_json.rb +30 -15
  85. data/lib/scout_apm/slow_job_record.rb +5 -1
  86. data/lib/scout_apm/slow_policy/age_policy.rb +33 -0
  87. data/lib/scout_apm/slow_policy/percent_policy.rb +22 -0
  88. data/lib/scout_apm/slow_policy/percentile_policy.rb +24 -0
  89. data/lib/scout_apm/slow_policy/policy.rb +21 -0
  90. data/lib/scout_apm/slow_policy/speed_policy.rb +16 -0
  91. data/lib/scout_apm/slow_request_policy.rb +18 -77
  92. data/lib/scout_apm/slow_transaction.rb +3 -1
  93. data/lib/scout_apm/store.rb +12 -8
  94. data/lib/scout_apm/tracked_request.rb +39 -30
  95. data/lib/scout_apm/utils/active_record_metric_name.rb +16 -3
  96. data/lib/scout_apm/utils/backtrace_parser.rb +3 -0
  97. data/lib/scout_apm/utils/marshal_logging.rb +90 -0
  98. data/lib/scout_apm/utils/sql_sanitizer.rb +10 -1
  99. data/lib/scout_apm/utils/sql_sanitizer_regex.rb +8 -1
  100. data/lib/scout_apm/utils/sql_sanitizer_regex_1_8_7.rb +6 -0
  101. data/lib/scout_apm/utils/unique_id.rb +27 -0
  102. data/lib/scout_apm/version.rb +1 -1
  103. data/scout_apm.gemspec +13 -7
  104. data/test/test_helper.rb +2 -2
  105. data/test/unit/agent_context_test.rb +29 -0
  106. data/test/unit/auto_instrument/assignments-instrumented.rb +31 -0
  107. data/test/unit/auto_instrument/assignments.rb +31 -0
  108. data/test/unit/auto_instrument/controller-ast.txt +57 -0
  109. data/test/unit/auto_instrument/controller-instrumented.rb +49 -0
  110. data/test/unit/auto_instrument/controller.rb +49 -0
  111. data/test/unit/auto_instrument/rescue_from-instrumented.rb +13 -0
  112. data/test/unit/auto_instrument/rescue_from.rb +13 -0
  113. data/test/unit/auto_instrument_test.rb +54 -0
  114. data/test/unit/environment_test.rb +2 -2
  115. data/test/unit/error_service/error_buffer_test.rb +25 -0
  116. data/test/unit/error_service/ignored_exceptions_test.rb +49 -0
  117. data/test/unit/instruments/active_record_test.rb +40 -0
  118. data/test/unit/layer_children_set_test.rb +9 -0
  119. data/test/unit/request_histograms_test.rb +17 -0
  120. data/test/unit/serializers/payload_serializer_test.rb +39 -5
  121. data/test/unit/slow_request_policy_test.rb +41 -13
  122. data/test/unit/sql_sanitizer_test.rb +78 -0
  123. data/test/unit/utils/active_record_metric_name_test.rb +10 -2
  124. metadata +100 -63
  125. data/ext/stacks/extconf.rb +0 -37
  126. data/ext/stacks/scout_atomics.h +0 -86
  127. data/ext/stacks/stacks.c +0 -814
  128. data/lib/scout_apm/slow_job_policy.rb +0 -111
  129. data/lib/scout_apm/trace_compactor.rb +0 -312
  130. data/lib/scout_apm/utils/fake_stacks.rb +0 -88
  131. data/test/unit/instruments/active_record_instruments_test.rb +0 -5
  132. data/test/unit/slow_job_policy_test.rb +0 -6
  133. data/tester.rb +0 -53
@@ -26,7 +26,7 @@ module ScoutApm
26
26
  # The time in queue of the transaction in ms. If not present, +nil+ is returned as this is unknown.
27
27
  def queue_time_ms
28
28
  # Controller logic
29
- if converter_results[:queue_time] && converter_results[:queue].any?
29
+ if converter_results[:queue_time] && converter_results[:queue_time].any?
30
30
  converter_results[:queue_time].values.first.total_call_time*1000 # ms
31
31
  # Job logic
32
32
  elsif converter_results[:job]
@@ -17,6 +17,9 @@ module ScoutApm
17
17
  def track_one!(type, name, value, options={})
18
18
  end
19
19
 
20
+ def track_trace!(trace, type)
21
+ end
22
+
20
23
  def track_histograms!(histograms, options={})
21
24
  end
22
25
 
@@ -15,7 +15,8 @@ module ScoutApm
15
15
 
16
16
  def present?
17
17
  defined?(::Rails) &&
18
- defined?(ActionController) &&
18
+ defined?(::Rails::VERSION) &&
19
+ defined?(ActionController) &&
19
20
  Rails::VERSION::MAJOR < 3
20
21
  end
21
22
 
@@ -15,7 +15,8 @@ module ScoutApm
15
15
 
16
16
  def present?
17
17
  defined?(::Rails) &&
18
- defined?(ActionController) &&
18
+ defined?(::Rails::VERSION) &&
19
+ defined?(ActionController) &&
19
20
  Rails::VERSION::MAJOR >= 3
20
21
  end
21
22
 
@@ -47,6 +48,7 @@ module ScoutApm
47
48
  when "sqlite" then :sqlite
48
49
  when "mysql" then :mysql
49
50
  when "mysql2" then :mysql
51
+ when "sqlserver" then :sqlserver
50
52
  else default
51
53
  end
52
54
  else
@@ -55,12 +57,21 @@ module ScoutApm
55
57
  end
56
58
  end
57
59
 
60
+ # Note, this code intentionally avoids `.respond_to?` because of an
61
+ # infinite loop created by the Textacular gem (tested against 3.2.2 of
62
+ # that gem), which some customers have installed.
63
+ #
64
+ # The loop was:
65
+ # - Ask for database adapter
66
+ # - Do .respond_to? on AR::Base to look for connection_config (which isn't present on some versions of rails)
67
+ # - Textacular gem has a monkey-patch that queries the columns of the db
68
+ # This obtains a connection, and runs a query.
69
+ # - Scout tries to run SQLSanitizer against the query, which needs the database adapter.
70
+ # - Goes back to first step.
71
+ #
72
+ # We avoid this issue by not calling .respond_to? here, and instead using the less optimal `rescue nil` approach
58
73
  def raw_database_adapter
59
- adapter = if ActiveRecord::Base.respond_to?(:connection_config)
60
- ActiveRecord::Base.connection_config[:adapter].to_s
61
- else
62
- nil
63
- end
74
+ adapter = ActiveRecord::Base.connection_config[:adapter].to_s rescue nil
64
75
 
65
76
  if adapter.nil?
66
77
  adapter = ActiveRecord::Base.configurations[env]["adapter"]
@@ -17,7 +17,7 @@ module ScoutApm
17
17
  private
18
18
 
19
19
  def detect
20
- detect_from_env_var ||
20
+ detect_from_config ||
21
21
  detect_from_heroku ||
22
22
  detect_from_capistrano ||
23
23
  detect_from_git
@@ -27,8 +27,11 @@ module ScoutApm
27
27
  ENV['HEROKU_SLUG_COMMIT']
28
28
  end
29
29
 
30
- def detect_from_env_var
31
- ENV['SCOUT_REVISION_SHA']
30
+ # Config will locate the value from:
31
+ # ENV variable - SCOUT_REVISION_SHA
32
+ # YAML setting - revision_sha
33
+ def detect_from_config
34
+ context.config.value('revision_sha')
32
35
  end
33
36
 
34
37
  def detect_from_capistrano
@@ -94,7 +94,8 @@ module ScoutApm
94
94
 
95
95
  def preconditions_met?
96
96
  if dev_trace_disabled?
97
- logger.debug("DevTrace: isn't activated via config. Try: SCOUT_DEV_TRACE=true rails server")
97
+ # The line below is very noise as it is called on every request.
98
+ # logger.debug("DevTrace: isn't activated via config. Try: SCOUT_DEV_TRACE=true rails server")
98
99
  return false
99
100
  end
100
101
 
@@ -31,6 +31,7 @@ module ScoutApm
31
31
  install_instrument(ScoutApm::Instruments::Mongoid)
32
32
  install_instrument(ScoutApm::Instruments::NetHttp)
33
33
  install_instrument(ScoutApm::Instruments::HttpClient)
34
+ install_instrument(ScoutApm::Instruments::Memcached)
34
35
  install_instrument(ScoutApm::Instruments::Redis)
35
36
  install_instrument(ScoutApm::Instruments::InfluxDB)
36
37
  install_instrument(ScoutApm::Instruments::Elasticsearch)
@@ -41,13 +42,19 @@ module ScoutApm
41
42
  logger.warn $!.backtrace
42
43
  end
43
44
 
45
+ # Allows users to skip individual instruments via the config file
46
+ def skip_instrument?(instrument_klass)
47
+ instrument_short_name = instrument_klass.name.split("::").last
48
+ (config.value("disabled_instruments") || []).include?(instrument_short_name)
49
+ end
50
+
44
51
  private
45
52
 
46
53
  def install_instrument(instrument_klass)
47
54
  return if already_installed?(instrument_klass)
48
55
 
49
56
  if skip_instrument?(instrument_klass)
50
- logger.info "Skipping Disabled Instrument: #{instrument_short_name} - To re-enable, change `disabled_instruments` key in scout_apm.yml"
57
+ logger.info "Skipping Disabled Instrument: #{instrument_klass} - To re-enable, change `disabled_instruments` key in scout_apm.yml"
51
58
  return
52
59
  end
53
60
 
@@ -56,12 +63,6 @@ module ScoutApm
56
63
  instance.install
57
64
  end
58
65
 
59
- # Allows users to skip individual instruments via the config file
60
- def skip_instrument?(instrument_klass)
61
- instrument_short_name = instrument_klass.name.split("::").last
62
- (config.value("disabled_instruments") || []).include?(instrument_short_name)
63
- end
64
-
65
66
  def already_installed?(instrument_klass)
66
67
  @installed_instruments.any? do |already_installed_instrument|
67
68
  instrument_klass === already_installed_instrument
@@ -54,7 +54,9 @@ module ScoutApm
54
54
  def perform_action_with_scout_instruments(*args, &block)
55
55
  req = ScoutApm::RequestManager.lookup
56
56
  req.annotate_request(:uri => request.path) # for security by-default, we don't use request.fullpath which could reveal filtered params.
57
- req.context.add_user(:ip => request.remote_ip)
57
+ if ScoutApm::Agent.instance.context.config.value('collect_remote_ip')
58
+ req.context.add_user(:ip => request.remote_ip)
59
+ end
58
60
  req.set_headers(request.headers)
59
61
  req.start_layer( ScoutApm::Layer.new("Controller", "#{controller_path}/#{action_name}") )
60
62
 
@@ -1,6 +1,6 @@
1
1
  module ScoutApm
2
2
  module Instruments
3
- # instrumentation for Rails 3, 4, and 5 is the same.
3
+ # instrumentation for Rails 3 and Rails 4 is the same.
4
4
  class ActionControllerRails3Rails4
5
5
  attr_reader :context
6
6
 
@@ -17,37 +17,54 @@ module ScoutApm
17
17
  @installed
18
18
  end
19
19
 
20
+ def installed!
21
+ @installed = true
22
+ end
23
+
20
24
  def install
21
- # We previously instrumented ActionController::Metal, which missed
22
- # before and after filter timing. Instrumenting Base includes those
23
- # filters, at the expense of missing out on controllers that don't use
24
- # the full Rails stack.
25
- if defined?(::ActionController)
26
- @installed = true
25
+ if !defined?(::ActiveSupport)
26
+ return
27
+ end
28
+
29
+ # The block below runs with `self` equal to the ActionController::Base or ::API module, not this class we're in now. By saving an instance of ourselves into the `this` variable, we can continue accessing what we need.
30
+ this = self
31
+
32
+ ActiveSupport.on_load(:action_controller) do
33
+ if this.installed?
34
+ this.logger.info("Skipping ActionController - Already Ran")
35
+ next
36
+ else
37
+ this.logger.info("Instrumenting ActionController (on_load)")
38
+ this.installed!
39
+ end
27
40
 
41
+ # We previously instrumented ActionController::Metal, which missed
42
+ # before and after filter timing. Instrumenting Base includes those
43
+ # filters, at the expense of missing out on controllers that don't use
44
+ # the full Rails stack.
28
45
  if defined?(::ActionController::Base)
29
- logger.info "Instrumenting ActionController::Base"
46
+ this.logger.info "Instrumenting ActionController::Base"
30
47
  ::ActionController::Base.class_eval do
31
- # include ScoutApm::Tracer
32
48
  include ScoutApm::Instruments::ActionControllerBaseInstruments
33
49
  end
34
50
  end
35
51
 
36
52
  if defined?(::ActionController::Metal)
37
- logger.info "Instrumenting ActionController::Metal"
53
+ this.logger.info "Instrumenting ActionController::Metal"
38
54
  ::ActionController::Metal.class_eval do
39
55
  include ScoutApm::Instruments::ActionControllerMetalInstruments
40
56
  end
41
57
  end
42
58
 
43
59
  if defined?(::ActionController::API)
44
- logger.info "Instrumenting ActionController::Api"
60
+ this.logger.info "Instrumenting ActionController::Api"
45
61
  ::ActionController::API.class_eval do
46
62
  include ScoutApm::Instruments::ActionControllerAPIInstruments
47
63
  end
48
64
  end
49
65
  end
50
66
 
67
+ ScoutApm::Agent.instance.context.logger.info("Instrumenting ActionController (hook installed)")
51
68
  end
52
69
 
53
70
  # Returns a new anonymous module each time it is called. So
@@ -57,13 +74,24 @@ module ScoutApm
57
74
  # before_action callbacks
58
75
  def self.build_instrument_module
59
76
  Module.new do
77
+ # Determine the URI of this request to capture. Overridable by users in their controller.
78
+ def scout_transaction_uri(config=ScoutApm::Agent.instance.context.config)
79
+ case config.value("uri_reporting")
80
+ when 'path'
81
+ request.path # strips off the query string for more security
82
+ else # default handles filtered params
83
+ request.filtered_path
84
+ end
85
+ end
86
+
60
87
  def process_action(*args)
61
88
  req = ScoutApm::RequestManager.lookup
62
89
  current_layer = req.current_layer
90
+ agent_context = ScoutApm::Agent.instance.context
63
91
 
64
92
  # Check if this this request is to be reported instantly
65
93
  if instant_key = request.cookies['scoutapminstant']
66
- ScoutApm::Agent.instance.context.logger.info "Instant trace request with key=#{instant_key} for path=#{path}"
94
+ agent_context.logger.info "Instant trace request with key=#{instant_key} for path=#{path}"
67
95
  req.instant_key = instant_key
68
96
  end
69
97
 
@@ -71,25 +99,20 @@ module ScoutApm
71
99
  # Don't start a new layer if ActionController::API or ActionController::Base handled it already.
72
100
  super
73
101
  else
74
- req.annotate_request(:uri => ScoutApm::Instruments::ActionControllerRails3Rails4.scout_transaction_uri(request))
102
+ begin
103
+ uri = scout_transaction_uri
104
+ req.annotate_request(:uri => uri)
105
+ rescue
106
+ end
75
107
 
76
108
  # IP Spoofing Protection can throw an exception, just move on w/o remote ip
77
- req.context.add_user(:ip => request.remote_ip) rescue nil
109
+ if agent_context.config.value('collect_remote_ip')
110
+ req.context.add_user(:ip => request.remote_ip) rescue nil
111
+ end
78
112
  req.set_headers(request.headers)
79
113
 
80
114
  resolved_name = scout_action_name(*args)
81
- layer = ScoutApm::Layer.new("Controller", "#{controller_path}/#{resolved_name}")
82
-
83
- if enable_scoutprof? && ScoutApm::Agent.instance.context.config.value('profile') && ScoutApm::Instruments::Stacks::ENABLED
84
- if defined?(ScoutApm::Instruments::Stacks::INSTALLED) && ScoutApm::Instruments::Stacks::INSTALLED
85
- # Capture ScoutProf if we can
86
- req.enable_profiled_thread!
87
- layer.set_root_class(self.class)
88
- layer.traced!
89
- end
90
- end
91
-
92
- req.start_layer(layer)
115
+ req.start_layer( ScoutApm::Layer.new("Controller", "#{controller_path}/#{resolved_name}") )
93
116
  begin
94
117
  super
95
118
  rescue
@@ -103,39 +126,25 @@ module ScoutApm
103
126
  end
104
127
  end
105
128
 
106
- # Given an +ActionDispatch::Request+, formats the uri based on config settings.
107
- # XXX: Don't lookup context like this - find a way to pass it through
108
- def self.scout_transaction_uri(request, config=ScoutApm::Agent.instance.context.config)
109
- case config.value("uri_reporting")
110
- when 'path'
111
- request.path # strips off the query string for more security
112
- else # default handles filtered params
113
- request.filtered_path
114
- end
115
- end
116
129
  end
117
130
 
118
- module ActionControllerBaseInstruments
131
+ module ActionControllerMetalInstruments
119
132
  include ScoutApm::Instruments::ActionControllerRails3Rails4.build_instrument_module
120
133
 
121
134
  def scout_action_name(*args)
122
- action_name
135
+ action_name = args[0]
123
136
  end
137
+ end
124
138
 
125
- def enable_scoutprof?
126
- true
127
- end
139
+ # Empty, noop module to provide compatibility w/ previous manual instrumentation
140
+ module ActionControllerRails3Rails4Instruments
128
141
  end
129
142
 
130
- module ActionControllerMetalInstruments
143
+ module ActionControllerBaseInstruments
131
144
  include ScoutApm::Instruments::ActionControllerRails3Rails4.build_instrument_module
132
145
 
133
146
  def scout_action_name(*args)
134
- action_name = args[0]
135
- end
136
-
137
- def enable_scoutprof?
138
- false
147
+ action_name
139
148
  end
140
149
  end
141
150
 
@@ -145,14 +154,6 @@ module ScoutApm
145
154
  def scout_action_name(*args)
146
155
  action_name
147
156
  end
148
-
149
- def enable_scoutprof?
150
- false
151
- end
152
- end
153
-
154
- # Empty, noop module to provide compatibility w/ previous manual instrumentation
155
- module ActionControllerRails3Rails4Instruments
156
157
  end
157
158
  end
158
159
  end
@@ -1,6 +1,14 @@
1
+ # Note, this instrument has the same logic in both Tracer and Module Prepend
2
+ # versions. If you update, be sure you update in both spots.
3
+ #
4
+ # The prepend version was added for Rails 6 support - ActiveRecord prepends on
5
+ # top of PartialRenderer#collection_with_template, which can (and does) cause
6
+ # infinite loops with our alias_method approach.
7
+ #
8
+ # Even though Rails 6 forced us to use a prepend version, it is now used for
9
+ # all Rubies that support it.
1
10
  module ScoutApm
2
11
  module Instruments
3
- # instrumentation for Rails 3 and Rails 4 is the same.
4
12
  class ActionView
5
13
  attr_reader :context
6
14
 
@@ -17,37 +25,129 @@ module ScoutApm
17
25
  @installed
18
26
  end
19
27
 
28
+ def prependable?
29
+ context.environment.supports_module_prepend?
30
+ end
31
+
20
32
  def install
21
- if defined?(::ActionView) && defined?(::ActionView::PartialRenderer)
22
- @installed = true
23
-
24
- logger.info "Instrumenting ActionView::PartialRenderer"
25
- ::ActionView::PartialRenderer.class_eval do
26
- include ScoutApm::Tracer
27
-
28
- instrument_method :render_partial,
29
- :type => "View",
30
- :name => '#{@template.virtual_path rescue "Unknown Partial"}/Rendering',
31
- :scope => true
32
-
33
- instrument_method :collection_with_template,
34
- :type => "View",
35
- :name => '#{@template.virtual_path rescue "Unknown Collection"}/Rendering',
36
- :scope => true
33
+ return unless defined?(::ActionView) && defined?(::ActionView::PartialRenderer)
34
+
35
+ if prependable?
36
+ install_using_prepend
37
+ else
38
+ install_using_tracer
39
+ end
40
+ @installed = true
41
+ end
42
+
43
+ def install_using_tracer
44
+ logger.info "Instrumenting ActionView::PartialRenderer"
45
+ ::ActionView::PartialRenderer.class_eval do
46
+ include ScoutApm::Tracer
47
+
48
+ instrument_method :render_partial,
49
+ :type => "View",
50
+ :name => '#{@template.virtual_path rescue "Unknown Partial"}/Rendering',
51
+ :scope => true
52
+
53
+ instrument_method :collection_with_template,
54
+ :type => "View",
55
+ :name => '#{@template.virtual_path rescue "Unknown Collection"}/Rendering',
56
+ :scope => true
57
+ end
58
+
59
+ logger.info "Instrumenting ActionView::TemplateRenderer"
60
+ ::ActionView::TemplateRenderer.class_eval do
61
+ include ScoutApm::Tracer
62
+ instrument_method :render_template,
63
+ :type => "View",
64
+ :name => '#{args[0].virtual_path rescue "Unknown"}/Rendering',
65
+ :scope => true
66
+ end
67
+ end
68
+
69
+ def install_using_prepend
70
+ logger.info "Instrumenting ActionView::PartialRenderer"
71
+ ::ActionView::PartialRenderer.prepend(ActionViewPartialRendererInstruments)
72
+
73
+ logger.info "Instrumenting ActionView::TemplateRenderer"
74
+ ::ActionView::TemplateRenderer.prepend(ActionViewTemplateRendererInstruments)
75
+ end
76
+
77
+ module ActionViewPartialRendererInstruments
78
+ # In Rails 6, the signature changed to pass the view & template args directly, as opposed to through the instance var
79
+ # New signature is: def render_partial(view, template)
80
+ def render_partial(*args, **kwargs)
81
+ req = ScoutApm::RequestManager.lookup
82
+
83
+ maybe_template = args[1]
84
+
85
+ template_name = @template.virtual_path rescue nil # Works on Rails 3.2 -> end of Rails 5 series
86
+ template_name ||= maybe_template.virtual_path rescue nil # Works on Rails 6 -> 6.0.3
87
+ template_name ||= "Unknown Partial"
88
+
89
+ layer_name = template_name + "/Rendering"
90
+ layer = ScoutApm::Layer.new("View", layer_name)
91
+ layer.subscopable!
92
+
93
+ begin
94
+ req.start_layer(layer)
95
+ if ScoutApm::Agent.instance.context.environment.supports_kwarg_delegation?
96
+ super(*args, **kwargs)
97
+ else
98
+ super(*args)
99
+ end
100
+ ensure
101
+ req.stop_layer
102
+ end
103
+ end
104
+
105
+ def collection_with_template(*args, **kwargs)
106
+ req = ScoutApm::RequestManager.lookup
107
+
108
+ template_name = @template.virtual_path rescue "Unknown Collection"
109
+ template_name ||= "Unknown Collection"
110
+ layer_name = template_name + "/Rendering"
111
+
112
+ layer = ScoutApm::Layer.new("View", layer_name)
113
+ layer.subscopable!
114
+
115
+ begin
116
+ req.start_layer(layer)
117
+ if ScoutApm::Agent.instance.context.environment.supports_kwarg_delegation?
118
+ super(*args, **kwargs)
119
+ else
120
+ super(*args)
121
+ end
122
+ ensure
123
+ req.stop_layer
37
124
  end
125
+ end
126
+ end
127
+
128
+ module ActionViewTemplateRendererInstruments
129
+ def render_template(*args, **kwargs)
130
+ req = ScoutApm::RequestManager.lookup
38
131
 
39
- logger.info "Instrumenting ActionView::TemplateRenderer"
40
- ::ActionView::TemplateRenderer.class_eval do
41
- include ScoutApm::Tracer
42
- instrument_method :render_template,
43
- :type => "View",
44
- :name => '#{args[0].virtual_path rescue "Unknown"}/Rendering',
45
- :scope => true
132
+ template_name = args[0].virtual_path rescue "Unknown"
133
+ template_name ||= "Unknown"
134
+ layer_name = template_name + "/Rendering"
135
+
136
+ layer = ScoutApm::Layer.new("View", layer_name)
137
+ layer.subscopable!
138
+
139
+ begin
140
+ req.start_layer(layer)
141
+ if ScoutApm::Agent.instance.context.environment.supports_kwarg_delegation?
142
+ super(*args, **kwargs)
143
+ else
144
+ super(*args)
145
+ end
146
+ ensure
147
+ req.stop_layer
46
148
  end
47
149
  end
48
150
  end
49
151
  end
50
152
  end
51
153
  end
52
-
53
-