newrelic_rpm 6.15.0 → 9.7.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (485) hide show
  1. checksums.yaml +4 -4
  2. data/.build_ignore +26 -0
  3. data/CHANGELOG.md +4176 -2789
  4. data/CONTRIBUTING.md +32 -13
  5. data/Gemfile +1 -2
  6. data/LICENSE +0 -6
  7. data/README.md +29 -22
  8. data/Rakefile +33 -35
  9. data/THIRD_PARTY_NOTICES.md +14 -199
  10. data/Thorfile +5 -0
  11. data/bin/newrelic +4 -9
  12. data/bin/newrelic_rpm +15 -0
  13. data/bin/nrdebug +85 -62
  14. data/init.rb +6 -8
  15. data/install.rb +2 -2
  16. data/lib/new_relic/agent/adaptive_sampler.rb +13 -9
  17. data/lib/new_relic/agent/agent.rb +99 -941
  18. data/lib/new_relic/agent/agent_helpers/connect.rb +222 -0
  19. data/lib/new_relic/agent/agent_helpers/harvest.rb +153 -0
  20. data/lib/new_relic/agent/agent_helpers/shutdown.rb +72 -0
  21. data/lib/new_relic/agent/agent_helpers/special_startup.rb +74 -0
  22. data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +175 -0
  23. data/lib/new_relic/agent/agent_helpers/startup.rb +202 -0
  24. data/lib/new_relic/agent/agent_helpers/transmit.rb +76 -0
  25. data/lib/new_relic/agent/agent_logger.rb +27 -23
  26. data/lib/new_relic/agent/attribute_filter.rb +67 -50
  27. data/lib/new_relic/agent/attribute_pre_filtering.rb +109 -0
  28. data/lib/new_relic/agent/attribute_processing.rb +9 -9
  29. data/lib/new_relic/agent/attributes.rb +5 -4
  30. data/lib/new_relic/agent/audit_logger.rb +13 -8
  31. data/lib/new_relic/agent/autostart.rb +21 -20
  32. data/lib/new_relic/agent/chained_call.rb +1 -1
  33. data/lib/new_relic/agent/commands/agent_command.rb +4 -4
  34. data/lib/new_relic/agent/commands/agent_command_router.rb +15 -13
  35. data/lib/new_relic/agent/commands/thread_profiler_session.rb +16 -14
  36. data/lib/new_relic/agent/configuration/default_source.rb +1608 -1182
  37. data/lib/new_relic/agent/configuration/dotted_hash.rb +6 -5
  38. data/lib/new_relic/agent/configuration/environment_source.rb +13 -11
  39. data/lib/new_relic/agent/configuration/event_harvest_config.rb +40 -17
  40. data/lib/new_relic/agent/configuration/high_security_source.rb +11 -12
  41. data/lib/new_relic/agent/configuration/manager.rb +103 -75
  42. data/lib/new_relic/agent/configuration/manual_source.rb +1 -1
  43. data/lib/new_relic/agent/configuration/mask_defaults.rb +3 -3
  44. data/lib/new_relic/agent/configuration/security_policy_source.rb +92 -95
  45. data/lib/new_relic/agent/configuration/server_source.rb +43 -41
  46. data/lib/new_relic/agent/configuration/yaml_source.rb +47 -10
  47. data/lib/new_relic/agent/configuration.rb +1 -1
  48. data/lib/new_relic/agent/connect/request_builder.rb +18 -18
  49. data/lib/new_relic/agent/connect/response_handler.rb +5 -8
  50. data/lib/new_relic/agent/custom_event_aggregator.rb +42 -16
  51. data/lib/new_relic/agent/database/explain_plan_helpers.rb +5 -6
  52. data/lib/new_relic/agent/database/obfuscation_helpers.rb +16 -15
  53. data/lib/new_relic/agent/database/obfuscator.rb +4 -4
  54. data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +3 -3
  55. data/lib/new_relic/agent/database.rb +45 -53
  56. data/lib/new_relic/agent/database_adapter.rb +3 -1
  57. data/lib/new_relic/agent/datastores/metric_helper.rb +21 -22
  58. data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +7 -6
  59. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +17 -21
  60. data/lib/new_relic/agent/datastores/mongo.rb +6 -11
  61. data/lib/new_relic/agent/datastores/nosql_obfuscator.rb +41 -0
  62. data/lib/new_relic/agent/datastores/redis.rb +9 -15
  63. data/lib/new_relic/agent/datastores.rb +13 -15
  64. data/lib/new_relic/agent/deprecator.rb +1 -1
  65. data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +10 -10
  66. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +45 -40
  67. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +22 -22
  68. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +23 -23
  69. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +52 -54
  70. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +10 -11
  71. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +82 -83
  72. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +42 -41
  73. data/lib/new_relic/agent/distributed_tracing.rb +33 -101
  74. data/lib/new_relic/agent/encoding_normalizer.rb +4 -2
  75. data/lib/new_relic/agent/error_collector.rb +105 -58
  76. data/lib/new_relic/agent/error_event_aggregator.rb +4 -5
  77. data/lib/new_relic/agent/error_filter.rb +174 -0
  78. data/lib/new_relic/agent/error_trace_aggregator.rb +9 -7
  79. data/lib/new_relic/agent/event_aggregator.rb +22 -21
  80. data/lib/new_relic/agent/event_buffer.rb +7 -8
  81. data/lib/new_relic/agent/event_listener.rb +1 -2
  82. data/lib/new_relic/agent/event_loop.rb +27 -25
  83. data/lib/new_relic/agent/external.rb +11 -44
  84. data/lib/new_relic/agent/guid_generator.rb +13 -11
  85. data/lib/new_relic/agent/harvester.rb +5 -8
  86. data/lib/new_relic/agent/heap.rb +8 -9
  87. data/lib/new_relic/agent/hostname.rb +21 -14
  88. data/lib/new_relic/agent/http_clients/abstract.rb +22 -31
  89. data/lib/new_relic/agent/http_clients/async_http_wrappers.rb +80 -0
  90. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +14 -17
  91. data/lib/new_relic/agent/http_clients/ethon_wrappers.rb +109 -0
  92. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +15 -17
  93. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +7 -6
  94. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +8 -9
  95. data/lib/new_relic/agent/http_clients/httpx_wrappers.rb +91 -0
  96. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +13 -8
  97. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +12 -13
  98. data/lib/new_relic/agent/http_clients/uri_util.rb +3 -5
  99. data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +9 -22
  100. data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +42 -0
  101. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +41 -33
  102. data/lib/new_relic/agent/instrumentation/action_dispatch.rb +31 -0
  103. data/lib/new_relic/agent/instrumentation/action_dispatch_subscriber.rb +64 -0
  104. data/lib/new_relic/agent/instrumentation/action_mailbox.rb +30 -0
  105. data/lib/new_relic/agent/instrumentation/action_mailbox_subscriber.rb +33 -0
  106. data/lib/new_relic/agent/instrumentation/action_mailer.rb +30 -0
  107. data/lib/new_relic/agent/instrumentation/action_mailer_subscriber.rb +85 -0
  108. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +20 -21
  109. data/lib/new_relic/agent/instrumentation/active_job.rb +33 -13
  110. data/lib/new_relic/agent/instrumentation/active_job_subscriber.rb +41 -0
  111. data/lib/new_relic/agent/instrumentation/active_merchant.rb +20 -6
  112. data/lib/new_relic/agent/instrumentation/active_record.rb +41 -38
  113. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +87 -75
  114. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +54 -66
  115. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +6 -6
  116. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +30 -22
  117. data/lib/new_relic/agent/instrumentation/active_storage.rb +7 -3
  118. data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +8 -33
  119. data/lib/new_relic/agent/instrumentation/active_support.rb +27 -0
  120. data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/chain.rb +69 -0
  121. data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/instrumentation.rb +13 -0
  122. data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/prepend.rb +37 -0
  123. data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger.rb +23 -0
  124. data/lib/new_relic/agent/instrumentation/active_support_logger/chain.rb +23 -0
  125. data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +24 -0
  126. data/lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb +12 -0
  127. data/lib/new_relic/agent/instrumentation/active_support_logger.rb +26 -0
  128. data/lib/new_relic/agent/instrumentation/active_support_subscriber.rb +41 -0
  129. data/lib/new_relic/agent/instrumentation/async_http/chain.rb +23 -0
  130. data/lib/new_relic/agent/instrumentation/async_http/instrumentation.rb +37 -0
  131. data/lib/new_relic/agent/instrumentation/async_http/prepend.rb +15 -0
  132. data/lib/new_relic/agent/instrumentation/async_http.rb +28 -0
  133. data/lib/new_relic/agent/instrumentation/bunny/chain.rb +45 -0
  134. data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +159 -0
  135. data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +35 -0
  136. data/lib/new_relic/agent/instrumentation/bunny.rb +11 -154
  137. data/lib/new_relic/agent/instrumentation/concurrent_ruby/chain.rb +36 -0
  138. data/lib/new_relic/agent/instrumentation/concurrent_ruby/instrumentation.rb +20 -0
  139. data/lib/new_relic/agent/instrumentation/concurrent_ruby/prepend.rb +27 -0
  140. data/lib/new_relic/agent/instrumentation/concurrent_ruby.rb +31 -0
  141. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +74 -63
  142. data/lib/new_relic/agent/instrumentation/curb/chain.rb +91 -0
  143. data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +225 -0
  144. data/lib/new_relic/agent/instrumentation/curb/prepend.rb +61 -0
  145. data/lib/new_relic/agent/instrumentation/curb.rb +14 -246
  146. data/lib/new_relic/agent/instrumentation/custom_events.rb +12 -0
  147. data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +38 -0
  148. data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +36 -0
  149. data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +51 -0
  150. data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +33 -0
  151. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +30 -53
  152. data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +29 -0
  153. data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +70 -0
  154. data/lib/new_relic/agent/instrumentation/elasticsearch/prepend.rb +13 -0
  155. data/lib/new_relic/agent/instrumentation/elasticsearch.rb +31 -0
  156. data/lib/new_relic/agent/instrumentation/ethon/chain.rb +39 -0
  157. data/lib/new_relic/agent/instrumentation/ethon/instrumentation.rb +105 -0
  158. data/lib/new_relic/agent/instrumentation/ethon/prepend.rb +35 -0
  159. data/lib/new_relic/agent/instrumentation/ethon.rb +39 -0
  160. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +11 -7
  161. data/lib/new_relic/agent/instrumentation/excon.rb +27 -29
  162. data/lib/new_relic/agent/instrumentation/fiber/chain.rb +27 -0
  163. data/lib/new_relic/agent/instrumentation/fiber/instrumentation.rb +20 -0
  164. data/lib/new_relic/agent/instrumentation/fiber/prepend.rb +25 -0
  165. data/lib/new_relic/agent/instrumentation/fiber.rb +25 -0
  166. data/lib/new_relic/agent/instrumentation/grape/chain.rb +24 -0
  167. data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +104 -0
  168. data/lib/new_relic/agent/instrumentation/grape/prepend.rb +17 -0
  169. data/lib/new_relic/agent/instrumentation/grape.rb +16 -117
  170. data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +97 -0
  171. data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +94 -0
  172. data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +111 -0
  173. data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +30 -0
  174. data/lib/new_relic/agent/instrumentation/grpc/helper.rb +32 -0
  175. data/lib/new_relic/agent/instrumentation/grpc/server/chain.rb +69 -0
  176. data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +138 -0
  177. data/lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb +35 -0
  178. data/lib/new_relic/agent/instrumentation/grpc/server/rpc_server_prepend.rb +26 -0
  179. data/lib/new_relic/agent/instrumentation/grpc_client.rb +23 -0
  180. data/lib/new_relic/agent/instrumentation/grpc_server.rb +25 -0
  181. data/lib/new_relic/agent/instrumentation/httpclient/chain.rb +24 -0
  182. data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +41 -0
  183. data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +15 -0
  184. data/lib/new_relic/agent/instrumentation/httpclient.rb +10 -32
  185. data/lib/new_relic/agent/instrumentation/httprb/chain.rb +22 -0
  186. data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +34 -0
  187. data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +15 -0
  188. data/lib/new_relic/agent/instrumentation/httprb.rb +29 -0
  189. data/lib/new_relic/agent/instrumentation/httpx/chain.rb +20 -0
  190. data/lib/new_relic/agent/instrumentation/httpx/instrumentation.rb +51 -0
  191. data/lib/new_relic/agent/instrumentation/httpx/prepend.rb +15 -0
  192. data/lib/new_relic/agent/instrumentation/httpx.rb +27 -0
  193. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +5 -6
  194. data/lib/new_relic/agent/instrumentation/logger/chain.rb +21 -0
  195. data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +69 -0
  196. data/lib/new_relic/agent/instrumentation/logger/prepend.rb +13 -0
  197. data/lib/new_relic/agent/instrumentation/logger.rb +26 -0
  198. data/lib/new_relic/agent/instrumentation/memcache/chain.rb +15 -0
  199. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +59 -128
  200. data/lib/new_relic/agent/instrumentation/memcache/helper.rb +59 -0
  201. data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +99 -0
  202. data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +103 -0
  203. data/lib/new_relic/agent/instrumentation/memcache.rb +58 -74
  204. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +15 -14
  205. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +6 -8
  206. data/lib/new_relic/agent/instrumentation/mongo.rb +6 -137
  207. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +24 -23
  208. data/lib/new_relic/agent/instrumentation/net_http/chain.rb +24 -0
  209. data/lib/new_relic/agent/instrumentation/{net_prepend.rb → net_http/instrumentation.rb} +18 -14
  210. data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +21 -0
  211. data/lib/new_relic/agent/instrumentation/net_http.rb +44 -0
  212. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +56 -10
  213. data/lib/new_relic/agent/instrumentation/padrino/chain.rb +38 -0
  214. data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +32 -0
  215. data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +20 -0
  216. data/lib/new_relic/agent/instrumentation/padrino.rb +20 -58
  217. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +6 -6
  218. data/lib/new_relic/agent/instrumentation/queue_time.rb +9 -10
  219. data/lib/new_relic/agent/instrumentation/rack/chain.rb +66 -0
  220. data/lib/new_relic/agent/instrumentation/rack/helpers.rb +33 -0
  221. data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +81 -0
  222. data/lib/new_relic/agent/instrumentation/rack/prepend.rb +43 -0
  223. data/lib/new_relic/agent/instrumentation/rack.rb +32 -142
  224. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +25 -56
  225. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +4 -4
  226. data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +9 -8
  227. data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +18 -5
  228. data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +8 -5
  229. data/lib/new_relic/agent/instrumentation/rails_notifications/custom_events.rb +30 -0
  230. data/lib/new_relic/agent/instrumentation/rake/chain.rb +20 -0
  231. data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +146 -0
  232. data/lib/new_relic/agent/instrumentation/rake/prepend.rb +14 -0
  233. data/lib/new_relic/agent/instrumentation/rake.rb +17 -158
  234. data/lib/new_relic/agent/instrumentation/redis/chain.rb +45 -0
  235. data/lib/new_relic/agent/instrumentation/redis/constants.rb +17 -0
  236. data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +98 -0
  237. data/lib/new_relic/agent/instrumentation/redis/middleware.rb +16 -0
  238. data/lib/new_relic/agent/instrumentation/redis/prepend.rb +29 -0
  239. data/lib/new_relic/agent/instrumentation/redis.rb +19 -108
  240. data/lib/new_relic/agent/instrumentation/resque/chain.rb +21 -0
  241. data/lib/new_relic/agent/instrumentation/resque/helper.rb +19 -0
  242. data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +38 -0
  243. data/lib/new_relic/agent/instrumentation/resque/prepend.rb +15 -0
  244. data/lib/new_relic/agent/instrumentation/resque.rb +32 -43
  245. data/lib/new_relic/agent/instrumentation/roda/chain.rb +43 -0
  246. data/lib/new_relic/agent/instrumentation/roda/ignorer.rb +45 -0
  247. data/lib/new_relic/agent/instrumentation/roda/instrumentation.rb +68 -0
  248. data/lib/new_relic/agent/instrumentation/roda/prepend.rb +24 -0
  249. data/lib/new_relic/agent/instrumentation/roda/roda_transaction_namer.rb +29 -0
  250. data/lib/new_relic/agent/instrumentation/roda.rb +36 -0
  251. data/lib/new_relic/agent/instrumentation/sequel.rb +16 -19
  252. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +12 -12
  253. data/lib/new_relic/agent/instrumentation/sidekiq/client.rb +24 -0
  254. data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +30 -0
  255. data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +60 -0
  256. data/lib/new_relic/agent/instrumentation/sidekiq.rb +27 -65
  257. data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +55 -0
  258. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +30 -36
  259. data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +130 -0
  260. data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +33 -0
  261. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +4 -6
  262. data/lib/new_relic/agent/instrumentation/sinatra.rb +34 -163
  263. data/lib/new_relic/agent/instrumentation/stripe.rb +28 -0
  264. data/lib/new_relic/agent/instrumentation/stripe_subscriber.rb +77 -0
  265. data/lib/new_relic/agent/instrumentation/thread/chain.rb +24 -0
  266. data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +24 -0
  267. data/lib/new_relic/agent/instrumentation/thread/prepend.rb +22 -0
  268. data/lib/new_relic/agent/instrumentation/thread.rb +20 -0
  269. data/lib/new_relic/agent/instrumentation/tilt/chain.rb +24 -0
  270. data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +46 -0
  271. data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +13 -0
  272. data/lib/new_relic/agent/instrumentation/tilt.rb +25 -0
  273. data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +22 -0
  274. data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +84 -0
  275. data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +14 -0
  276. data/lib/new_relic/agent/instrumentation/typhoeus.rb +12 -91
  277. data/lib/new_relic/agent/instrumentation/view_component/chain.rb +21 -0
  278. data/lib/new_relic/agent/instrumentation/view_component/instrumentation.rb +39 -0
  279. data/lib/new_relic/agent/instrumentation/view_component/prepend.rb +13 -0
  280. data/lib/new_relic/agent/instrumentation/view_component.rb +26 -0
  281. data/lib/new_relic/agent/instrumentation.rb +1 -1
  282. data/lib/new_relic/agent/internal_agent_error.rb +2 -2
  283. data/lib/new_relic/agent/javascript_instrumentor.rb +58 -48
  284. data/lib/new_relic/agent/linking_metadata.rb +44 -0
  285. data/lib/new_relic/agent/local_log_decorator.rb +37 -0
  286. data/lib/new_relic/agent/log_event_aggregator.rb +282 -0
  287. data/lib/new_relic/agent/log_event_attributes.rb +115 -0
  288. data/lib/new_relic/agent/log_once.rb +1 -1
  289. data/lib/new_relic/agent/log_priority.rb +20 -0
  290. data/lib/new_relic/agent/logging.rb +95 -52
  291. data/lib/new_relic/agent/memory_logger.rb +2 -2
  292. data/lib/new_relic/agent/messaging.rb +72 -86
  293. data/lib/new_relic/agent/method_tracer.rb +159 -154
  294. data/lib/new_relic/agent/method_tracer_helpers.rb +109 -11
  295. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +26 -19
  296. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +5 -4
  297. data/lib/new_relic/agent/monitors/inbound_request_monitor.rb +1 -2
  298. data/lib/new_relic/agent/monitors/synthetics_monitor.rb +17 -9
  299. data/lib/new_relic/agent/monitors.rb +6 -7
  300. data/lib/new_relic/agent/new_relic_service/encoders.rb +9 -9
  301. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +6 -6
  302. data/lib/new_relic/agent/new_relic_service/marshaller.rb +2 -2
  303. data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +4 -4
  304. data/lib/new_relic/agent/new_relic_service.rb +282 -213
  305. data/lib/new_relic/agent/{noticible_error.rb → noticeable_error.rb} +2 -5
  306. data/lib/new_relic/agent/null_logger.rb +7 -3
  307. data/lib/new_relic/agent/obfuscator.rb +7 -11
  308. data/lib/new_relic/agent/parameter_filtering.rb +29 -15
  309. data/lib/new_relic/agent/payload_metric_mapping.rb +9 -10
  310. data/lib/new_relic/agent/pipe_channel_manager.rb +34 -23
  311. data/lib/new_relic/agent/pipe_service.rb +13 -8
  312. data/lib/new_relic/agent/prepend_supportability.rb +2 -2
  313. data/lib/new_relic/agent/priority_sampled_buffer.rb +9 -12
  314. data/lib/new_relic/agent/rules_engine/replacement_rule.rb +11 -11
  315. data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +12 -14
  316. data/lib/new_relic/agent/rules_engine.rb +6 -5
  317. data/lib/new_relic/agent/sampler.rb +5 -5
  318. data/lib/new_relic/agent/sampler_collection.rb +4 -5
  319. data/lib/new_relic/agent/samplers/cpu_sampler.rb +8 -7
  320. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +20 -17
  321. data/lib/new_relic/agent/samplers/memory_sampler.rb +32 -21
  322. data/lib/new_relic/agent/samplers/object_sampler.rb +2 -2
  323. data/lib/new_relic/agent/samplers/vm_sampler.rb +21 -19
  324. data/lib/new_relic/agent/span_event_aggregator.rb +15 -15
  325. data/lib/new_relic/agent/span_event_primitive.rb +77 -59
  326. data/lib/new_relic/agent/sql_sampler.rb +20 -21
  327. data/lib/new_relic/agent/stats.rb +79 -42
  328. data/lib/new_relic/agent/stats_engine/gc_profiler.rb +9 -11
  329. data/lib/new_relic/agent/stats_engine/stats_hash.rb +12 -13
  330. data/lib/new_relic/agent/stats_engine.rb +8 -8
  331. data/lib/new_relic/agent/synthetics_event_aggregator.rb +8 -9
  332. data/lib/new_relic/agent/system_info.rb +113 -67
  333. data/lib/new_relic/agent/threading/agent_thread.rb +18 -14
  334. data/lib/new_relic/agent/threading/backtrace_node.rb +12 -13
  335. data/lib/new_relic/agent/threading/backtrace_service.rb +17 -21
  336. data/lib/new_relic/agent/threading/thread_profile.rb +24 -24
  337. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +2 -2
  338. data/lib/new_relic/agent/tracer.rb +101 -96
  339. data/lib/new_relic/agent/transaction/abstract_segment.rb +176 -52
  340. data/lib/new_relic/agent/transaction/datastore_segment.rb +22 -18
  341. data/lib/new_relic/agent/transaction/distributed_tracer.rb +65 -57
  342. data/lib/new_relic/agent/transaction/distributed_tracing.rb +46 -48
  343. data/lib/new_relic/agent/transaction/external_request_segment.rb +52 -39
  344. data/lib/new_relic/agent/transaction/message_broker_segment.rb +31 -37
  345. data/lib/new_relic/agent/transaction/request_attributes.rb +78 -42
  346. data/lib/new_relic/agent/transaction/segment.rb +20 -10
  347. data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +1 -3
  348. data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +2 -2
  349. data/lib/new_relic/agent/transaction/trace.rb +16 -12
  350. data/lib/new_relic/agent/transaction/trace_builder.rb +10 -10
  351. data/lib/new_relic/agent/transaction/trace_context.rb +35 -35
  352. data/lib/new_relic/agent/transaction/trace_node.rb +30 -28
  353. data/lib/new_relic/agent/transaction/tracing.rb +32 -13
  354. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +6 -6
  355. data/lib/new_relic/agent/transaction.rb +229 -178
  356. data/lib/new_relic/agent/transaction_error_primitive.rb +43 -25
  357. data/lib/new_relic/agent/transaction_event_aggregator.rb +16 -16
  358. data/lib/new_relic/agent/transaction_event_primitive.rb +51 -33
  359. data/lib/new_relic/agent/transaction_event_recorder.rb +16 -15
  360. data/lib/new_relic/agent/transaction_metrics.rb +10 -9
  361. data/lib/new_relic/agent/transaction_sampler.rb +7 -8
  362. data/lib/new_relic/agent/transaction_time_aggregator.rb +32 -27
  363. data/lib/new_relic/agent/utilization/aws.rb +34 -4
  364. data/lib/new_relic/agent/utilization/azure.rb +6 -6
  365. data/lib/new_relic/agent/utilization/gcp.rb +11 -13
  366. data/lib/new_relic/agent/utilization/pcf.rb +6 -5
  367. data/lib/new_relic/agent/utilization/vendor.rb +45 -32
  368. data/lib/new_relic/agent/utilization_data.rb +7 -5
  369. data/lib/new_relic/agent/vm/c_ruby_vm.rb +99 -0
  370. data/lib/new_relic/agent/vm/jruby_vm.rb +1 -1
  371. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +3 -3
  372. data/lib/new_relic/agent/vm/snapshot.rb +5 -5
  373. data/lib/new_relic/agent/vm.rb +3 -3
  374. data/lib/new_relic/agent/worker_loop.rb +10 -12
  375. data/lib/new_relic/agent.rb +204 -111
  376. data/lib/new_relic/base64.rb +25 -0
  377. data/lib/new_relic/cli/command.rb +26 -25
  378. data/lib/new_relic/cli/commands/deployments.rb +100 -49
  379. data/lib/new_relic/cli/commands/install.rb +31 -34
  380. data/lib/new_relic/coerce.rb +15 -13
  381. data/lib/new_relic/collection_helper.rb +50 -48
  382. data/lib/new_relic/constants.rb +13 -12
  383. data/lib/new_relic/control/class_methods.rb +6 -12
  384. data/lib/new_relic/control/frameworks/external.rb +2 -2
  385. data/lib/new_relic/control/frameworks/rails.rb +60 -30
  386. data/lib/new_relic/control/frameworks/rails3.rb +3 -4
  387. data/lib/new_relic/control/frameworks/rails4.rb +1 -1
  388. data/lib/new_relic/control/frameworks/rails_notifications.rb +1 -1
  389. data/lib/new_relic/control/frameworks/roda.rb +20 -0
  390. data/lib/new_relic/control/frameworks/ruby.rb +3 -3
  391. data/lib/new_relic/control/frameworks/sinatra.rb +7 -1
  392. data/lib/new_relic/control/frameworks.rb +1 -1
  393. data/lib/new_relic/control/instance_methods.rb +27 -45
  394. data/lib/new_relic/control/instrumentation.rb +25 -11
  395. data/lib/new_relic/control/private_instance_methods.rb +48 -0
  396. data/lib/new_relic/control/server_methods.rb +3 -4
  397. data/lib/new_relic/control.rb +1 -2
  398. data/lib/new_relic/delayed_job_injection.rb +1 -1
  399. data/lib/new_relic/dependency_detection.rb +141 -32
  400. data/lib/new_relic/environment_report.rb +41 -33
  401. data/lib/new_relic/helper.rb +49 -7
  402. data/lib/new_relic/language_support.rb +39 -6
  403. data/lib/new_relic/latest_changes.rb +10 -9
  404. data/lib/new_relic/local_environment.rb +42 -37
  405. data/lib/new_relic/metric_data.rb +31 -26
  406. data/lib/new_relic/metric_spec.rb +8 -6
  407. data/lib/new_relic/noticed_error.rb +43 -46
  408. data/lib/new_relic/rack/agent_hooks.rb +2 -2
  409. data/lib/new_relic/rack/agent_middleware.rb +3 -17
  410. data/lib/new_relic/rack/browser_monitoring.rb +135 -121
  411. data/lib/new_relic/rack.rb +1 -1
  412. data/lib/new_relic/recipes/capistrano3.rb +4 -62
  413. data/lib/new_relic/recipes/capistrano_legacy.rb +24 -27
  414. data/lib/new_relic/recipes/helpers/send_deployment.rb +70 -0
  415. data/lib/new_relic/recipes.rb +1 -1
  416. data/lib/new_relic/supportability_helper.rb +14 -12
  417. data/lib/new_relic/traced_thread.rb +38 -0
  418. data/lib/new_relic/version.rb +6 -17
  419. data/lib/newrelic_rpm.rb +20 -33
  420. data/lib/sequel/extensions/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +18 -21
  421. data/lib/sequel/plugins/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +9 -15
  422. data/lib/tasks/all.rb +3 -3
  423. data/lib/tasks/bump_version.rake +21 -0
  424. data/lib/tasks/config.rake +25 -119
  425. data/lib/tasks/coverage_report.rake +28 -0
  426. data/lib/tasks/helpers/config.html.erb +114 -0
  427. data/lib/tasks/helpers/format.rb +127 -0
  428. data/lib/tasks/helpers/matches.rb +12 -0
  429. data/lib/tasks/helpers/newrelicyml.rb +144 -0
  430. data/lib/tasks/helpers/prompt.rb +24 -0
  431. data/lib/tasks/helpers/version_bump.rb +62 -0
  432. data/lib/tasks/install.rake +8 -4
  433. data/lib/tasks/instrumentation_generator/README.md +63 -0
  434. data/lib/tasks/instrumentation_generator/TODO.md +33 -0
  435. data/lib/tasks/instrumentation_generator/instrumentation.thor +121 -0
  436. data/lib/tasks/instrumentation_generator/templates/Envfile.tt +9 -0
  437. data/lib/tasks/instrumentation_generator/templates/chain.tt +21 -0
  438. data/lib/tasks/instrumentation_generator/templates/chain_method.tt +7 -0
  439. data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +29 -0
  440. data/lib/tasks/instrumentation_generator/templates/instrumentation.tt +13 -0
  441. data/lib/tasks/instrumentation_generator/templates/instrumentation_method.tt +3 -0
  442. data/lib/tasks/instrumentation_generator/templates/newrelic.yml.tt +19 -0
  443. data/lib/tasks/instrumentation_generator/templates/prepend.tt +13 -0
  444. data/lib/tasks/instrumentation_generator/templates/prepend_method.tt +3 -0
  445. data/lib/tasks/instrumentation_generator/templates/test.tt +15 -0
  446. data/lib/tasks/newrelic.rb +2 -1
  447. data/lib/tasks/newrelicyml.rake +13 -0
  448. data/lib/tasks/tests.rake +83 -17
  449. data/newrelic.yml +790 -4
  450. data/newrelic_rpm.gemspec +52 -43
  451. data/recipes/newrelic.rb +2 -2
  452. data/test/agent_helper.rb +252 -198
  453. metadata +275 -95
  454. data/.gitignore +0 -37
  455. data/.project +0 -23
  456. data/.yardopts +0 -26
  457. data/Guardfile +0 -25
  458. data/ROADMAP.md +0 -24
  459. data/bin/mongrel_rpm +0 -33
  460. data/bin/newrelic_cmd +0 -5
  461. data/cert/cacert.pem +0 -1177
  462. data/config/database.yml +0 -5
  463. data/config.dot +0 -278
  464. data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +0 -44
  465. data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +0 -53
  466. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +0 -75
  467. data/lib/new_relic/agent/instrumentation/authlogic.rb +0 -25
  468. data/lib/new_relic/agent/instrumentation/data_mapper.rb +0 -204
  469. data/lib/new_relic/agent/instrumentation/excon/connection.rb +0 -49
  470. data/lib/new_relic/agent/instrumentation/http.rb +0 -49
  471. data/lib/new_relic/agent/instrumentation/merb/controller.rb +0 -44
  472. data/lib/new_relic/agent/instrumentation/merb/errors.rb +0 -33
  473. data/lib/new_relic/agent/instrumentation/net.rb +0 -70
  474. data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +0 -125
  475. data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +0 -46
  476. data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +0 -26
  477. data/lib/new_relic/agent/instrumentation/sunspot.rb +0 -33
  478. data/lib/new_relic/agent/range_extensions.rb +0 -47
  479. data/lib/new_relic/agent/supported_versions.rb +0 -275
  480. data/lib/new_relic/agent/vm/mri_vm.rb +0 -81
  481. data/lib/new_relic/control/frameworks/merb.rb +0 -29
  482. data/lib/tasks/config.html.erb +0 -32
  483. data/lib/tasks/multiverse.rake +0 -2
  484. data/lib/tasks/multiverse.rb +0 -104
  485. /data/lib/tasks/{config.text.erb → helpers/config.text.erb} +0 -0
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
2
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
3
  # frozen_string_literal: true
