newrelic_rpm 6.8.0.360 → 8.13.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (440) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +14 -1
  3. data/.rubocop.yml +1817 -0
  4. data/.rubocop_todo.yml +59 -0
  5. data/.simplecov +15 -0
  6. data/.snyk +11 -0
  7. data/.yardopts +1 -0
  8. data/Brewfile +12 -0
  9. data/CHANGELOG.md +1142 -15
  10. data/CONTRIBUTING.md +133 -19
  11. data/DOCKER.md +167 -0
  12. data/Dockerfile +10 -0
  13. data/Gemfile +5 -2
  14. data/Guardfile +18 -6
  15. data/LICENSE +202 -38
  16. data/README.md +84 -87
  17. data/Rakefile +27 -27
  18. data/THIRD_PARTY_NOTICES.md +28 -0
  19. data/Thorfile +5 -0
  20. data/bin/newrelic +3 -2
  21. data/bin/newrelic_cmd +1 -0
  22. data/bin/nrdebug +77 -54
  23. data/config.dot +5 -5
  24. data/docker-compose.yml +107 -0
  25. data/init.rb +5 -7
  26. data/install.rb +3 -3
  27. data/lefthook.yml +9 -0
  28. data/lib/new_relic/agent/adaptive_sampler.rb +14 -10
  29. data/lib/new_relic/agent/agent/shutdown.rb +35 -0
  30. data/lib/new_relic/agent/agent/special_startup.rb +72 -0
  31. data/lib/new_relic/agent/agent/start_worker_thread.rb +163 -0
  32. data/lib/new_relic/agent/agent/startup.rb +197 -0
  33. data/lib/new_relic/agent/agent.rb +199 -562
  34. data/lib/new_relic/agent/agent_logger.rb +24 -20
  35. data/lib/new_relic/agent/attribute_filter.rb +67 -48
  36. data/lib/new_relic/agent/attribute_processing.rb +8 -8
  37. data/lib/new_relic/agent/attributes.rb +9 -8
  38. data/lib/new_relic/agent/audit_logger.rb +19 -4
  39. data/lib/new_relic/agent/autostart.rb +21 -20
  40. data/lib/new_relic/agent/chained_call.rb +2 -2
  41. data/lib/new_relic/agent/commands/agent_command.rb +4 -4
  42. data/lib/new_relic/agent/commands/agent_command_router.rb +13 -12
  43. data/lib/new_relic/agent/commands/thread_profiler_session.rb +10 -8
  44. data/lib/new_relic/agent/configuration/default_source.rb +1731 -1143
  45. data/lib/new_relic/agent/configuration/dotted_hash.rb +7 -6
  46. data/lib/new_relic/agent/configuration/environment_source.rb +12 -10
  47. data/lib/new_relic/agent/configuration/event_harvest_config.rb +41 -18
  48. data/lib/new_relic/agent/configuration/high_security_source.rb +10 -9
  49. data/lib/new_relic/agent/configuration/manager.rb +83 -70
  50. data/lib/new_relic/agent/configuration/manual_source.rb +2 -2
  51. data/lib/new_relic/agent/configuration/mask_defaults.rb +4 -4
  52. data/lib/new_relic/agent/configuration/security_policy_source.rb +91 -78
  53. data/lib/new_relic/agent/configuration/server_source.rb +23 -21
  54. data/lib/new_relic/agent/configuration/yaml_source.rb +33 -9
  55. data/lib/new_relic/agent/configuration.rb +2 -2
  56. data/lib/new_relic/agent/connect/request_builder.rb +19 -19
  57. data/lib/new_relic/agent/connect/response_handler.rb +6 -9
  58. data/lib/new_relic/agent/custom_event_aggregator.rb +15 -15
  59. data/lib/new_relic/agent/database/explain_plan_helpers.rb +5 -6
  60. data/lib/new_relic/agent/database/obfuscation_helpers.rb +16 -15
  61. data/lib/new_relic/agent/database/obfuscator.rb +3 -3
  62. data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +4 -4
  63. data/lib/new_relic/agent/database.rb +55 -50
  64. data/lib/new_relic/agent/database_adapter.rb +35 -0
  65. data/lib/new_relic/agent/datastores/metric_helper.rb +18 -19
  66. data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +8 -7
  67. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +7 -11
  68. data/lib/new_relic/agent/datastores/mongo.rb +7 -12
  69. data/lib/new_relic/agent/datastores/nosql_obfuscator.rb +41 -0
  70. data/lib/new_relic/agent/datastores/redis.rb +6 -12
  71. data/lib/new_relic/agent/datastores.rb +12 -14
  72. data/lib/new_relic/agent/deprecator.rb +2 -2
  73. data/lib/new_relic/agent/{cross_app_payload.rb → distributed_tracing/cross_app_payload.rb} +13 -12
  74. data/lib/new_relic/agent/{cross_app_tracing.rb → distributed_tracing/cross_app_tracing.rb} +86 -64
  75. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +84 -0
  76. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +75 -0
  77. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +163 -0
  78. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +38 -0
  79. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +245 -0
  80. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +127 -0
  81. data/lib/new_relic/agent/distributed_tracing.rb +113 -32
  82. data/lib/new_relic/agent/encoding_normalizer.rb +5 -3
  83. data/lib/new_relic/agent/error_collector.rb +98 -62
  84. data/lib/new_relic/agent/error_event_aggregator.rb +9 -8
  85. data/lib/new_relic/agent/error_filter.rb +174 -0
  86. data/lib/new_relic/agent/error_trace_aggregator.rb +5 -4
  87. data/lib/new_relic/agent/event_aggregator.rb +23 -22
  88. data/lib/new_relic/agent/event_buffer.rb +8 -9
  89. data/lib/new_relic/agent/event_listener.rb +2 -3
  90. data/lib/new_relic/agent/event_loop.rb +26 -24
  91. data/lib/new_relic/agent/external.rb +19 -52
  92. data/lib/new_relic/agent/guid_generator.rb +5 -12
  93. data/lib/new_relic/agent/harvester.rb +5 -6
  94. data/lib/new_relic/agent/heap.rb +7 -9
  95. data/lib/new_relic/agent/hostname.rb +21 -8
  96. data/lib/new_relic/agent/http_clients/abstract.rb +81 -0
  97. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +26 -26
  98. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +31 -17
  99. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +18 -23
  100. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +12 -15
  101. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +24 -8
  102. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +9 -12
  103. data/lib/new_relic/agent/http_clients/uri_util.rb +12 -13
  104. data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +12 -14
  105. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +43 -32
  106. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +21 -14
  107. data/lib/new_relic/agent/instrumentation/active_job.rb +15 -8
  108. data/lib/new_relic/agent/instrumentation/active_merchant.rb +21 -7
  109. data/lib/new_relic/agent/instrumentation/active_record.rb +89 -40
  110. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +82 -61
  111. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +32 -45
  112. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +36 -12
  113. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +34 -22
  114. data/lib/new_relic/agent/instrumentation/active_storage.rb +3 -3
  115. data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +25 -18
  116. data/lib/new_relic/agent/instrumentation/active_support_logger/chain.rb +23 -0
  117. data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +20 -0
  118. data/lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb +12 -0
  119. data/lib/new_relic/agent/instrumentation/active_support_logger.rb +24 -0
  120. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +12 -3
  121. data/lib/new_relic/agent/instrumentation/authlogic.rb +11 -3
  122. data/lib/new_relic/agent/instrumentation/bunny/chain.rb +45 -0
  123. data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +150 -0
  124. data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +35 -0
  125. data/lib/new_relic/agent/instrumentation/bunny.rb +14 -138
  126. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +69 -59
  127. data/lib/new_relic/agent/instrumentation/curb/chain.rb +91 -0
  128. data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +221 -0
  129. data/lib/new_relic/agent/instrumentation/curb/prepend.rb +61 -0
  130. data/lib/new_relic/agent/instrumentation/curb.rb +13 -198
  131. data/lib/new_relic/agent/instrumentation/data_mapper.rb +68 -55
  132. data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +35 -0
  133. data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +48 -0
  134. data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +33 -0
  135. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +30 -52
  136. data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +29 -0
  137. data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +66 -0
  138. data/lib/new_relic/agent/instrumentation/elasticsearch/prepend.rb +13 -0
  139. data/lib/new_relic/agent/instrumentation/elasticsearch.rb +31 -0
  140. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +7 -6
  141. data/lib/new_relic/agent/instrumentation/excon.rb +24 -26
  142. data/lib/new_relic/agent/instrumentation/grape/chain.rb +24 -0
  143. data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +100 -0
  144. data/lib/new_relic/agent/instrumentation/grape/prepend.rb +17 -0
  145. data/lib/new_relic/agent/instrumentation/grape.rb +12 -118
  146. data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +97 -0
  147. data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +89 -0
  148. data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +111 -0
  149. data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +30 -0
  150. data/lib/new_relic/agent/instrumentation/grpc/helper.rb +32 -0
  151. data/lib/new_relic/agent/instrumentation/grpc/server/chain.rb +69 -0
  152. data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +134 -0
  153. data/lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb +35 -0
  154. data/lib/new_relic/agent/instrumentation/grpc/server/rpc_server_prepend.rb +26 -0
  155. data/lib/new_relic/agent/instrumentation/grpc_client.rb +23 -0
  156. data/lib/new_relic/agent/instrumentation/grpc_server.rb +25 -0
  157. data/lib/new_relic/agent/instrumentation/httpclient/chain.rb +24 -0
  158. data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +37 -0
  159. data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +15 -0
  160. data/lib/new_relic/agent/instrumentation/httpclient.rb +12 -32
  161. data/lib/new_relic/agent/instrumentation/httprb/chain.rb +22 -0
  162. data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +30 -0
  163. data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +15 -0
  164. data/lib/new_relic/agent/instrumentation/httprb.rb +29 -0
  165. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +5 -6
  166. data/lib/new_relic/agent/instrumentation/logger/chain.rb +21 -0
  167. data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +66 -0
  168. data/lib/new_relic/agent/instrumentation/logger/prepend.rb +13 -0
  169. data/lib/new_relic/agent/instrumentation/logger.rb +26 -0
  170. data/lib/new_relic/agent/instrumentation/memcache/chain.rb +15 -0
  171. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +58 -125
  172. data/lib/new_relic/agent/instrumentation/memcache/helper.rb +59 -0
  173. data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +90 -0
  174. data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +101 -0
  175. data/lib/new_relic/agent/instrumentation/memcache.rb +57 -71
  176. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +14 -13
  177. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +10 -10
  178. data/lib/new_relic/agent/instrumentation/mongo.rb +6 -131
  179. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +49 -13
  180. data/lib/new_relic/agent/instrumentation/net_http/chain.rb +24 -0
  181. data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +40 -0
  182. data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +21 -0
  183. data/lib/new_relic/agent/instrumentation/net_http.rb +44 -0
  184. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +34 -9
  185. data/lib/new_relic/agent/instrumentation/padrino/chain.rb +38 -0
  186. data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +28 -0
  187. data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +20 -0
  188. data/lib/new_relic/agent/instrumentation/padrino.rb +22 -58
  189. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +4 -4
  190. data/lib/new_relic/agent/instrumentation/queue_time.rb +9 -10
  191. data/lib/new_relic/agent/instrumentation/rack/chain.rb +66 -0
  192. data/lib/new_relic/agent/instrumentation/rack/helpers.rb +33 -0
  193. data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +75 -0
  194. data/lib/new_relic/agent/instrumentation/rack/prepend.rb +43 -0
  195. data/lib/new_relic/agent/instrumentation/rack.rb +31 -139
  196. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +17 -53
  197. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +2 -2
  198. data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +6 -5
  199. data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +4 -4
  200. data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +4 -3
  201. data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +14 -4
  202. data/lib/new_relic/agent/instrumentation/rake/chain.rb +20 -0
  203. data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +149 -0
  204. data/lib/new_relic/agent/instrumentation/rake/prepend.rb +14 -0
  205. data/lib/new_relic/agent/instrumentation/rake.rb +17 -157
  206. data/lib/new_relic/agent/instrumentation/redis/chain.rb +45 -0
  207. data/lib/new_relic/agent/instrumentation/redis/constants.rb +17 -0
  208. data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +72 -0
  209. data/lib/new_relic/agent/instrumentation/redis/middleware.rb +16 -0
  210. data/lib/new_relic/agent/instrumentation/redis/prepend.rb +29 -0
  211. data/lib/new_relic/agent/instrumentation/redis.rb +19 -102
  212. data/lib/new_relic/agent/instrumentation/resque/chain.rb +21 -0
  213. data/lib/new_relic/agent/instrumentation/resque/helper.rb +19 -0
  214. data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +34 -0
  215. data/lib/new_relic/agent/instrumentation/resque/prepend.rb +15 -0
  216. data/lib/new_relic/agent/instrumentation/resque.rb +29 -37
  217. data/lib/new_relic/agent/instrumentation/sequel.rb +15 -17
  218. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +3 -3
  219. data/lib/new_relic/agent/instrumentation/sidekiq/client.rb +20 -0
  220. data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +30 -0
  221. data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +37 -0
  222. data/lib/new_relic/agent/instrumentation/sidekiq.rb +28 -45
  223. data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +55 -0
  224. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +31 -37
  225. data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +125 -0
  226. data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +33 -0
  227. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +3 -3
  228. data/lib/new_relic/agent/instrumentation/sinatra.rb +35 -165
  229. data/lib/new_relic/agent/instrumentation/sunspot.rb +12 -4
  230. data/lib/new_relic/agent/instrumentation/thread/chain.rb +24 -0
  231. data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +28 -0
  232. data/lib/new_relic/agent/instrumentation/thread/prepend.rb +22 -0
  233. data/lib/new_relic/agent/instrumentation/thread.rb +20 -0
  234. data/lib/new_relic/agent/instrumentation/tilt/chain.rb +24 -0
  235. data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +41 -0
  236. data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +13 -0
  237. data/lib/new_relic/agent/instrumentation/tilt.rb +25 -0
  238. data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +22 -0
  239. data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +80 -0
  240. data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +14 -0
  241. data/lib/new_relic/agent/instrumentation/typhoeus.rb +14 -76
  242. data/lib/new_relic/agent/instrumentation.rb +2 -2
  243. data/lib/new_relic/agent/internal_agent_error.rb +3 -3
  244. data/lib/new_relic/agent/javascript_instrumentor.rb +48 -42
  245. data/lib/new_relic/agent/linking_metadata.rb +44 -0
  246. data/lib/new_relic/agent/local_log_decorator.rb +37 -0
  247. data/lib/new_relic/agent/log_event_aggregator.rb +235 -0
  248. data/lib/new_relic/agent/log_once.rb +2 -2
  249. data/lib/new_relic/agent/log_priority.rb +20 -0
  250. data/lib/new_relic/agent/logging.rb +39 -26
  251. data/lib/new_relic/agent/memory_logger.rb +3 -3
  252. data/lib/new_relic/agent/messaging.rb +70 -154
  253. data/lib/new_relic/agent/method_tracer.rb +152 -145
  254. data/lib/new_relic/agent/method_tracer_helpers.rb +87 -5
  255. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +118 -0
  256. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +28 -0
  257. data/lib/new_relic/agent/{inbound_request_monitor.rb → monitors/inbound_request_monitor.rb} +3 -4
  258. data/lib/new_relic/agent/{synthetics_monitor.rb → monitors/synthetics_monitor.rb} +8 -13
  259. data/lib/new_relic/agent/monitors.rb +26 -0
  260. data/lib/new_relic/agent/new_relic_service/encoders.rb +7 -7
  261. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +6 -6
  262. data/lib/new_relic/agent/new_relic_service/marshaller.rb +3 -3
  263. data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +6 -5
  264. data/lib/new_relic/agent/new_relic_service.rb +258 -184
  265. data/lib/new_relic/agent/noticeable_error.rb +19 -0
  266. data/lib/new_relic/agent/null_logger.rb +8 -4
  267. data/lib/new_relic/agent/obfuscator.rb +9 -11
  268. data/lib/new_relic/agent/parameter_filtering.rb +25 -11
  269. data/lib/new_relic/agent/payload_metric_mapping.rb +10 -11
  270. data/lib/new_relic/agent/pipe_channel_manager.rb +28 -18
  271. data/lib/new_relic/agent/pipe_service.rb +9 -6
  272. data/lib/new_relic/agent/prepend_supportability.rb +3 -3
  273. data/lib/new_relic/agent/priority_sampled_buffer.rb +15 -15
  274. data/lib/new_relic/agent/range_extensions.rb +9 -29
  275. data/lib/new_relic/agent/rules_engine/replacement_rule.rb +12 -12
  276. data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +14 -14
  277. data/lib/new_relic/agent/rules_engine.rb +6 -5
  278. data/lib/new_relic/agent/sampler.rb +4 -5
  279. data/lib/new_relic/agent/sampler_collection.rb +4 -5
  280. data/lib/new_relic/agent/samplers/cpu_sampler.rb +4 -3
  281. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +13 -10
  282. data/lib/new_relic/agent/samplers/memory_sampler.rb +26 -15
  283. data/lib/new_relic/agent/samplers/object_sampler.rb +2 -2
  284. data/lib/new_relic/agent/samplers/vm_sampler.rb +22 -20
  285. data/lib/new_relic/agent/span_event_aggregator.rb +13 -13
  286. data/lib/new_relic/agent/span_event_primitive.rb +106 -68
  287. data/lib/new_relic/agent/sql_sampler.rb +22 -22
  288. data/lib/new_relic/agent/stats.rb +79 -42
  289. data/lib/new_relic/agent/stats_engine/gc_profiler.rb +11 -13
  290. data/lib/new_relic/agent/stats_engine/stats_hash.rb +13 -14
  291. data/lib/new_relic/agent/stats_engine.rb +9 -9
  292. data/lib/new_relic/agent/synthetics_event_aggregator.rb +8 -9
  293. data/lib/new_relic/agent/system_info.rb +95 -66
  294. data/lib/new_relic/agent/threading/agent_thread.rb +19 -15
  295. data/lib/new_relic/agent/threading/backtrace_node.rb +13 -14
  296. data/lib/new_relic/agent/threading/backtrace_service.rb +15 -15
  297. data/lib/new_relic/agent/threading/thread_profile.rb +24 -24
  298. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +2 -2
  299. data/lib/new_relic/agent/tracer.rb +107 -101
  300. data/lib/new_relic/agent/transaction/abstract_segment.rb +128 -38
  301. data/lib/new_relic/agent/transaction/datastore_segment.rb +22 -18
  302. data/lib/new_relic/agent/transaction/distributed_tracer.rb +184 -0
  303. data/lib/new_relic/agent/transaction/distributed_tracing.rb +75 -84
  304. data/lib/new_relic/agent/transaction/external_request_segment.rb +66 -76
  305. data/lib/new_relic/agent/transaction/message_broker_segment.rb +34 -46
  306. data/lib/new_relic/agent/transaction/request_attributes.rb +36 -36
  307. data/lib/new_relic/agent/transaction/segment.rb +35 -11
  308. data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +2 -4
  309. data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +2 -2
  310. data/lib/new_relic/agent/transaction/trace.rb +18 -16
  311. data/lib/new_relic/agent/transaction/trace_builder.rb +11 -11
  312. data/lib/new_relic/agent/transaction/trace_context.rb +102 -93
  313. data/lib/new_relic/agent/transaction/trace_node.rb +26 -28
  314. data/lib/new_relic/agent/transaction/tracing.rb +15 -12
  315. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +5 -5
  316. data/lib/new_relic/agent/transaction.rb +210 -177
  317. data/lib/new_relic/agent/transaction_error_primitive.rb +32 -28
  318. data/lib/new_relic/agent/transaction_event_aggregator.rb +13 -13
  319. data/lib/new_relic/agent/transaction_event_primitive.rb +43 -47
  320. data/lib/new_relic/agent/transaction_event_recorder.rb +17 -16
  321. data/lib/new_relic/agent/transaction_metrics.rb +11 -10
  322. data/lib/new_relic/agent/transaction_sampler.rb +6 -7
  323. data/lib/new_relic/agent/transaction_time_aggregator.rb +27 -26
  324. data/lib/new_relic/agent/utilization/aws.rb +34 -4
  325. data/lib/new_relic/agent/utilization/azure.rb +4 -4
  326. data/lib/new_relic/agent/utilization/gcp.rb +8 -8
  327. data/lib/new_relic/agent/utilization/pcf.rb +6 -5
  328. data/lib/new_relic/agent/utilization/vendor.rb +44 -29
  329. data/lib/new_relic/agent/utilization_data.rb +8 -6
  330. data/lib/new_relic/agent/vm/jruby_vm.rb +2 -2
  331. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +3 -3
  332. data/lib/new_relic/agent/vm/mri_vm.rb +46 -19
  333. data/lib/new_relic/agent/vm/snapshot.rb +6 -6
  334. data/lib/new_relic/agent/vm.rb +2 -2
  335. data/lib/new_relic/agent/worker_loop.rb +11 -13
  336. data/lib/new_relic/agent.rb +78 -79
  337. data/lib/new_relic/cli/command.rb +21 -23
  338. data/lib/new_relic/cli/commands/deployments.rb +93 -44
  339. data/lib/new_relic/cli/commands/install.rb +15 -17
  340. data/lib/new_relic/coerce.rb +19 -15
  341. data/lib/new_relic/collection_helper.rb +51 -49
  342. data/lib/new_relic/constants.rb +39 -0
  343. data/lib/new_relic/control/class_methods.rb +4 -4
  344. data/lib/new_relic/control/frameworks/external.rb +3 -3
  345. data/lib/new_relic/control/frameworks/rails.rb +24 -18
  346. data/lib/new_relic/control/frameworks/rails3.rb +4 -5
  347. data/lib/new_relic/control/frameworks/rails4.rb +2 -2
  348. data/lib/new_relic/control/frameworks/rails_notifications.rb +2 -2
  349. data/lib/new_relic/control/frameworks/ruby.rb +4 -4
  350. data/lib/new_relic/control/frameworks/sinatra.rb +8 -2
  351. data/lib/new_relic/control/frameworks.rb +2 -2
  352. data/lib/new_relic/control/instance_methods.rb +24 -46
  353. data/lib/new_relic/control/instrumentation.rb +40 -12
  354. data/lib/new_relic/control/private_instance_methods.rb +48 -0
  355. data/lib/new_relic/control/server_methods.rb +4 -5
  356. data/lib/new_relic/control.rb +2 -3
  357. data/lib/new_relic/delayed_job_injection.rb +2 -2
  358. data/lib/new_relic/dependency_detection.rb +129 -18
  359. data/lib/new_relic/environment_report.rb +41 -35
  360. data/lib/new_relic/helper.rb +49 -8
  361. data/lib/new_relic/language_support.rb +30 -6
  362. data/lib/new_relic/latest_changes.rb +9 -8
  363. data/lib/new_relic/local_environment.rb +25 -19
  364. data/lib/new_relic/metric_data.rb +32 -27
  365. data/lib/new_relic/metric_spec.rb +9 -7
  366. data/lib/new_relic/noticed_error.rb +44 -35
  367. data/lib/new_relic/rack/agent_hooks.rb +2 -2
  368. data/lib/new_relic/rack/agent_middleware.rb +6 -4
  369. data/lib/new_relic/rack/browser_monitoring.rb +134 -119
  370. data/lib/new_relic/rack.rb +2 -2
  371. data/lib/new_relic/recipes/capistrano3.rb +4 -62
  372. data/lib/new_relic/recipes/capistrano_legacy.rb +24 -27
  373. data/lib/new_relic/recipes/helpers/send_deployment.rb +69 -0
  374. data/lib/new_relic/recipes.rb +2 -2
  375. data/lib/new_relic/supportability_helper.rb +21 -6
  376. data/lib/new_relic/traced_thread.rb +35 -0
  377. data/lib/new_relic/version.rb +7 -18
  378. data/lib/newrelic_rpm.rb +12 -36
  379. data/lib/sequel/extensions/newrelic_instrumentation.rb +13 -16
  380. data/lib/sequel/plugins/newrelic_instrumentation.rb +5 -11
  381. data/lib/tasks/all.rb +4 -4
  382. data/lib/tasks/config.rake +22 -117
  383. data/lib/tasks/coverage_report.rake +28 -0
  384. data/lib/tasks/helpers/config.html.erb +21 -0
  385. data/lib/tasks/{config.text.erb → helpers/config.text.erb} +0 -0
  386. data/lib/tasks/helpers/format.rb +123 -0
  387. data/lib/tasks/helpers/matches.rb +12 -0
  388. data/lib/tasks/helpers/prompt.rb +24 -0
  389. data/lib/tasks/helpers/removers.rb +33 -0
  390. data/lib/tasks/install.rake +4 -0
  391. data/lib/tasks/instrumentation_generator/README.md +63 -0
  392. data/lib/tasks/instrumentation_generator/TODO.md +33 -0
  393. data/lib/tasks/instrumentation_generator/instrumentation.thor +124 -0
  394. data/lib/tasks/instrumentation_generator/templates/Envfile.tt +9 -0
  395. data/lib/tasks/instrumentation_generator/templates/chain.tt +22 -0
  396. data/lib/tasks/instrumentation_generator/templates/chain_method.tt +8 -0
  397. data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +29 -0
  398. data/lib/tasks/instrumentation_generator/templates/instrumentation.tt +13 -0
  399. data/lib/tasks/instrumentation_generator/templates/instrumentation_method.tt +3 -0
  400. data/lib/tasks/instrumentation_generator/templates/newrelic.yml.tt +19 -0
  401. data/lib/tasks/instrumentation_generator/templates/prepend.tt +13 -0
  402. data/lib/tasks/instrumentation_generator/templates/prepend_method.tt +3 -0
  403. data/lib/tasks/instrumentation_generator/templates/test.tt +15 -0
  404. data/lib/tasks/multiverse.rake +4 -0
  405. data/lib/tasks/multiverse.rb +12 -5
  406. data/lib/tasks/newrelic.rb +2 -2
  407. data/lib/tasks/tests.rake +14 -14
  408. data/newrelic.yml +648 -3
  409. data/newrelic_rpm.gemspec +28 -25
  410. data/recipes/newrelic.rb +3 -3
  411. data/test/agent_helper.rb +332 -103
  412. metadata +192 -119
  413. data/.travis.yml +0 -210
  414. data/bin/mongrel_rpm +0 -33
  415. data/cert/cacert.pem +0 -1177
  416. data/lib/new_relic/agent/cross_app_monitor.rb +0 -110
  417. data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +0 -44
  418. data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +0 -53
  419. data/lib/new_relic/agent/distributed_trace_intrinsics.rb +0 -90
  420. data/lib/new_relic/agent/distributed_trace_metrics.rb +0 -74
  421. data/lib/new_relic/agent/distributed_trace_monitor.rb +0 -30
  422. data/lib/new_relic/agent/distributed_trace_payload.rb +0 -175
  423. data/lib/new_relic/agent/distributed_trace_transport_type.rb +0 -43
  424. data/lib/new_relic/agent/http_clients/abstract_request.rb +0 -31
  425. data/lib/new_relic/agent/instrumentation/excon/connection.rb +0 -46
  426. data/lib/new_relic/agent/instrumentation/http.rb +0 -46
  427. data/lib/new_relic/agent/instrumentation/merb/controller.rb +0 -44
  428. data/lib/new_relic/agent/instrumentation/merb/errors.rb +0 -33
  429. data/lib/new_relic/agent/instrumentation/net.rb +0 -50
  430. data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +0 -125
  431. data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +0 -46
  432. data/lib/new_relic/agent/supported_versions.rb +0 -275
  433. data/lib/new_relic/agent/trace_context.rb +0 -244
  434. data/lib/new_relic/agent/trace_context_payload.rb +0 -134
  435. data/lib/new_relic/agent/trace_context_request_monitor.rb +0 -42
  436. data/lib/new_relic/build.rb +0 -2
  437. data/lib/new_relic/control/frameworks/merb.rb +0 -29
  438. data/lib/new_relic/metrics.rb +0 -13
  439. data/lib/tasks/config.html.erb +0 -32
  440. data/true +0 -0
