newrelic_rpm 8.16.0 → 9.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (243) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +3 -41
  4. data/.rubocop_todo.yml +13 -14
  5. data/.simplecov +1 -1
  6. data/CHANGELOG.md +184 -0
  7. data/CONTRIBUTING.md +1 -1
  8. data/Gemfile +1 -1
  9. data/Guardfile +7 -7
  10. data/README.md +3 -2
  11. data/Rakefile +8 -8
  12. data/Thorfile +1 -1
  13. data/bin/nrdebug +36 -36
  14. data/init.rb +1 -1
  15. data/lib/new_relic/agent/agent.rb +3 -16
  16. data/lib/new_relic/agent/agent_helpers/connect.rb +5 -10
  17. data/lib/new_relic/agent/agent_helpers/harvest.rb +4 -4
  18. data/lib/new_relic/agent/agent_helpers/shutdown.rb +5 -5
  19. data/lib/new_relic/agent/agent_helpers/special_startup.rb +3 -4
  20. data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +47 -39
  21. data/lib/new_relic/agent/agent_helpers/startup.rb +13 -13
  22. data/lib/new_relic/agent/agent_helpers/transmit.rb +6 -6
  23. data/lib/new_relic/agent/agent_logger.rb +9 -9
  24. data/lib/new_relic/agent/attribute_filter.rb +2 -4
  25. data/lib/new_relic/agent/attribute_processing.rb +2 -2
  26. data/lib/new_relic/agent/audit_logger.rb +5 -5
  27. data/lib/new_relic/agent/autostart.rb +1 -1
  28. data/lib/new_relic/agent/commands/agent_command.rb +2 -2
  29. data/lib/new_relic/agent/commands/agent_command_router.rb +5 -4
  30. data/lib/new_relic/agent/commands/thread_profiler_session.rb +8 -8
  31. data/lib/new_relic/agent/configuration/default_source.rb +155 -530
  32. data/lib/new_relic/agent/configuration/environment_source.rb +2 -2
  33. data/lib/new_relic/agent/configuration/high_security_source.rb +3 -5
  34. data/lib/new_relic/agent/configuration/manager.rb +2 -2
  35. data/lib/new_relic/agent/configuration/security_policy_source.rb +10 -26
  36. data/lib/new_relic/agent/configuration/server_source.rb +24 -24
  37. data/lib/new_relic/agent/configuration/yaml_source.rb +4 -4
  38. data/lib/new_relic/agent/connect/request_builder.rb +1 -1
  39. data/lib/new_relic/agent/connect/response_handler.rb +1 -1
  40. data/lib/new_relic/agent/custom_event_aggregator.rb +4 -4
  41. data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
  42. data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
  43. data/lib/new_relic/agent/database/obfuscator.rb +2 -2
  44. data/lib/new_relic/agent/database.rb +4 -18
  45. data/lib/new_relic/agent/datastores/metric_helper.rb +5 -5
  46. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +11 -11
  47. data/lib/new_relic/agent/datastores/redis.rb +6 -6
  48. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +8 -10
  49. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +10 -10
  50. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +7 -7
  51. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +1 -1
  52. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +6 -6
  53. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +7 -7
  54. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +4 -4
  55. data/lib/new_relic/agent/distributed_tracing.rb +5 -5
  56. data/lib/new_relic/agent/error_collector.rb +36 -8
  57. data/lib/new_relic/agent/error_filter.rb +5 -5
  58. data/lib/new_relic/agent/error_trace_aggregator.rb +5 -4
  59. data/lib/new_relic/agent/event_loop.rb +3 -3
  60. data/lib/new_relic/agent/external.rb +1 -1
  61. data/lib/new_relic/agent/harvester.rb +1 -3
  62. data/lib/new_relic/agent/heap.rb +2 -1
  63. data/lib/new_relic/agent/hostname.rb +1 -1
  64. data/lib/new_relic/agent/http_clients/abstract.rb +9 -21
  65. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +7 -3
  66. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +7 -5
  67. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +4 -0
  68. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +6 -2
  69. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +5 -1
  70. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +8 -5
  71. data/lib/new_relic/agent/http_clients/uri_util.rb +2 -2
  72. data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +5 -2
  73. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +3 -2
  74. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +3 -3
  75. data/lib/new_relic/agent/instrumentation/active_job.rb +2 -2
  76. data/lib/new_relic/agent/instrumentation/active_record.rb +3 -2
  77. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +38 -35
  78. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +3 -3
  79. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +2 -2
  80. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +3 -2
  81. data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +3 -3
  82. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +6 -4
  83. data/lib/new_relic/agent/instrumentation/curb/chain.rb +1 -1
  84. data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +5 -5
  85. data/lib/new_relic/agent/instrumentation/curb.rb +1 -1
  86. data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +2 -1
  87. data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +1 -1
  88. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +2 -1
  89. data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +1 -1
  90. data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +3 -3
  91. data/lib/new_relic/agent/instrumentation/elasticsearch.rb +1 -1
  92. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +2 -1
  93. data/lib/new_relic/agent/instrumentation/excon.rb +3 -3
  94. data/lib/new_relic/agent/instrumentation/fiber/chain.rb +20 -0
  95. data/lib/new_relic/agent/instrumentation/fiber/instrumentation.rb +24 -0
  96. data/lib/new_relic/agent/instrumentation/fiber/prepend.rb +18 -0
  97. data/lib/new_relic/agent/instrumentation/fiber.rb +25 -0
  98. data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +4 -4
  99. data/lib/new_relic/agent/instrumentation/grape.rb +4 -4
  100. data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +2 -1
  101. data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +3 -3
  102. data/lib/new_relic/agent/instrumentation/httprb.rb +1 -1
  103. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
  104. data/lib/new_relic/agent/instrumentation/logger.rb +1 -1
  105. data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +2 -2
  106. data/lib/new_relic/agent/instrumentation/memcache.rb +8 -8
  107. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +3 -3
  108. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +1 -1
  109. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +5 -5
  110. data/lib/new_relic/agent/instrumentation/net_http.rb +2 -2
  111. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +1 -1
  112. data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +3 -3
  113. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +2 -2
  114. data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +1 -1
  115. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +3 -2
  116. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
  117. data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +8 -15
  118. data/lib/new_relic/agent/instrumentation/rake.rb +3 -3
  119. data/lib/new_relic/agent/instrumentation/redis/constants.rb +1 -1
  120. data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +2 -1
  121. data/lib/new_relic/agent/instrumentation/redis.rb +1 -1
  122. data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
  123. data/lib/new_relic/agent/instrumentation/resque.rb +1 -1
  124. data/lib/new_relic/agent/instrumentation/sequel.rb +8 -9
  125. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +10 -10
  126. data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +1 -1
  127. data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +1 -1
  128. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
  129. data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +6 -5
  130. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
  131. data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +3 -7
  132. data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +2 -1
  133. data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +5 -5
  134. data/lib/new_relic/agent/javascript_instrumentor.rb +29 -24
  135. data/lib/new_relic/agent/linking_metadata.rb +2 -2
  136. data/lib/new_relic/agent/log_event_aggregator.rb +15 -15
  137. data/lib/new_relic/agent/logging.rb +73 -33
  138. data/lib/new_relic/agent/messaging.rb +7 -5
  139. data/lib/new_relic/agent/method_tracer.rb +6 -6
  140. data/lib/new_relic/agent/method_tracer_helpers.rb +1 -1
  141. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +4 -5
  142. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +1 -1
  143. data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
  144. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +2 -2
  145. data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +0 -1
  146. data/lib/new_relic/agent/new_relic_service.rb +15 -15
  147. data/lib/new_relic/agent/obfuscator.rb +1 -1
  148. data/lib/new_relic/agent/parameter_filtering.rb +6 -6
  149. data/lib/new_relic/agent/pipe_channel_manager.rb +7 -6
  150. data/lib/new_relic/agent/pipe_service.rb +5 -3
  151. data/lib/new_relic/agent/priority_sampled_buffer.rb +1 -1
  152. data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +0 -1
  153. data/lib/new_relic/agent/sampler.rb +1 -1
  154. data/lib/new_relic/agent/sampler_collection.rb +1 -1
  155. data/lib/new_relic/agent/samplers/cpu_sampler.rb +5 -5
  156. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +9 -9
  157. data/lib/new_relic/agent/samplers/memory_sampler.rb +9 -9
  158. data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
  159. data/lib/new_relic/agent/span_event_aggregator.rb +4 -4
  160. data/lib/new_relic/agent/span_event_primitive.rb +2 -2
  161. data/lib/new_relic/agent/sql_sampler.rb +2 -2
  162. data/lib/new_relic/agent/stats.rb +1 -1
  163. data/lib/new_relic/agent/synthetics_event_aggregator.rb +1 -1
  164. data/lib/new_relic/agent/system_info.rb +10 -10
  165. data/lib/new_relic/agent/threading/agent_thread.rb +1 -1
  166. data/lib/new_relic/agent/threading/backtrace_node.rb +3 -3
  167. data/lib/new_relic/agent/threading/backtrace_service.rb +3 -7
  168. data/lib/new_relic/agent/threading/thread_profile.rb +5 -5
  169. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
  170. data/lib/new_relic/agent/tracer.rb +18 -8
  171. data/lib/new_relic/agent/transaction/abstract_segment.rb +9 -9
  172. data/lib/new_relic/agent/transaction/datastore_segment.rb +1 -1
  173. data/lib/new_relic/agent/transaction/distributed_tracer.rb +7 -6
  174. data/lib/new_relic/agent/transaction/distributed_tracing.rb +6 -6
  175. data/lib/new_relic/agent/transaction/external_request_segment.rb +11 -11
  176. data/lib/new_relic/agent/transaction/message_broker_segment.rb +1 -1
  177. data/lib/new_relic/agent/transaction/request_attributes.rb +2 -2
  178. data/lib/new_relic/agent/transaction/segment.rb +1 -1
  179. data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
  180. data/lib/new_relic/agent/transaction/trace.rb +1 -1
  181. data/lib/new_relic/agent/transaction/trace_context.rb +4 -4
  182. data/lib/new_relic/agent/transaction/trace_node.rb +8 -7
  183. data/lib/new_relic/agent/transaction/tracing.rb +4 -4
  184. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
  185. data/lib/new_relic/agent/transaction.rb +56 -52
  186. data/lib/new_relic/agent/transaction_error_primitive.rb +5 -5
  187. data/lib/new_relic/agent/transaction_event_aggregator.rb +4 -4
  188. data/lib/new_relic/agent/transaction_event_primitive.rb +3 -3
  189. data/lib/new_relic/agent/transaction_sampler.rb +3 -3
  190. data/lib/new_relic/agent/transaction_time_aggregator.rb +7 -3
  191. data/lib/new_relic/agent/utilization/aws.rb +1 -1
  192. data/lib/new_relic/agent/utilization/azure.rb +3 -3
  193. data/lib/new_relic/agent/utilization/gcp.rb +3 -3
  194. data/lib/new_relic/agent/utilization/pcf.rb +1 -1
  195. data/lib/new_relic/agent/utilization/vendor.rb +1 -1
  196. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
  197. data/lib/new_relic/agent/vm/mri_vm.rb +9 -8
  198. data/lib/new_relic/agent/worker_loop.rb +1 -1
  199. data/lib/new_relic/agent.rb +79 -35
  200. data/lib/new_relic/cli/command.rb +3 -3
  201. data/lib/new_relic/cli/commands/deployments.rb +26 -25
  202. data/lib/new_relic/cli/commands/install.rb +23 -23
  203. data/lib/new_relic/collection_helper.rb +2 -2
  204. data/lib/new_relic/constants.rb +7 -8
  205. data/lib/new_relic/control/class_methods.rb +3 -3
  206. data/lib/new_relic/control/frameworks/rails.rb +30 -18
  207. data/lib/new_relic/control/instance_methods.rb +6 -6
  208. data/lib/new_relic/control/instrumentation.rb +1 -1
  209. data/lib/new_relic/control/private_instance_methods.rb +1 -1
  210. data/lib/new_relic/dependency_detection.rb +4 -17
  211. data/lib/new_relic/environment_report.rb +4 -4
  212. data/lib/new_relic/helper.rb +2 -1
  213. data/lib/new_relic/language_support.rb +1 -1
  214. data/lib/new_relic/latest_changes.rb +5 -5
  215. data/lib/new_relic/local_environment.rb +0 -10
  216. data/lib/new_relic/noticed_error.rb +20 -18
  217. data/lib/new_relic/rack/browser_monitoring.rb +20 -16
  218. data/lib/new_relic/recipes/capistrano3.rb +1 -1
  219. data/lib/new_relic/recipes/capistrano_legacy.rb +6 -6
  220. data/lib/new_relic/recipes/helpers/send_deployment.rb +5 -5
  221. data/lib/new_relic/supportability_helper.rb +2 -1
  222. data/lib/new_relic/version.rb +2 -2
  223. data/lib/newrelic_rpm.rb +4 -4
  224. data/lib/sequel/extensions/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +5 -5
  225. data/lib/sequel/plugins/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +4 -4
  226. data/lib/tasks/config.rake +12 -12
  227. data/lib/tasks/coverage_report.rake +3 -3
  228. data/lib/tasks/helpers/format.rb +10 -10
  229. data/lib/tasks/helpers/removers.rb +5 -5
  230. data/lib/tasks/install.rake +4 -4
  231. data/lib/tasks/instrumentation_generator/instrumentation.thor +7 -10
  232. data/lib/tasks/instrumentation_generator/templates/Envfile.tt +1 -1
  233. data/lib/tasks/multiverse.rb +12 -6
  234. data/lib/tasks/tests.rake +6 -6
  235. data/newrelic.yml +5 -8
  236. data/newrelic_rpm.gemspec +29 -26
  237. data/test/agent_helper.rb +25 -24
  238. metadata +13 -14
  239. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +0 -83
  240. data/lib/new_relic/agent/instrumentation/authlogic.rb +0 -33
  241. data/lib/new_relic/agent/instrumentation/data_mapper.rb +0 -215
  242. data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +0 -36
  243. data/lib/new_relic/agent/instrumentation/sunspot.rb +0 -41