@@ -24,39 +23,36 @@ module NewRelic
24
23
  include Tracing
25
24
 
26
25
  # for nested transactions
27
- NESTED_TRANSACTION_PREFIX = "Nested/"
28
- CONTROLLER_PREFIX = "Controller/"
29
- MIDDLEWARE_PREFIX = "Middleware/Rack/"
30
- OTHER_TRANSACTION_PREFIX = "OtherTransaction/"
31
- TASK_PREFIX = "#{OTHER_TRANSACTION_PREFIX}Background/"
32
- RAKE_PREFIX = "#{OTHER_TRANSACTION_PREFIX}Rake/"
33
- MESSAGE_PREFIX = "#{OTHER_TRANSACTION_PREFIX}Message/"
34
- RACK_PREFIX = "#{CONTROLLER_PREFIX}Rack/"
35
- SINATRA_PREFIX = "#{CONTROLLER_PREFIX}Sinatra/"
36
- GRAPE_PREFIX = "#{CONTROLLER_PREFIX}Grape/"
37
- ACTION_CABLE_PREFIX = "#{CONTROLLER_PREFIX}ActionCable/"
38
-
39
- WEB_TRANSACTION_CATEGORIES = [:web, :controller, :uri, :rack, :sinatra, :grape, :middleware, :action_cable].freeze
40
- TRANSACTION_NAMING_SOURCES = [:child, :api].freeze
41
-
42
- MIDDLEWARE_SUMMARY_METRICS = ["Middleware/all"].freeze
43
- WEB_SUMMARY_METRIC = "HttpDispatcher"
44
- OTHER_SUMMARY_METRIC = "#{OTHER_TRANSACTION_PREFIX}all"
45
- QUEUE_TIME_METRIC = "WebFrontend/QueueTime"
46
-
47
- APDEX_S = "S"
48
- APDEX_T = "T"
49
- APDEX_F = "F"
50
- APDEX_ALL_METRIC = "ApdexAll"
51
- APDEX_METRIC = "Apdex"
52
- APDEX_OTHER_METRIC = "ApdexOther"
53
- APDEX_TXN_METRIC_PREFIX = "Apdex/"
54
- APDEX_OTHER_TXN_METRIC_PREFIX = "ApdexOther/Transaction/"
55
-
56
- JRUBY_CPU_TIME_ERROR = "Error calculating JRuby CPU Time"
57
-
58
- # reference to the transaction state managing this transaction
59
- attr_accessor :state
26
+ NESTED_TRANSACTION_PREFIX = 'Nested/'
27
+ CONTROLLER_PREFIX = 'Controller/'
28
+ MIDDLEWARE_PREFIX = 'Middleware/Rack/'
29
+ OTHER_TRANSACTION_PREFIX = 'OtherTransaction/'
30
+ TASK_PREFIX = "#{OTHER_TRANSACTION_PREFIX}Background/"
31
+ RAKE_PREFIX = "#{OTHER_TRANSACTION_PREFIX}Rake/"
32
+ MESSAGE_PREFIX = "#{OTHER_TRANSACTION_PREFIX}Message/"
33
+ RACK_PREFIX = "#{CONTROLLER_PREFIX}Rack/"
34
+ RODA_PREFIX = "#{CONTROLLER_PREFIX}Roda/"
35
+ SINATRA_PREFIX = "#{CONTROLLER_PREFIX}Sinatra/"
36
+ GRAPE_PREFIX = "#{CONTROLLER_PREFIX}Grape/"
37
+ ACTION_CABLE_PREFIX = "#{CONTROLLER_PREFIX}ActionCable/"
38
+
39
+ WEB_TRANSACTION_CATEGORIES = %i[action_cable controller grape middleware rack roda sinatra web uri].freeze
40
+
41
+ MIDDLEWARE_SUMMARY_METRICS = ['Middleware/all'].freeze
42
+ WEB_SUMMARY_METRIC = 'HttpDispatcher'
43
+ OTHER_SUMMARY_METRIC = "#{OTHER_TRANSACTION_PREFIX}all"
44
+ QUEUE_TIME_METRIC = 'WebFrontend/QueueTime'
45
+
46
+ APDEX_S = 'S'
47
+ APDEX_T = 'T'
48
+ APDEX_F = 'F'
49
+ APDEX_ALL_METRIC = 'ApdexAll'
50
+ APDEX_METRIC = 'Apdex'
51
+ APDEX_OTHER_METRIC = 'ApdexOther'
52
+ APDEX_TXN_METRIC_PREFIX = 'Apdex/'
53
+ APDEX_OTHER_TXN_METRIC_PREFIX = 'ApdexOther/Transaction/'
54
+
55
+ JRUBY_CPU_TIME_ERROR = 'Error calculating JRuby CPU Time'
60
56
 