@@ -1,6 +1,6 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
- # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
2
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
3
+ # frozen_string_literal: true
4
4
 
5
5
  require 'new_relic/helper'
6
6
  require 'new_relic/agent/attribute_filter'
@@ -11,17 +11,28 @@ class NewRelic::NoticedError
11
11
  extend NewRelic::CollectionHelper
12
12
 
13
13
  attr_accessor :path, :timestamp, :message, :exception_class_name,
14
- :request_uri, :request_port, :file_name, :line_number,
15
- :stack_trace, :attributes_from_notice_error, :attributes,
16
- :expected
14
+ :request_uri, :request_port, :file_name, :line_number,
15
+ :stack_trace, :attributes_from_notice_error, :attributes,
16
+ :expected
17
17
 
18
- attr_reader :exception_id, :is_internal
18
+ attr_reader :exception_id, :is_internal
19
19
 
20
- STRIPPED_EXCEPTION_REPLACEMENT_MESSAGE = "Message removed by New Relic 'strip_exception_messages' setting".freeze
21
- UNKNOWN_ERROR_CLASS_NAME = 'Error'.freeze
22
- NIL_ERROR_MESSAGE = '<no message>'.freeze
20
+ STRIPPED_EXCEPTION_REPLACEMENT_MESSAGE = "Message removed by New Relic 'strip_exception_messages' setting"
21
+ UNKNOWN_ERROR_CLASS_NAME = 'Error'
22
+ NIL_ERROR_MESSAGE = '<no message>'
23
23
 