@@ -23,10 +23,10 @@ module NewRelic
23
23
  include Tracing
24
24
 
25
25
  # for nested transactions
26
- NESTED_TRANSACTION_PREFIX = "Nested/"
27
- CONTROLLER_PREFIX = "Controller/"
28
- MIDDLEWARE_PREFIX = "Middleware/Rack/"
29
- OTHER_TRANSACTION_PREFIX = "OtherTransaction/"
26
+ NESTED_TRANSACTION_PREFIX = 'Nested/'
27
+ CONTROLLER_PREFIX = 'Controller/'
28
+ MIDDLEWARE_PREFIX = 'Middleware/Rack/'
29
+ OTHER_TRANSACTION_PREFIX = 'OtherTransaction/'
30
30
  TASK_PREFIX = "#{OTHER_TRANSACTION_PREFIX}Background/"
31
31
  RAKE_PREFIX = "#{OTHER_TRANSACTION_PREFIX}Rake/"
32
32
  MESSAGE_PREFIX = "#{OTHER_TRANSACTION_PREFIX}Message/"
@@ -37,24 +37,21 @@ module NewRelic
37
37
 
38
38
  WEB_TRANSACTION_CATEGORIES = [:web, :controller, :uri, :rack, :sinatra, :grape, :middleware, :action_cable].freeze