61
57
  # A Time instance for the start time, never nil
62
58
  attr_accessor :start_time
@@ -67,46 +63,47 @@ module NewRelic
67
63
  attr_accessor :apdex_start
68
64
 
69
65
  attr_accessor :exceptions,
70
- :filtered_params,
71
- :jruby_cpu_start,
72
- :process_cpu_start,
73
- :http_response_code,
74
- :response_content_length,
75
- :response_content_type,
76
- :parent_span_id
66
+ :filtered_params,
67
+ :jruby_cpu_start,
68
+ :process_cpu_start,
69
+ :http_response_code,
70
+ :response_content_length,
71
+ :response_content_type,
72
+ :parent_span_id
77
73
 
78
74
  attr_reader :guid,
79
- :metrics,
80
- :gc_start_snapshot,
81
- :category,
82
- :attributes,
83
- :payload,
84
- :nesting_max_depth,
85
- :segments,
86
- :end_time,
87
- :duration
75
+ :metrics,
76
+ :logs,
77
+ :gc_start_snapshot,
78
+ :category,
79
+ :attributes,
80
+ :payload,
81
+ :nesting_max_depth,
82
+ :segments,
83
+ :end_time,
84
+ :duration
88
85
 
89
86
  attr_writer :sampled,
90
- :priority
87
+ :priority
91
88
 