24
- def initialize(path, exception, timestamp = Time.now)
24
+ USER_ATTRIBUTES = "userAttributes"
25
+ AGENT_ATTRIBUTES = "agentAttributes"
26
+ INTRINSIC_ATTRIBUTES = "intrinsics"
27
+
28
+ DESTINATION = NewRelic::Agent::AttributeFilter::DST_ERROR_COLLECTOR
29
+
30
+ ERROR_PREFIX_KEY = 'error'
31
+ ERROR_MESSAGE_KEY = "#{ERROR_PREFIX_KEY}.message"
32
+ ERROR_CLASS_KEY = "#{ERROR_PREFIX_KEY}.class"
33
+ ERROR_EXPECTED_KEY = "#{ERROR_PREFIX_KEY}.expected"
34
+
35
+ def initialize(path, exception, timestamp = Process.clock_gettime(Process::CLOCK_REALTIME), expected = false)
25
36
  @exception_id = exception.object_id
26
37
  @path = path
27
38
 
@@ -39,14 +50,14 @@ class NewRelic::NoticedError
39
50
 
40
51
  # replace error message if enabled
41
52
  if NewRelic::Agent.config[:'strip_exception_messages.enabled'] &&
42
- !self.class.passes_message_allowlist(exception.class)
53
+ !self.class.passes_message_allowlist(exception.class)
43
54
  @message = STRIPPED_EXCEPTION_REPLACEMENT_MESSAGE