39
39
 
40
- MIDDLEWARE_SUMMARY_METRICS = ["Middleware/all"].freeze
41
- WEB_SUMMARY_METRIC = "HttpDispatcher"
40
+ MIDDLEWARE_SUMMARY_METRICS = ['Middleware/all'].freeze
41
+ WEB_SUMMARY_METRIC = 'HttpDispatcher'
42
42
  OTHER_SUMMARY_METRIC = "#{OTHER_TRANSACTION_PREFIX}all"
43
- QUEUE_TIME_METRIC = "WebFrontend/QueueTime"
43
+ QUEUE_TIME_METRIC = 'WebFrontend/QueueTime'
44
44
 
45
- APDEX_S = "S"
46
- APDEX_T = "T"
47
- APDEX_F = "F"
48
- APDEX_ALL_METRIC = "ApdexAll"
49
- APDEX_METRIC = "Apdex"
50
- APDEX_OTHER_METRIC = "ApdexOther"
51
- APDEX_TXN_METRIC_PREFIX = "Apdex/"
52
- APDEX_OTHER_TXN_METRIC_PREFIX = "ApdexOther/Transaction/"
45
+ APDEX_S = 'S'
46
+ APDEX_T = 'T'
47
+ APDEX_F = 'F'
48
+ APDEX_ALL_METRIC = 'ApdexAll'
49
+ APDEX_METRIC = 'Apdex'
50
+ APDEX_OTHER_METRIC = 'ApdexOther'
51
+ APDEX_TXN_METRIC_PREFIX = 'Apdex/'
52
+ APDEX_OTHER_TXN_METRIC_PREFIX = 'ApdexOther/Transaction/'
53
53
 