92
89
  # Populated with the trace sample once this transaction is completed.
93
90
  attr_reader :transaction_trace
94
91
 
95
92
  # Fields for tracking synthetics requests
96
- attr_accessor :raw_synthetics_header, :synthetics_payload
93
+ attr_accessor :raw_synthetics_header, :synthetics_payload, :synthetics_info_payload, :raw_synthetics_info_header
97
94
 
98
95
  # Return the currently active transaction, or nil.
99
96
  def self.tl_current
100
97
  Tracer.current_transaction
101
98
  end
102
99
 
103
- def self.set_default_transaction_name(partial_name, category = nil) #THREAD_LOCAL_ACCESS
104
- txn = tl_current
100
+ def self.set_default_transaction_name(partial_name, category = nil) # THREAD_LOCAL_ACCESS
101
+ txn = tl_current
105
102
  name = name_from_partial(partial_name, category || txn.category)
106
103
  txn.set_default_transaction_name(name, category)
107
104
  end
108
105
 
109
- def self.set_overriding_transaction_name(partial_name, category = nil) #THREAD_LOCAL_ACCESS
106
+ def self.set_overriding_transaction_name(partial_name, category = nil) # THREAD_LOCAL_ACCESS
110
107
  txn = tl_current
111
108
  return unless txn