44
55
  end
45
56
 
46
57
  @attributes_from_notice_error = nil
47
58
  @attributes = nil
48
59
  @timestamp = timestamp
49
- @expected = false
60
+ @expected = expected
50
61
  end
51
62
 
52
63
  def ==(other)
@@ -58,33 +69,21 @@ class NewRelic::NoticedError
58
69
  end
59
70
 
60
71
  def self.passes_message_allowlist(exception_class)
61
- # For backwards compatibility until we remove :'strip_exception_messages.whitelist' config option
62
-
63
- allowed = NewRelic::Agent.config[:'strip_exception_messages.allowed_classes'].concat(NewRelic::Agent.config[:'strip_exception_messages.whitelist'])
64
-
65
- allowed.any? do |klass|
72
+ NewRelic::Agent.config[:'strip_exception_messages.allowed_classes'].any? do |klass|
66
73
  exception_class <= klass
67
74
  end
68
75
  end
69
76
 
70
77
  include NewRelic::Coerce
71
78
 
72
- def to_collector_array(encoder=nil)
73
- [ NewRelic::Helper.time_to_millis(timestamp),
79
+ def to_collector_array(encoder = nil)
80
+ [NewRelic::Helper.time_to_millis(timestamp),
74
81
  string(path),
75
82
  string(message),
76
83
  string(exception_class_name),
77
- processed_attributes ]
84
+ processed_attributes]
78
85
  end