54
- JRUBY_CPU_TIME_ERROR = "Error calculating JRuby CPU Time"
55
-
56
- # reference to the transaction state managing this transaction
57
- attr_accessor :state
54
+ JRUBY_CPU_TIME_ERROR = 'Error calculating JRuby CPU Time'
58
55
 
59
56
  # A Time instance for the start time, never nil
60
57
  attr_accessor :start_time
@@ -121,7 +118,6 @@ module NewRelic
121
118
  def self.start_new_transaction(state, category, options)
122
119
  txn = Transaction.new(category, options)
123
120
  state.reset(txn)
124
- txn.state = state
125
121
  txn.start(options)
126
122
  txn
127
123
  end
@@ -159,7 +155,7 @@ module NewRelic
159
155
  NewRelic::Agent.record_api_supportability_metric(:recording_web_transaction?)
160
156
 
161
157
  txn = tl_current
162
- txn && txn.recording_web_transaction?
158
+ txn&.recording_web_transaction?
163
159
  end
164
160
 
165
161
  def self.apdex_bucket(duration, failed, apdex_t)
@@ -185,20 +181,21 @@ module NewRelic
185
181
 
186
182
  def add_agent_attribute(key, value, default_destinations)
187
183
  @attributes.add_agent_attribute(key, value, default_destinations)