112
109
 
@@ -119,38 +116,15 @@ module NewRelic
119
116
  "#{namer.prefix_for_category(self, category)}#{partial_name}"
120
117
  end
121
118
 
122
- def self.wrap(state, name, category, options = {})
123
- Deprecator.deprecate 'Transaction.wrap',
124
- 'Tracer#in_transaction'
125
-
126
- finishable = Tracer.start_transaction_or_segment(
127
- name: name,
128
- category: category,
129
- options: options
130
- )
131
-
132
- begin
133
- # We shouldn't raise from Transaction.start, but only wrap the yield
134
- # to be absolutely sure we don't report agent problems as app errors
135
- yield
136
- rescue => e
137
- Transaction.notice_error(e)
138
- raise e
139
- ensure
140
- finishable.finish if finishable
141
- end
142
- end
143
-
144
119
  def self.start_new_transaction(state, category, options)
145
120
  txn = Transaction.new(category, options)
146
121
  state.reset(txn)
147
- txn.state = state
148
- txn.start
122
+ txn.start(options)
149
123
  txn
150
124
  end
151
125
 
152
126
  def self.nested_transaction_name(name)
153
- if name.start_with?(CONTROLLER_PREFIX) || name.start_with?(OTHER_TRANSACTION_PREFIX)
127
+ if name.start_with?(CONTROLLER_PREFIX, OTHER_TRANSACTION_PREFIX)
154
128
  "#{NESTED_TRANSACTION_PREFIX}#{name}"
155
129
  else
156
130
  name
@@ -165,7 +139,7 @@ module NewRelic
165
139
  end
166
140
 
167
141
  # See NewRelic::Agent.notice_error for options and commentary
168
- def self.notice_error(e, options={})
142
+ def self.notice_error(e, options = {})
169
143
  if txn = Tracer.current_transaction
170
144
  txn.notice_error(e, options)
171
145
  elsif NewRelic::Agent.instance
@@ -178,11 +152,11 @@ module NewRelic
178
152
  #
179
153
  # @api public
180
154
  #
181
- def self.recording_web_transaction? #THREAD_LOCAL_ACCESS
155
+ def self.recording_web_transaction? # THREAD_LOCAL_ACCESS
182
156
  NewRelic::Agent.record_api_supportability_metric(:recording_web_transaction?)
183
157
 
184
158
  txn = tl_current
185
- txn && txn.recording_web_transaction?
159
+ txn&.recording_web_transaction?
186
160
  end
187
161
 
188
162
  def self.apdex_bucket(duration, failed, apdex_t)
@@ -191,7 +165,7 @@ module NewRelic
191
165
  :apdex_f
192
166
  when duration <= apdex_t
193
167
  :apdex_s
194
- when duration <= 4 * apdex_t
168
+ when duration <= apdex_t * 4
195
169
  :apdex_t
196
170
  else
197
171
  :apdex_f
@@ -202,26 +176,27 @@ module NewRelic
202
176
  if txn = tl_current
203
177
  txn.add_agent_attribute(key, value, default_destinations)
204
178
  else
205
- NewRelic::Agent.logger.debug "Attempted to add agent attribute: #{key} without transaction"
179
+ NewRelic::Agent.logger.debug("Attempted to add agent attribute: #{key} without transaction")
206
180
  end