79
86
 
80
- USER_ATTRIBUTES = "userAttributes".freeze
81
- AGENT_ATTRIBUTES = "agentAttributes".freeze
82
- INTRINSIC_ATTRIBUTES = "intrinsics".freeze
83
-
84
- EMPTY_HASH = {}.freeze
85
-
86
- DESTINATION = NewRelic::Agent::AttributeFilter::DST_ERROR_COLLECTOR
87
-
88
87
  # Note that we process attributes lazily and store the result. This is because
89
88
  # there is a possibility that a noticed error will be discarded and not sent back
90
89
  # as a traced error or TransactionError.
@@ -101,10 +100,10 @@ class NewRelic::NoticedError
101
100
 
102
101
  def base_parameters
103
102
  params = {}
104
- params[:file_name] = file_name if file_name
105
- params[:line_number] = line_number if line_number
106
- params[:stack_trace] = stack_trace if stack_trace
107
- params[:'error.expected'] = expected
103
+ params[:file_name] = file_name if file_name
104
+ params[:line_number] = line_number if line_number
105
+ params[:stack_trace] = stack_trace if stack_trace
106
+ params[ERROR_EXPECTED_KEY.to_sym] = expected
108
107
  params
109
108
  end
110
109
 
@@ -133,11 +132,19 @@ class NewRelic::NoticedError
133
132
  end