188
- current_segment.add_agent_attribute(key, value) if current_segment
184
+ # the following line needs else branch coverage
185
+ current_segment.add_agent_attribute(key, value) if current_segment # rubocop:disable Style/SafeNavigation
189
186
  end
190
187
 
191
188
  def self.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
192
189
  if txn = tl_current
193
190
  txn.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
194
191
  else
195
- NewRelic::Agent.logger.debug("Attempted to merge untrusted attributes without transaction")
192
+ NewRelic::Agent.logger.debug('Attempted to merge untrusted attributes without transaction')
196
193
  end
197
194
  end
198
195
 
199
196
  def merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
200
197
  @attributes.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
201
- current_segment.merge_untrusted_agent_attributes(attributes, prefix, default_destinations) if current_segment
198
+ current_segment&.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
202
199
  end
203
200
 
204
201
  @@java_classes_loaded = false
@@ -213,7 +210,7 @@ module NewRelic
213
210
  end
214
211
  end
215
212
 
216
- def initialize(category, options)
213
+ def initialize(category, options) # rubocop:disable Metrics/AbcSize
217
214
  @nesting_max_depth = 0
218
215
  @current_segment_by_thread = {}
219
216
  @current_segment_lock = Mutex.new
@@ -248,6 +245,7 @@ module NewRelic
248
245
  @priority = nil
249
246
 
250
247
  @starting_thread_id = Thread.current.object_id
248
+ @starting_segment_key = current_segment_key
251
249
 
252
250
  @attributes = Attributes.new(NewRelic::Agent.instance.attribute_filter)
253
251
 
@@ -260,20 +258,26 @@ module NewRelic
260
258
  end
261
259
  end
262
260
 
263
- def parent_thread_id
264
- ::Thread.current.nr_parent_thread_id if ::Thread.current.respond_to?(:nr_parent_thread_id)
261
+ def state
262
+ NewRelic::Agent::Tracer.state
265
263
  end
266
264
 
267
- def current_segment
268
- current_thread_id = ::Thread.current.object_id
269
- return current_segment_by_thread[current_thread_id] if current_segment_by_thread[current_thread_id]
270
- return current_segment_by_thread[parent_thread_id] if current_segment_by_thread[parent_thread_id]
265
+ def current_segment_key
266
+ Tracer.current_segment_key
267
+ end
271
268
 
272
- current_segment_by_thread[@starting_thread_id]
269
+ def parent_segment_key
270
+ (::Fiber.current.nr_parent_key if ::Fiber.current.respond_to?(:nr_parent_key)) || (::Thread.current.nr_parent_key if ::Thread.current.respond_to?(:nr_parent_key))
271
+ end
272
+
273
+ def current_segment
274
+ current_segment_by_thread[current_segment_key] ||
275
+ current_segment_by_thread[parent_segment_key] ||
276
+ current_segment_by_thread[@starting_segment_key]
273
277
  end
274
278
 
275
279
  def set_current_segment(new_segment)
276
- @current_segment_lock.synchronize { current_segment_by_thread[::Thread.current.object_id] = new_segment }
280
+ @current_segment_lock.synchronize { current_segment_by_thread[current_segment_key] = new_segment }
277
281
  end
278
282
 
279
283
  def remove_current_segment_by_thread_id(id)
@@ -306,15 +310,15 @@ module NewRelic
306
310
  end
307
311
 
308
312
  def referer
309
- @request_attributes && @request_attributes.referer
313
+ @request_attributes&.referer
310
314
  end
311
315
 
312
316
  def request_path
313
- @request_attributes && @request_attributes.request_path
317
+ @request_attributes&.request_path
314
318
  end
315
319
 
316
320
  def request_port
317
- @request_attributes && @request_attributes.port
321
+ @request_attributes&.port
318
322
  end
319
323
 
320
324
  # This transaction-local hash may be used as temporary storage by