207
181
  end
208
182
 
209
183
  def add_agent_attribute(key, value, default_destinations)
210
184
  @attributes.add_agent_attribute(key, value, default_destinations)
211
- current_segment.add_agent_attribute(key, value) if current_segment
185
+ # the following line needs else branch coverage
186
+ current_segment.add_agent_attribute(key, value) if current_segment # rubocop:disable Style/SafeNavigation
212
187
  end
213
188
 
214
189
  def self.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
215
190
  if txn = tl_current
216
191
  txn.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
217
192
  else
218
- NewRelic::Agent.logger.debug "Attempted to merge untrusted attributes without transaction"
193
+ NewRelic::Agent.logger.debug('Attempted to merge untrusted attributes without transaction')
219
194
  end
220
195
  end
221
196
 
222
197
  def merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
223
198
  @attributes.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
224
- current_segment.merge_untrusted_agent_attributes(attributes, prefix, default_destinations) if current_segment
199
+ current_segment&.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
225
200
  end
226
201
 
227
202
  @@java_classes_loaded = false
@@ -229,26 +204,28 @@ module NewRelic
229
204
  if defined? JRuby
230
205
  begin
231
206
  require 'java'
232
- java_import 'java.lang.management.ManagementFactory'
233
- java_import 'com.sun.management.OperatingSystemMXBean'
207
+ java_import('java.lang.management.ManagementFactory')
208
+ java_import('com.sun.management.OperatingSystemMXBean')
234
209
  @@java_classes_loaded = true
235
210
  rescue
236
211
  end
237
212
  end
238
213
 
239
- def initialize(category, options)
214
+ def initialize(category, options) # rubocop:disable Metrics/AbcSize
240
215
  @nesting_max_depth = 0
241
- @current_segment = nil
216
+ @current_segment_by_thread = {}
217
+ @current_segment_lock = Mutex.new
242
218
  @segments = []
243
219
 
244
220
  self.default_name = options[:transaction_name]
245
- @overridden_name = nil
246
- @frozen_name = nil
221
+ @overridden_name = nil
222
+ @frozen_name = nil
247
223
 
248
224
  @category = category
249
- @start_time = Time.now
225
+ @start_time = Process.clock_gettime(Process::CLOCK_REALTIME)
250
226
  @end_time = nil
251
227
  @duration = nil
228
+
252
229
  @apdex_start = options[:apdex_start_time] || @start_time
253
230
  @jruby_cpu_start = jruby_cpu_time
254
231
  @process_cpu_start = process_cpu
@@ -257,6 +234,7 @@ module NewRelic
257
234
 
258
235
  @exceptions = {}
259
236
  @metrics = TransactionMetrics.new
237
+ @logs = PrioritySampledBuffer.new(NewRelic::Agent.instance.log_event_aggregator.capacity)
260
238
  @guid = NewRelic::Agent::GuidGenerator.generate_guid
261
239
 
262
240
  @ignore_this_transaction = false
@@ -268,24 +246,52 @@ module NewRelic
268
246
  @priority = nil
269
247
 
270
248
  @starting_thread_id = Thread.current.object_id
249
+ @starting_segment_key = current_segment_key
271
250
 
272
251
  @attributes = Attributes.new(NewRelic::Agent.instance.attribute_filter)
273
252
 
274
253
  merge_request_parameters(@filtered_params)
275
254
 
276
255
  if request = options[:request]
277
- @request_attributes = RequestAttributes.new request
256
+ @request_attributes = RequestAttributes.new(request)
278
257
  else
279
258
  @request_attributes = nil
280
259
  end
281
260
  end
282
261
 
262
+ def state
263
+ NewRelic::Agent::Tracer.state
264
+ end
265
+
266
+ def current_segment_key
267
+ Tracer.current_segment_key
268
+ end
269
+
270
+ def parent_segment_key
271
+ (::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))
272
+ end
273
+
274
+ def current_segment
275
+ current_segment_by_thread[current_segment_key] ||
276
+ current_segment_by_thread[parent_segment_key] ||
277
+ current_segment_by_thread[@starting_segment_key]
278
+ end
279
+
280
+ def set_current_segment(new_segment)
281
+ @current_segment_lock.synchronize { current_segment_by_thread[current_segment_key] = new_segment }
282
+ end
283
+
284
+ def remove_current_segment_by_thread_id(id)
285
+ @current_segment_lock.synchronize { current_segment_by_thread.delete(id) }
286
+ end
287
+
283
288
  def distributed_tracer
284
289
  @distributed_tracer ||= DistributedTracer.new(self)
285
290
  end
286
291
 
287
292
  def sampled?
288
- return unless Agent.config[:'distributed_tracing.enabled']
293
+ return false unless Agent.config[:'distributed_tracing.enabled']
294
+
289
295
  if @sampled.nil?
290
296
  @sampled = NewRelic::Agent.instance.adaptive_sampler.sampled?
291
297
  end
@@ -293,7 +299,7 @@ module NewRelic
293
299
  end
294
300
 
295
301
  def trace_id
296
- @trace_id ||= NewRelic::Agent::GuidGenerator.generate_guid 32
302
+ @trace_id ||= NewRelic::Agent::GuidGenerator.generate_guid(32)
297
303
  end
298
304
 
299
305
  def trace_id=(value)
@@ -301,22 +307,22 @@ module NewRelic
301
307
  end
302
308
 
303
309
  def priority
304
- @priority ||= (sampled? ? 1.0 + rand : rand).round(NewRelic::PRIORITY_PRECISION)
310
+ @priority ||= (sampled? ? rand + 1.0 : rand).round(NewRelic::PRIORITY_PRECISION)
305
311
  end
306
312
 
307
313
  def referer
308
- @request_attributes && @request_attributes.referer
314
+ @request_attributes&.referer
309
315
  end
310
316
 
311
317
  def request_path
312
- @request_attributes && @request_attributes.request_path
318
+ @request_attributes&.request_path
313
319
  end
314
320
 
315
321
  def request_port
316
- @request_attributes && @request_attributes.port
322
+ @request_attributes&.port
317
323
  end
318
324
 
319
- # This transaction-local hash may be used as temprory storage by
325
+ # This transaction-local hash may be used as temporary storage by
320
326
  # instrumentation that needs to pass data from one instrumentation point
321
327
  # to another.
322
328
  #
@@ -348,6 +354,7 @@ module NewRelic
348
354
 
349
355
  def set_default_transaction_name(name, category)
350
356
  return log_frozen_name(name) if name_frozen?
357
+
351
358
  if influences_transaction_name?(category)
352
359
  self.default_name = name
353
360
  @category = category if category
@@ -356,10 +363,9 @@ module NewRelic
356
363
 
357
364
  def set_overriding_transaction_name(name, category)
358
365
  return log_frozen_name(name) if name_frozen?
359
- if influences_transaction_name?(category)
360
- self.overridden_name = name
361
- @category = category if category
362
- end
366
+
367
+ self.overridden_name = name
368
+ @category = category if category
363
369
  end
364
370
 
365
371
  def log_frozen_name(name)
@@ -373,9 +379,9 @@ module NewRelic
373
379
 
374
380
  def best_name
375
381
  @frozen_name ||
376
- @overridden_name ||
377
- @default_name ||
378
- NewRelic::Agent::UNKNOWN_METRIC
382
+ @overridden_name ||
383
+ @default_name ||
384
+ NewRelic::Agent::UNKNOWN_METRIC
379
385
  end
380
386
 
381
387
  # For common interface with Trace
@@ -413,32 +419,37 @@ module NewRelic
413
419
  @frozen_name ? true : false
414
420
  end
415
421
 
416
- def start
422
+ def start(options = {})
417
423
  return if !state.is_execution_traced?
418
424
 
419
- sql_sampler.on_start_transaction(state, start_time, request_path)
425
+ sql_sampler.on_start_transaction(state, request_path)
420
426
  NewRelic::Agent.instance.events.notify(:start_transaction)
421
427
  NewRelic::Agent::TransactionTimeAggregator.transaction_start(start_time)
422
428
 
423
429
  ignore! if user_defined_rules_ignore?
424
430
 
425
- create_initial_segment
426
- Segment.merge_untrusted_agent_attributes \
431
+ create_initial_segment(options)
432
+ Segment.merge_untrusted_agent_attributes( \
427
433
  @filtered_params,
428
434
  :'request.parameters',
429
435
  AttributeFilter::DST_SPAN_EVENTS
436
+ )
430
437
  end
431
438
 
432
439
  def initial_segment
433
440
  segments.first
434
441
  end
435
442
 