134
133
  end
135
134
 
135
+ def build_error_attributes
136
+ @attributes_from_notice_error ||= {}
137
+ @attributes_from_notice_error[ERROR_MESSAGE_KEY] = string(message)
138
+ @attributes_from_notice_error[ERROR_CLASS_KEY] = string(exception_class_name)
139
+
140
+ @attributes_from_notice_error[ERROR_EXPECTED_KEY] = true if expected
141
+ end
142
+
136
143
  def build_agent_attributes(merged_attributes)
137
144
  agent_attributes = if @attributes
138
145
  @attributes.agent_attributes_for(DESTINATION)
139
146
  else
140
- EMPTY_HASH
147
+ NewRelic::EMPTY_HASH
141
148
  end
142
149
 
143
150
  # It's possible to override the request_uri from the transaction attributes
@@ -155,7 +162,7 @@ class NewRelic::NoticedError
155
162
  if @attributes
156
163
  @attributes.intrinsic_attributes_for(DESTINATION)
157
164
  else
158
- EMPTY_HASH
165
+ NewRelic::EMPTY_HASH
159
166
  end
160
167
  end
161
168
 
@@ -179,6 +186,9 @@ class NewRelic::NoticedError
179
186
  if exception.nil?
180
187
  @exception_class_name = UNKNOWN_ERROR_CLASS_NAME
181
188
  @message = NIL_ERROR_MESSAGE
189
+ elsif exception.is_a?(NewRelic::Agent::NoticeableError)
190
+ @exception_class_name = exception.class_name
191
+ @message = exception.message
182
192
  else
183
193
  if defined?(Rails::VERSION::MAJOR) && Rails::VERSION::MAJOR < 5 && exception.respond_to?(:original_exception)
184
194
  exception = exception.original_exception || exception
@@ -187,5 +197,4 @@ class NewRelic::NoticedError
187
197
  @message = exception.to_s
188
198
  end
189
199
  end
190
-
191
200
  end
@@ -1,6 +1,6 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
- # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
2
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
3
+ # frozen_string_literal: true
4
4
 
5
5
  require 'new_relic/agent/event_listener'
6
6
  require 'new_relic/rack/agent_middleware'
@@ -1,6 +1,6 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
- # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
2
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
3
+ # frozen_string_literal: true
4
4
 
5
5
  require 'new_relic/agent/tracer'
6
6
  require 'new_relic/agent/instrumentation/controller_instrumentation'
@@ -13,10 +13,10 @@ module NewRelic
13
13
 
14
14
  attr_reader :transaction_options, :category, :target
15
15
 
16
- def initialize(app, options={})
16
+ def initialize(app, options = {})
17
17
  @app = app
18
18
  @category = :middleware
19
- @target = self
19
+ @target = self
20
20
  @transaction_options = {
21
21
  :transaction_name => build_transaction_name
22
22
  }
@@ -33,11 +33,13 @@ module NewRelic
33
33
  # response code before it goes back to the client.
34
34
  def capture_http_response_code(state, result)
35
35
  return if NewRelic::Agent.config[:disable_middleware_instrumentation]
36
+
36
37
  super
37
38
  end
38
39
 
39
40
  def capture_response_content_type(state, result)
40
41
  return if NewRelic::Agent.config[:disable_middleware_instrumentation]
42
+
41
43
  super
42
44
  end
43
45
  end
@@ -1,152 +1,167 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
- # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
2
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
3
+ # frozen_string_literal: true
4
4
 
5
5
  require 'rack'
6
6
  require 'new_relic/rack/agent_middleware'
7
7
  require 'new_relic/agent/instrumentation/middleware_proxy'
8
8
 