@@ -359,10 +363,8 @@ module NewRelic
359
363
  def set_overriding_transaction_name(name, category)
360
364
  return log_frozen_name(name) if name_frozen?
361
365
 
362
- if influences_transaction_name?(category)
363
- self.overridden_name = name
364
- @category = category if category
365
- end
366
+ self.overridden_name = name
367
+ @category = category if category
366
368
  end
367
369
 
368
370
  def log_frozen_name(name)
@@ -532,7 +534,7 @@ module NewRelic
532
534
 
533
535
  commit!(initial_segment.name) unless @ignore_this_transaction
534
536
  rescue => e
535
- NewRelic::Agent.logger.error("Exception during Transaction#finish", e)
537
+ NewRelic::Agent.logger.error('Exception during Transaction#finish', e)
536
538
  nil
537
539
  ensure
538
540
  state.reset
@@ -593,9 +595,7 @@ module NewRelic
593
595
  add_agent_attribute(:'response.headers.contentType', response_content_type, default_destinations)
594
596
  end
595
597
 
596
- if @request_attributes
597
- @request_attributes.assign_agent_attributes(self)
598
- end
598
+ @request_attributes&.assign_agent_attributes(self)
599
599
 
600
600
  display_host = Agent.config[:'process_host.display_name']
601
601
  unless display_host == NewRelic::Agent::Hostname.get
@@ -734,15 +734,19 @@ module NewRelic
734
734
  def record_exceptions
735
735
  error_recorded = false
736
736
  @exceptions.each do |exception, options|
737
- options[:uri] ||= request_path if request_path
738
- options[:port] = request_port if request_port
739
- options[:metric] = best_name
740
- options[:attributes] = @attributes
741
-
742
- span_id = options.delete(:span_id)
743
- error_recorded = !!agent.error_collector.notice_error(exception, options, span_id) || error_recorded
737
+ error_recorded = record_exception(exception, options, error_recorded)
744
738
  end
745
- payload[:error] = error_recorded if payload
739
+ payload&.[]=(:error, error_recorded)
740
+ end
741
+
742
+ def record_exception(exception, options, error_recorded)
743
+ options[:uri] ||= request_path if request_path
744
+ options[:port] = request_port if request_port
745
+ options[:metric] = best_name
746
+ options[:attributes] = @attributes
747
+
748
+ span_id = options.delete(:span_id)
749
+ !!agent.error_collector.notice_error(exception, options, span_id) || error_recorded
746
750
  end
747
751
 
748
752
  # Do not call this. Invoke the class method instead.
@@ -28,11 +28,11 @@ module NewRelic
28
28
  SAMPLED_KEY = 'sampled'.freeze
29
29
  GUID_KEY = 'nr.transactionGuid'.freeze
30
30
  REFERRING_TRANSACTION_GUID_KEY = 'nr.referringTransactionGuid'.freeze
31
- SYNTHETICS_RESOURCE_ID_KEY = "nr.syntheticsResourceId".freeze
32
- SYNTHETICS_JOB_ID_KEY = "nr.syntheticsJobId".freeze
33
- SYNTHETICS_MONITOR_ID_KEY = "nr.syntheticsMonitorId".freeze
34
- PRIORITY_KEY = "priority".freeze
35
- SPAN_ID_KEY = "spanId".freeze
31
+ SYNTHETICS_RESOURCE_ID_KEY = 'nr.syntheticsResourceId'.freeze
32
+ SYNTHETICS_JOB_ID_KEY = 'nr.syntheticsJobId'.freeze
33
+ SYNTHETICS_MONITOR_ID_KEY = 'nr.syntheticsMonitorId'.freeze
34
+ PRIORITY_KEY = 'priority'.freeze
35
+ SPAN_ID_KEY = 'spanId'.freeze
36
36
 
37
37
  def create(noticed_error, payload, span_id)