436
- def create_initial_segment
437
- segment = create_segment @default_name
443
+ def finished?
444
+ initial_segment&.finished?
445
+ end
446
+
447
+ def create_initial_segment(options = {})
448
+ segment = create_segment(@default_name, options)
438
449
  segment.record_scoped_metric = false
439
450
  end
440
451
 
441
- def create_segment(name)
452
+ def create_segment(name, options = {})
442
453
  summary_metrics = nil
443
454
 
444
455
  if name.start_with?(MIDDLEWARE_PREFIX)
@@ -452,6 +463,10 @@ module NewRelic
452
463
  unscoped_metrics: summary_metrics
453
464
  )
454
465
 
466
+ # #code_information will glean the code info out of the options hash
467
+ # if it exists or noop otherwise
468
+ segment.code_information = options
469
+
455
470
  segment
456
471
  end
457
472
 
@@ -461,18 +476,19 @@ module NewRelic
461
476
  merge_request_parameters(options[:filtered_params])
462
477
  end
463
478
 
464
- @ignore_apdex = options[:ignore_apdex] if options.key? :ignore_apdex
465
- @ignore_enduser = options[:ignore_enduser] if options.key? :ignore_enduser
479
+ @ignore_apdex = options[:ignore_apdex] if options.key?(:ignore_apdex)
480
+ @ignore_enduser = options[:ignore_enduser] if options.key?(:ignore_enduser)
481
+
482
+ nest_initial_segment if segments.length == 1
483
+ nested_name = self.class.nested_transaction_name(options[:transaction_name])
466
484
 
467
- nest_initial_segment if nesting_max_depth == 1
468
- nested_name = self.class.nested_transaction_name options[:transaction_name]
469
- segment = create_segment nested_name
485
+ segment = create_segment(nested_name, options)
470
486
  set_default_transaction_name(options[:transaction_name], category)
471
487
  segment
472
488
  end
473
489
 
474
490
  def nest_initial_segment
475
- self.initial_segment.name = self.class.nested_transaction_name initial_segment.name
491
+ self.initial_segment.name = self.class.nested_transaction_name(initial_segment.name)
476
492
  initial_segment.record_scoped_metric = true
477
493
  end
478
494
 
@@ -504,9 +520,10 @@ module NewRelic
504
520
  end
505
521
 
506
522
  def finish
507
- return unless state.is_execution_traced?
508
- @end_time = Time.now
509
- @duration = @end_time.to_f - @start_time.to_f
523
+ return unless state.is_execution_traced? && initial_segment
524
+
525
+ @end_time = Process.clock_gettime(Process::CLOCK_REALTIME)
526
+ @duration = @end_time - @start_time
510
527
  freeze_name_and_execute_if_not_ignored
511
528
 
512
529
  if nesting_max_depth == 1
@@ -522,15 +539,15 @@ module NewRelic
522
539
 
523
540
  commit!(initial_segment.name) unless @ignore_this_transaction
524
541
  rescue => e
525
- NewRelic::Agent.logger.error("Exception during Transaction#finish", e)
542
+ NewRelic::Agent.logger.error('Exception during Transaction#finish', e)
526
543
  nil
527
544
  ensure
528
545
  state.reset
529
546
  end
530
547
 
531
548
  def user_defined_rules_ignore?
532
- return unless request_path
533
- return if (rules = NewRelic::Agent.config[:"rules.ignore_url_regexes"]).empty?
549
+ return false unless request_path
550
+ return false if (rules = NewRelic::Agent.config[:"rules.ignore_url_regexes"]).empty?
534
551
 
535
552
  rules.any? do |rule|
536
553
  request_path.match(rule)
@@ -554,6 +571,7 @@ module NewRelic
554
571
 
555
572
  record_exceptions
556
573
  record_transaction_event
574
+ record_log_events
557
575
  merge_metrics
558
576
  send_transaction_finished_event
559
577
  end
@@ -561,19 +579,16 @@ module NewRelic
561
579
  def assign_segment_dt_attributes
562
580
  dt_payload = distributed_tracer.trace_state_payload || distributed_tracer.distributed_trace_payload
563
581
  parent_attributes = {}
564
- DistributedTraceAttributes.copy_parent_attributes self, dt_payload, parent_attributes
565
- parent_attributes.each { |k, v| initial_segment.add_agent_attribute k, v }
582
+ DistributedTraceAttributes.copy_parent_attributes(self, dt_payload, parent_attributes)
583
+ parent_attributes.each { |k, v| initial_segment.add_agent_attribute(k, v) }
566
584
  end
567
585
 
568
586
  def assign_agent_attributes
569
587
  default_destinations = AttributeFilter::DST_TRANSACTION_TRACER |
570
- AttributeFilter::DST_TRANSACTION_EVENTS |
571
- AttributeFilter::DST_ERROR_COLLECTOR
588
+ AttributeFilter::DST_TRANSACTION_EVENTS |
589
+ AttributeFilter::DST_ERROR_COLLECTOR
572
590
 
573
591
  if http_response_code
574
- add_agent_attribute(:httpResponseCode, http_response_code.to_s, default_destinations)
575
- # Sending status code as an int with http.statusCode key is correct
576
- # The above attribute is deprecated and should be removed in agent version 7.0.0
577
592
  add_agent_attribute(:'http.statusCode', http_response_code, default_destinations)
578
593
  end
579
594
 
@@ -585,9 +600,7 @@ module NewRelic
585
600
  add_agent_attribute(:'response.headers.contentType', response_content_type, default_destinations)
586
601
  end
587
602
 
588
- if @request_attributes
589
- @request_attributes.assign_agent_attributes self
590
- end
603
+ @request_attributes&.assign_agent_attributes(self)
591
604
 
592
605
  display_host = Agent.config[:'process_host.display_name']
593
606
  unless display_host == NewRelic::Agent::Hostname.get
@@ -610,11 +623,24 @@ module NewRelic
610
623
  attributes.add_intrinsic_attribute(:synthetics_resource_id, synthetics_resource_id)
611
624
  attributes.add_intrinsic_attribute(:synthetics_job_id, synthetics_job_id)
612
625
  attributes.add_intrinsic_attribute(:synthetics_monitor_id, synthetics_monitor_id)
626
+ attributes.add_intrinsic_attribute(:synthetics_type, synthetics_info('type'))
627
+ attributes.add_intrinsic_attribute(:synthetics_initiator, synthetics_info('initiator'))
628
+
629
+ synthetics_additional_attributes do |key, value|
630
+ attributes.add_intrinsic_attribute(key, value)
631
+ end
613
632
  end
614
633
 
615
634
  distributed_tracer.assign_intrinsics
616
635
  end
617
636
 
637
+ def synthetics_additional_attributes(&block)
638
+ synthetics_info('attributes')&.each do |k, v|
639
+ new_key = "synthetics_#{NewRelic::LanguageSupport.snakeize(k.to_s)}".to_sym
640
+ yield(new_key, v.to_s)
641
+ end
642
+ end
643
+
618
644
  def calculate_gc_time
619
645
  gc_stop_snapshot = NewRelic::Agent::StatsEngine::GCProfiler.take_snapshot
620
646
  NewRelic::Agent::StatsEngine::GCProfiler.record_delta(gc_start_snapshot, gc_stop_snapshot)
@@ -623,11 +649,11 @@ module NewRelic
623
649
  # This method returns transport_duration in seconds. Transport duration
624
650
  # is stored in milliseconds on the payload, but it's needed in seconds
625
651
  # for metrics and intrinsics.
626
- def calculate_transport_duration distributed_trace_payload
652
+ def calculate_transport_duration(distributed_trace_payload)
627
653
  return unless distributed_trace_payload
628
654
 
629
- duration = (start_time.to_f * 1000 - distributed_trace_payload.timestamp) / 1000
630
- duration < 0 ? 0 : duration
655
+ duration = start_time - (distributed_trace_payload.timestamp / 1000.0)
656
+ [duration, 0].max
631
657
  end
632
658
 
633
659
  # The summary metrics recorded by this method all end up with a duration
@@ -646,14 +672,14 @@ module NewRelic
646
672
 
647
673
  def generate_payload
648
674
  @payload = {
649
- :name => @frozen_name,
650
- :bucket => recording_web_transaction? ? :request : :background,
651
- :start_timestamp => start_time.to_f,
652
- :duration => duration,
653
- :metrics => @metrics,
654
- :attributes => @attributes,
655
- :error => false,
656
- :priority => priority
675
+ :name => @frozen_name,
676
+ :bucket => recording_web_transaction? ? :request : :background,
677
+ :start_timestamp => start_time,
678
+ :duration => duration,
679
+ :metrics => @metrics,
680
+ :attributes => @attributes,
681
+ :error => false,
682
+ :priority => priority
657
683
  }