9
- module NewRelic::Rack
10
- # This middleware is used by the agent for the Real user monitoring (RUM)
11
- # feature, and will usually be automatically injected in the middleware chain.
12
- # If automatic injection is not working, you may manually use it in your
13
- # middleware chain instead.
14
- #
15
- # @api public
16
- #
17
- class BrowserMonitoring < AgentMiddleware
18
- # The maximum number of bytes of the response body that we will
19
- # examine in order to look for a RUM insertion point.
20
- SCAN_LIMIT = 50_000
21
-
22
- CONTENT_TYPE = 'Content-Type'.freeze
23
- CONTENT_DISPOSITION = 'Content-Disposition'.freeze
24
- ATTACHMENT = 'attachment'.freeze
25
- TEXT_HTML = 'text/html'.freeze
26
-
27
- BODY_START = "<body".freeze
28
- HEAD_START = "<head".freeze
29
- GT = ">".freeze
30
-
31
- def traced_call(env)
32
- result = @app.call(env)
33
- (status, headers, response) = result
34
-
35
- js_to_inject = NewRelic::Agent.browser_timing_header
36
- if (js_to_inject != "") && should_instrument?(env, status, headers)
37
- response_string = autoinstrument_source(response, headers, js_to_inject)
38
-
39
- env[ALREADY_INSTRUMENTED_KEY] = true
40
- if response_string
41
- response = Rack::Response.new(response_string, status, headers)
42
- response.finish
9
+ module NewRelic
10
+ module Rack
11
+ # This middleware is used by the agent for the Real user monitoring (RUM)
12
+ # feature, and will usually be automatically injected in the middleware chain.
13
+ # If automatic injection is not working, you may manually use it in your
14
+ # middleware chain instead.
15
+ #
16
+ # @api public
17
+ #
18
+ class BrowserMonitoring < AgentMiddleware
19
+ # The maximum number of bytes of the response body that we will
20
+ # examine in order to look for a RUM insertion point.
21
+ SCAN_LIMIT = 50_000
22
+
23
+ CONTENT_TYPE = 'Content-Type'.freeze
24
+ CONTENT_DISPOSITION = 'Content-Disposition'.freeze
25
+ CONTENT_LENGTH = 'Content-Length'.freeze
26
+ ATTACHMENT = 'attachment'.freeze
27
+ TEXT_HTML = 'text/html'.freeze
28
+
29
+ BODY_START = "<body".freeze
30
+ HEAD_START = "<head".freeze
31
+ GT = ">".freeze
32
+
33
+ ALREADY_INSTRUMENTED_KEY = "newrelic.browser_monitoring_already_instrumented"
34
+ CHARSET_RE = /<\s*meta[^>]+charset\s*=[^>]*>/im.freeze
35
+ X_UA_COMPATIBLE_RE = /<\s*meta[^>]+http-equiv\s*=\s*['"]x-ua-compatible['"][^>]*>/im.freeze
36
+
37
+ def traced_call(env)
38
+ result = @app.call(env)
39
+ (status, headers, response) = result
40
+
41
+ js_to_inject = NewRelic::Agent.browser_timing_header
42
+ if (js_to_inject != NewRelic::EMPTY_STR) && should_instrument?(env, status, headers)
43
+ response_string = autoinstrument_source(response, headers, js_to_inject)
44
+ if headers.key?(CONTENT_LENGTH)
45
+ content_length = response_string ? response_string.bytesize : 0
46
+ headers[CONTENT_LENGTH] = content_length.to_s
47
+ end
48
+
49
+ env[ALREADY_INSTRUMENTED_KEY] = true
50
+ if response_string
51
+ response = ::Rack::Response.new(response_string, status, headers)
52
+ response.finish
53
+ else
54
+ result
55
+ end
43
56
  else
44
57
  result
45
58
  end
46
- else
47
- result
48
59
  end
49
- end
50
-
51
- ALREADY_INSTRUMENTED_KEY = "newrelic.browser_monitoring_already_instrumented"
52
-
53
- def should_instrument?(env, status, headers)
54
- NewRelic::Agent.config[:'browser_monitoring.auto_instrument'] &&
55
- status == 200 &&
56
- !env[ALREADY_INSTRUMENTED_KEY] &&
57
- is_html?(headers) &&
58
- !is_attachment?(headers) &&
59
- !is_streaming?(env, headers)
60
- end
61
60
 
62
- def is_html?(headers)
63
- headers[CONTENT_TYPE] && headers[CONTENT_TYPE].include?(TEXT_HTML)
64
- end
65
-
66
- def is_attachment?(headers)
67
- headers[CONTENT_DISPOSITION] && headers[CONTENT_DISPOSITION].include?(ATTACHMENT)
68
- end
61
+ def should_instrument?(env, status, headers)
62
+ NewRelic::Agent.config[:'browser_monitoring.auto_instrument'] &&
63
+ status == 200 &&
64
+ !env[ALREADY_INSTRUMENTED_KEY] &&
65
+ html?(headers) &&
66
+ !attachment?(headers) &&
67
+ !streaming?(env, headers)
68
+ end
69
69
 
70
- def is_streaming?(env, headers)
71
- return true if headers && headers['Transfer-Encoding'] == 'chunked'
70
+ private
71
+
72
+ def autoinstrument_source(response, headers, js_to_inject)
73
+ source = gather_source(response)
74
+ close_old_response(response)
75
+ return nil unless source
76
+
77
+ # Only scan the first 50k (roughly) then give up.
78
+ beginning_of_source = source[0..SCAN_LIMIT]
79
+ meta_tag_positions = find_meta_tag_positions(beginning_of_source)
80
+ if body_start = find_body_start(beginning_of_source)
81
+ if insertion_index = find_insertion_index(meta_tag_positions, beginning_of_source, body_start)
82
+ source = source_injection(source, insertion_index, js_to_inject)
83
+ else
84
+ NewRelic::Agent.logger.debug("Skipping RUM instrumentation. Could not properly determine location to inject script.")
85
+ end
86
+ else
87
+ msg = "Skipping RUM instrumentation. Unable to find <body> tag in first #{SCAN_LIMIT} bytes of document."
88
+ NewRelic::Agent.logger.log_once(:warn, :rum_insertion_failure, msg)
89
+ NewRelic::Agent.logger.debug(msg)
90
+ end
72
91
 
73
- defined?(ActionController::Live) &&
74
- env['action_controller.instance'].class.included_modules.include?(ActionController::Live)
75
- end
92
+ source
93
+ rescue => e
94
+ NewRelic::Agent.logger.debug("Skipping RUM instrumentation on exception.", e)
95
+ nil
96
+ end
76
97
 
77
- CHARSET_RE = /<\s*meta[^>]+charset\s*=[^>]*>/im.freeze
78
- X_UA_COMPATIBLE_RE = /<\s*meta[^>]+http-equiv\s*=\s*['"]x-ua-compatible['"][^>]*>/im.freeze
98
+ def html?(headers)
99
+ headers[CONTENT_TYPE] && headers[CONTENT_TYPE].include?(TEXT_HTML)
100
+ end
79
101
 
80
- def autoinstrument_source(response, headers, js_to_inject)
81
- source = gather_source(response)
82
- close_old_response(response)
83
- return nil unless source
102
+ def attachment?(headers)
103
+ headers[CONTENT_DISPOSITION] && headers[CONTENT_DISPOSITION].include?(ATTACHMENT)
104
+ end
84
105
 
85
- # Only scan the first 50k (roughly) then give up.
86
- beginning_of_source = source[0..SCAN_LIMIT]
106
+ def streaming?(env, headers)
107
+ # Chunked transfer encoding is a streaming data transfer mechanism available only in HTTP/1.1
108
+ return true if headers && headers['Transfer-Encoding'] == 'chunked'
87
109
 
88
- if body_start = find_body_start(beginning_of_source)
89
- meta_tag_positions = [
90
- find_x_ua_compatible_position(beginning_of_source),
91
- find_charset_position(beginning_of_source)
92
- ].compact
110
+ defined?(ActionController::Live) &&
111
+ env['action_controller.instance'].class.included_modules.include?(ActionController::Live)
112
+ end
93
113
 
94
- if !meta_tag_positions.empty?
95
- insertion_index = meta_tag_positions.max
96
- else
97
- insertion_index = find_end_of_head_open(beginning_of_source) || body_start
98
- end
114
+ def source_injection(source, insertion_index, js_to_inject)
115
+ source[0...insertion_index] <<
116
+ js_to_inject <<
117
+ source[insertion_index..-1]
118
+ end
99
119
 
100
- if insertion_index
101
- source = source[0...insertion_index] <<
102
- js_to_inject <<
103
- source[insertion_index..-1]
120
+ def find_insertion_index(tag_positions, source_beginning, body_start)
121
+ if !tag_positions.empty?
122
+ tag_positions.max
104
123
  else
105
- NewRelic::Agent.logger.debug "Skipping RUM instrumentation. Could not properly determine location to inject script."
124
+ find_end_of_head_open(source_beginning) || body_start
106
125
  end
107
- else
108
- msg = "Skipping RUM instrumentation. Unable to find <body> tag in first #{SCAN_LIMIT} bytes of document."
109
- NewRelic::Agent.logger.log_once(:warn, :rum_insertion_failure, msg)
110
- NewRelic::Agent.logger.debug(msg)
111
126
  end
112
127
 
113
- source
114
- rescue => e
115
- NewRelic::Agent.logger.debug "Skipping RUM instrumentation on exception.", e
116
- nil
117
- end
128
+ def find_meta_tag_positions(source_beginning)
129
+ [
130
+ find_x_ua_compatible_position(source_beginning),
131
+ find_charset_position(source_beginning)
132
+ ].compact
133
+ end
118
134
 
119
- def gather_source(response)
120
- source = nil
121
- response.each {|fragment| source ? (source << fragment.to_s) : (source = fragment.to_s)}
122
- source
123
- end
135
+ def gather_source(response)
136
+ source = nil
137
+ response.each { |fragment| source ? (source << fragment.to_s) : (source = fragment.to_s) }
138
+ source
139
+ end
124
140
 
125
- # Per "The Response > The Body" section of Rack spec, we should close
126
- # if our response is able. http://rack.rubyforge.org/doc/SPEC.html
127
- def close_old_response(response)
128
- if response.respond_to?(:close)
129
- response.close
141
+ # Per "The Response > The Body" section of Rack spec, we should close
142
+ # if our response is able. http://rack.rubyforge.org/doc/SPEC.html
143
+ def close_old_response(response)
144
+ response.close if response.respond_to?(:close)
130
145
  end
131
- end
132
146
 
133
- def find_body_start(beginning_of_source)
134
- beginning_of_source.index(BODY_START)
135
- end
147
+ def find_body_start(beginning_of_source)
148
+ beginning_of_source.index(BODY_START)
149
+ end
136
150
 
137
- def find_x_ua_compatible_position(beginning_of_source)
138
- match = X_UA_COMPATIBLE_RE.match(beginning_of_source)
139
- match.end(0) if match
140
- end
151
+ def find_x_ua_compatible_position(beginning_of_source)
152
+ match = X_UA_COMPATIBLE_RE.match(beginning_of_source)
153
+ match.end(0) if match
154
+ end
141
155
 
142
- def find_charset_position(beginning_of_source)
143
- match = CHARSET_RE.match(beginning_of_source)
144
- match.end(0) if match
145
- end
156
+ def find_charset_position(beginning_of_source)
157
+ match = CHARSET_RE.match(beginning_of_source)
158
+ match.end(0) if match
159
+ end
146
160
 
147
- def find_end_of_head_open(beginning_of_source)
148
- head_open = beginning_of_source.index(HEAD_START)
149
- beginning_of_source.index(GT, head_open) + 1 if head_open
161
+ def find_end_of_head_open(beginning_of_source)
162
+ head_open = beginning_of_source.index(HEAD_START)
163
+ beginning_of_source.index(GT, head_open) + 1 if head_open
164
+ end
150
165
  end
151
166
  end
152
167
  end
@@ -1,6 +1,6 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
- # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
2
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
3
+ # frozen_string_literal: true
4
4
 
5
5
  # @api public
6
6
  module NewRelic
@@ -1,11 +1,12 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
- # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
2
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
3
+ # frozen_string_literal: true
4
4
 
5
5
  require 'capistrano/framework'
6
+ require_relative 'helpers/send_deployment'
6
7
 
7
8
  namespace :newrelic do
8
-
9
+ include SendDeployment
9
10
  # notifies New Relic of a deployment
10
11
  desc "Record a deployment in New Relic (newrelic.com)"
11
12
  task :notice_deployment do
@@ -19,63 +20,4 @@ namespace :newrelic do
19
20
  end
20
21
  end
21
22
  end
22
-
23
- def send_deployment_notification_to_newrelic
24
- environment = fetch(:newrelic_rails_env, fetch(:rack_env, fetch(:rails_env, fetch(:stage, "production"))))
25
-
26
- require 'new_relic/cli/command.rb'
27
-
28
- begin
29
- # allow overrides to be defined for revision, description, changelog, appname, and user
30
- rev = fetch(:newrelic_revision)
31
- description = fetch(:newrelic_desc)
32
- changelog = fetch(:newrelic_changelog)
33
- appname = fetch(:newrelic_appname)
34
- user = fetch(:newrelic_user)
35
- license_key = fetch(:newrelic_license_key)
36
-
37
- has_scm_from_plugin = respond_to?(:scm_plugin_installed?) && scm_plugin_installed?
38
- has_scm_from_config = defined?(scm) && !scm.nil? && scm != :none
39
-
40
- if has_scm_from_plugin || has_scm_from_config
41
- changelog ||= lookup_changelog
42
- rev ||= fetch(:current_revision)
43
- end
44
-
45
- new_revision = rev
46
- deploy_options = {
47
- :environment => environment,
48
- :revision => new_revision,
49
- :changelog => changelog,
50
- :description => description,
51
- :appname => appname,
52
- :user => user,
53
- :license_key => license_key
54
- }
55
-
56
- debug "Uploading deployment to New Relic"
57
- deployment = NewRelic::Cli::Deployments.new deploy_options
58
- deployment.run
59
- info "Uploaded deployment information to New Relic"
60
-
61
- rescue NewRelic::Cli::Command::CommandFailure => e
62
- info e.message
63
- rescue => e
64
- info "Error creating New Relic deployment (#{e})\n#{e.backtrace.join("\n")}"
65
- end
66
- end
67
-
68
- def lookup_changelog
69
- previous_revision = fetch(:previous_revision)
70
- current_revision = fetch(:current_revision)
71
- return unless current_revision && previous_revision
72
-
73
- debug "Retrieving changelog for New Relic Deployment details"
74
-
75
- if Rake::Task.task_defined?("git:check")
76
- log_command = "git --no-pager log --no-color --pretty=format:' * %an: %s' " +
77
- "--abbrev-commit --no-merges #{previous_revision}..#{current_revision}"
78
- `#{log_command}`
79
- end
80
- end
81
23
  end