38
38
  [
@@ -18,7 +18,7 @@ module NewRelic
18
18
 
19
19
  def record(priority: nil, event: nil, &blk)
20
20
  unless event || priority && blk
21
- raise ArgumentError, "Expected priority and block, or event"
21
+ raise ArgumentError, 'Expected priority and block, or event'
22
22
  end
23
23
 
24
24
  return unless enabled?
@@ -38,7 +38,7 @@ module NewRelic
38
38
  end
39
39
 
40
40
  def record_sampling_rate(metadata) # THREAD_LOCAL_ACCESS
41
- NewRelic::Agent.logger.debug("Sampled %d / %d (%.1f %%) requests this cycle, %d / %d (%.1f %%) since startup" % [
41
+ NewRelic::Agent.logger.debug('Sampled %d / %d (%.1f %%) requests this cycle, %d / %d (%.1f %%) since startup' % [
42
42
  metadata[:captured],
43
43
  metadata[:seen],
44
44
  (metadata[:captured].to_f / metadata[:seen] * 100.0),
@@ -48,8 +48,8 @@ module NewRelic
48
48
  ])
49
49
 
50
50
  engine = NewRelic::Agent.instance.stats_engine
51
- engine.tl_record_supportability_metric_count("TransactionEventAggregator/requests", metadata[:seen])
52
- engine.tl_record_supportability_metric_count("TransactionEventAggregator/samples", metadata[:captured])
51
+ engine.tl_record_supportability_metric_count('TransactionEventAggregator/requests', metadata[:seen])
52
+ engine.tl_record_supportability_metric_count('TransactionEventAggregator/samples', metadata[:captured])
53
53
  end
54
54
  end
55
55
  end
@@ -35,9 +35,9 @@ module NewRelic
35
35
  CAT_REFERRING_PATH_HASH_KEY = 'nr.referringPathHash'
36
36
  CAT_ALTERNATE_PATH_HASHES_KEY = 'nr.alternatePathHashes'
37
37
  APDEX_PERF_ZONE_KEY = 'nr.apdexPerfZone'
38
- SYNTHETICS_RESOURCE_ID_KEY = "nr.syntheticsResourceId"
39
- SYNTHETICS_JOB_ID_KEY = "nr.syntheticsJobId"
40
- SYNTHETICS_MONITOR_ID_KEY = "nr.syntheticsMonitorId"
38
+ SYNTHETICS_RESOURCE_ID_KEY = 'nr.syntheticsResourceId'
39
+ SYNTHETICS_JOB_ID_KEY = 'nr.syntheticsJobId'
40
+ SYNTHETICS_MONITOR_ID_KEY = 'nr.syntheticsMonitorId'
41
41
 
42
42
  def create(payload)
43
43
  intrinsics = {
@@ -34,13 +34,13 @@ module NewRelic
34
34
  threshold = Agent.config[:'transaction_tracer.transaction_threshold']
35
35
  ::NewRelic::Agent.logger.debug("Transaction tracing threshold is #{threshold} seconds.")
36
36
  else
37
- ::NewRelic::Agent.logger.debug("Transaction traces will not be sent to the New Relic service.")
37
+ ::NewRelic::Agent.logger.debug('Transaction traces will not be sent to the New Relic service.')
38
38
  end
39
39
  end
40
40
 
41
41
  Agent.config.register_callback(:'transaction_tracer.record_sql') do |config|
42
42
  if config == 'raw'
43
- ::NewRelic::Agent.logger.warn("Agent is configured to send raw SQL to the service")
43
+ ::NewRelic::Agent.logger.warn('Agent is configured to send raw SQL to the service')
44
44
  end
45
45
  end
46
46
  end
@@ -81,7 +81,7 @@ module NewRelic
81
81
  begin
82
82
  sample.prepare_to_send!
83
83
  rescue => e
84
- NewRelic::Agent.logger.error("Failed to prepare transaction trace. Error: ", e)
84
+ NewRelic::Agent.logger.error('Failed to prepare transaction trace. Error: ', e)
85
85
  false
86
86
  else
87
87
  true
@@ -101,7 +101,8 @@ module NewRelic
101
101
 
102
102
  def thread_is_alive?(thread_id)
103
103
  thread = thread_by_id(thread_id)
104
- thread && thread.alive?
104
+ # needs else branch coverage
105
+ thread && thread.alive? # rubocop:disable Style/SafeNavigation
105
106
  rescue StandardError
106
107
  false
107
108
  end
@@ -144,10 +145,13 @@ module NewRelic
144
145
  elapsed
145
146
  end
146
147
 
148
+ # this method has no test coverage
147
149
  def log_missing_elapsed_transaction_time
148
- transaction_name = Tracer.current_transaction &&
150
+ # rubocop:disable Style/SafeNavigation
151
+ transaction_name = transaction_name = Tracer.current_transaction &&
149
152
  Tracer.current_transaction.best_name ||
150
- "unknown"
153
+ 'unknown'
154
+ # rubocop:enable Style/SafeNavigation
151
155
  NewRelic::Agent.logger.warn("Unable to calculate elapsed transaction time for #{transaction_name}")
152
156
  end
153
157
  end
@@ -37,7 +37,7 @@ module NewRelic
37
37
  end
38
38
  end
39
39
 
40
- vendor_name "aws"
40
+ vendor_name 'aws'
41
41
  endpoint "#{IMDS_BASE_URL}/dynamic/instance-identity/document"
42
42
  keys IMDS_KEYS
43
43
  headers 'X-aws-ec2-metadata-token' => -> { imds_token }
@@ -6,9 +6,9 @@ module NewRelic
6
6
  module Agent
7
7
  module Utilization
8
8
  class Azure < Vendor
9
- vendor_name "azure"
10
- endpoint "http://169.254.169.254/metadata/instance/compute?api-version=2017-03-01"
11
- headers "Metadata" => "true"
9
+ vendor_name 'azure'
10
+ endpoint 'http://169.254.169.254/metadata/instance/compute?api-version=2017-03-01'
11
+ headers 'Metadata' => 'true'
12
12
  keys %w[vmId name vmSize location]
13
13
  key_transforms :to_sym
14
14
  end
@@ -8,9 +8,9 @@ module NewRelic
8
8
  module Agent
9
9
  module Utilization
10
10
  class GCP < Vendor
11
- vendor_name "gcp"
12
- endpoint "http://metadata.google.internal/computeMetadata/v1/instance/?recursive=true"
13
- headers "Metadata-Flavor" => "Google"
11
+ vendor_name 'gcp'
12
+ endpoint 'http://metadata.google.internal/computeMetadata/v1/instance/?recursive=true'
13
+ headers 'Metadata-Flavor' => 'Google'
14
14
  keys %w[id machineType name zone]
15
15
  key_transforms :to_sym
16
16
 
@@ -8,7 +8,7 @@ module NewRelic
8
8
  module Agent
9
9
  module Utilization
10
10
  class PCF < Vendor
11
- vendor_name "pcf"
11
+ vendor_name 'pcf'
12
12
  keys %w[CF_INSTANCE_GUID CF_INSTANCE_IP MEMORY_LIMIT]
13
13
  key_transforms [:downcase, :to_sym]
14
14
 
@@ -133,7 +133,7 @@ module NewRelic
133
133
 
134
134
  def valid_chars?(value)
135
135
  value.each_char do |ch|
136
- next if ch =~ VALID_CHARS
136
+ next if VALID_CHARS.match?(ch)
137
137
 
138
138
  code_point = ch[0].ord # this works in Ruby 1.8.7 - 2.1.2
139
139
  next if code_point >= 0x80
@@ -34,7 +34,7 @@ module NewRelic
34
34
  end
35
35
  else
36
36
  NewRelic::Agent.logger.log_once(:warn, :gc_profiler_disabled,
37
- "Tried to measure GC time, but GC::Profiler was not enabled.")
37
+ 'Tried to measure GC time, but GC::Profiler was not enabled.')
38
38
  end
39
39
 
40
40
  @total_time_s
@@ -82,18 +82,19 @@ module NewRelic
82
82
 
83
83
  def supports?(key)
84
84
  case key
85
- when :gc_runs, :total_allocated_object, :heap_live, :heap_free, :thread_count
85
+ when :gc_runs,
86
+ :total_allocated_object,
87
+ :heap_live,
88
+ :heap_free,
89
+ :thread_count,
90
+ :major_gc_count,
91
+ :minor_gc_count,
92
+ :constant_cache_invalidations
86
93
  true
87
94
  when :gc_total_time
88
95
  NewRelic::LanguageSupport.gc_profiler_enabled?
89
- when :major_gc_count
90
- RUBY_VERSION >= '2.1.0'
91
- when :minor_gc_count
92
- RUBY_VERSION >= '2.1.0'
93
96
  when :method_cache_invalidations
94
- RUBY_VERSION >= '2.1.0' && RUBY_VERSION < '3.0.0'
95
- when :constant_cache_invalidations
96
- RUBY_VERSION >= '2.1.0'
97
+ RUBY_VERSION < '3.0.0'
97
98
  when :constant_cache_misses
98
99
  RUBY_VERSION >= '3.2.0'
99
100
  else
@@ -88,7 +88,7 @@ module NewRelic
88
88
  raise
89
89
  rescue => e
90
90
  # Don't blow out the stack for anything that hasn't already propagated
91
- ::NewRelic::Agent.logger.error("Error running task in Agent Worker Loop:", e)
91
+ ::NewRelic::Agent.logger.error('Error running task in Agent Worker Loop:', e)
92
92
  end
93
93
  end
94
94
  end