658
684
 
659
685
  distributed_tracer.append_payload(@payload)
@@ -666,7 +692,7 @@ module NewRelic
666
692
  end
667
693
 
668
694
  def is_synthetics_request?
669
- synthetics_payload != nil && raw_synthetics_header != nil
695
+ !synthetics_payload.nil? && !raw_synthetics_header.nil?
670
696
  end
671
697
 
672
698
  def synthetics_version
@@ -694,6 +720,10 @@ module NewRelic
694
720
  info[4]
695
721
  end
696
722
 
723
+ def synthetics_info(key)
724
+ synthetics_info_payload[key] if synthetics_info_payload
725
+ end
726
+
697
727
  def append_apdex_perf_zone(payload)
698
728
  if recording_web_transaction?
699
729
  bucket = apdex_bucket(duration, apdex_t)
@@ -707,7 +737,6 @@ module NewRelic
707
737
  when :apdex_s then APDEX_S
708
738
  when :apdex_t then APDEX_T
709
739
  when :apdex_f then APDEX_F
710
- else nil
711
740
  end
712
741
  payload[:apdex_perf_zone] = bucket_str if bucket_str
713
742
  end
@@ -716,8 +745,14 @@ module NewRelic
716
745
  return unless is_synthetics_request?
717
746
 
718
747
  payload[:synthetics_resource_id] = synthetics_resource_id
719
- payload[:synthetics_job_id] = synthetics_job_id
720
- payload[:synthetics_monitor_id] = synthetics_monitor_id
748
+ payload[:synthetics_job_id] = synthetics_job_id
749
+ payload[:synthetics_monitor_id] = synthetics_monitor_id
750
+ payload[:synthetics_type] = synthetics_info('type')
751
+ payload[:synthetics_initiator] = synthetics_info('initiator')
752
+
753
+ synthetics_additional_attributes do |key, value|
754
+ payload[key] = value
755
+ end
721
756
  end
722
757
 
723
758
  def merge_metrics
@@ -727,35 +762,42 @@ module NewRelic
727
762
  def record_exceptions
728
763
  error_recorded = false
729
764
  @exceptions.each do |exception, options|
730
- options[:uri] ||= request_path if request_path
731
- options[:port] = request_port if request_port
732
- options[:metric] = best_name
733
- options[:attributes] = @attributes
734
-
735
- span_id = options.delete :span_id
736
- error_recorded = !!agent.error_collector.notice_error(exception, options, span_id) || error_recorded
765
+ error_recorded = record_exception(exception, options, error_recorded)
737
766
  end
738
- payload[:error] = error_recorded if payload
767
+ payload&.[]=(:error, error_recorded)
739
768
  end
740
769
 
741
- # Do not call this. Invoke the class method instead.
742
- def notice_error(error, options={}) # :nodoc:
770
+ def record_exception(exception, options, error_recorded)
771
+ options[:uri] ||= request_path if request_path
772
+ options[:port] = request_port if request_port
773
+ options[:metric] = best_name
774
+ options[:attributes] = @attributes
775
+
776
+ span_id = options.delete(:span_id)
777
+ !!agent.error_collector.notice_error(exception, options, span_id) || error_recorded
778
+ end
743
779
 
780
+ # Do not call this. Invoke the class method instead.
781
+ def notice_error(error, options = {}) # :nodoc:
744
782
  # Only the last error is kept
745
- if @current_segment
746
- @current_segment.notice_error error, expected: options[:expected]
747
- options[:span_id] = @current_segment.guid
783
+ if current_segment
784
+ current_segment.notice_error(error, expected: options[:expected])
785
+ options[:span_id] = current_segment.guid
748
786
  end
749
787
 
750
788
  if @exceptions[error]
751
- @exceptions[error].merge! options
789
+ @exceptions[error].merge!(options)
752
790
  else
753
791
  @exceptions[error] = options
754
792
  end
755
793
  end
756
794
 
757
795
  def record_transaction_event
758
- agent.transaction_event_recorder.record payload
796
+ agent.transaction_event_recorder.record(payload)
797
+ end
798
+
799
+ def record_log_events
800
+ agent.log_event_aggregator.record_batch(self, @logs.to_a)
759
801
  end
760
802
 
761
803
  def queue_time
@@ -795,8 +837,8 @@ module NewRelic
795
837
  record_apdex_metrics(APDEX_METRIC, APDEX_TXN_METRIC_PREFIX, apdex_t)
796
838
  else
797
839
  record_apdex_metrics(APDEX_OTHER_METRIC,
798
- APDEX_OTHER_TXN_METRIC_PREFIX,
799
- transaction_specific_apdex_t)
840
+ APDEX_OTHER_TXN_METRIC_PREFIX,
841
+ transaction_specific_apdex_t)
800
842
  end
801
843
  end
802
844
  end
@@ -804,9 +846,9 @@ module NewRelic
804
846
  def record_apdex_metrics(rollup_metric, transaction_prefix, current_apdex_t)
805
847
  return unless current_apdex_t
806
848
 
807
- total_duration = end_time - apdex_start
849
+ total_duration = end_time - apdex_start
808
850
  apdex_bucket_global = apdex_bucket(total_duration, current_apdex_t)
809
- apdex_bucket_txn = apdex_bucket(duration, current_apdex_t)
851
+ apdex_bucket_txn = apdex_bucket(duration, current_apdex_t)
810
852
 
811
853
  @metrics.record_unscoped(rollup_metric, apdex_bucket_global, current_apdex_t)
812
854
  @metrics.record_unscoped(APDEX_ALL_METRIC, apdex_bucket_global, current_apdex_t)
@@ -824,7 +866,7 @@ module NewRelic
824
866
  end
825
867
 
826
868
  def threshold
827
- source_class = Agent.config.source(:'transaction_tracer.transaction_threshold').class
869
+ source_class = Agent.config.source(:'transaction_tracer.transaction_threshold').class
828
870
  if source_class == Configuration::DefaultSource
829
871
  apdex_t * 4
830
872
  else
@@ -832,7 +874,7 @@ module NewRelic
832
874
  end
833
875
  end
834
876
 
835
- def with_database_metric_name(model, method, product=nil)
877
+ def with_database_metric_name(model, method, product = nil)
836
878
  previous = self.instrumentation_state[:datastore_override]
837
879
  model_name = case model
838
880
  when Class
@@ -841,7 +883,7 @@ module NewRelic
841
883
  model
842
884
  else
843
885
  model.to_s
844
- end
886
+ end
845
887
  self.instrumentation_state[:datastore_override] = [method, model_name, product]
846
888
  yield
847
889
  ensure
@@ -852,6 +894,10 @@ module NewRelic
852
894
  attributes.merge_custom_attributes(p)
853
895
  end
854
896
 
897
+ def add_log_event(event)
898
+ logs.append(event: event)
899
+ end
900
+
855
901
  def recording_web_transaction?
856
902
  web_category?(@category)
857
903
  end
@@ -870,11 +916,13 @@ module NewRelic
870
916
 
871
917
  def normal_cpu_burn
872
918
  return unless @process_cpu_start
919
+
873
920
  process_cpu - @process_cpu_start
874
921
  end
875
922
 
876
923
  def jruby_cpu_burn
877
924
  return unless @jruby_cpu_start
925
+
878
926
  jruby_cpu_time - @jruby_cpu_start
879
927
  end
880
928
 
@@ -910,18 +958,21 @@ module NewRelic
910
958
 
911
959
  def process_cpu
912
960
  return nil if defined? JRuby
961
+
913
962
  p = Process.times
914
963
  p.stime + p.utime
915
964
  end
916
965
 
917
966
  def jruby_cpu_time
918
967
  return nil unless @@java_classes_loaded
968
+
919
969
  threadMBean = Java::JavaLangManagement::ManagementFactory.getThreadMXBean()
920
970
 
921
971
  return nil unless threadMBean.isCurrentThreadCpuTimeSupported
922
- java_utime = threadMBean.getCurrentThreadUserTime() # ns
923
972
 
924
- -1 == java_utime ? 0.0 : java_utime/1e9
973
+ java_utime = threadMBean.getCurrentThreadUserTime() # ns
974
+
975
+ -1 == java_utime ? 0.0 : java_utime / 1e9
925
976
  rescue => e
926
977
  ::NewRelic::Agent.logger.log_once(:warn, :jruby_cpu_time, JRUBY_CPU_TIME_ERROR, e)
927
978
  ::NewRelic::Agent.logger.debug(JRUBY_CPU_TIME_ERROR, e)