newrelic_rpm 4.8.0.341 → 6.13.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (343) hide show
  1. checksums.yaml +5 -5
  2. data/.github/ISSUE_TEMPLATE/bug_report.md +31 -0
  3. data/.github/ISSUE_TEMPLATE/config.yml +5 -0
  4. data/.github/ISSUE_TEMPLATE/feature_request.md +24 -0
  5. data/.github/actions/annotate/README.md +79 -0
  6. data/.github/actions/annotate/action.yml +6 -0
  7. data/.github/actions/annotate/dist/index.js +433 -0
  8. data/.github/actions/annotate/index.js +25 -0
  9. data/.github/actions/annotate/package-lock.json +172 -0
  10. data/.github/actions/annotate/package.json +30 -0
  11. data/.github/actions/annotate/pre-commit +5 -0
  12. data/.github/actions/build-ruby/README.md +79 -0
  13. data/.github/actions/build-ruby/action.yml +15 -0
  14. data/.github/actions/build-ruby/dist/index.js +52683 -0
  15. data/.github/actions/build-ruby/index.js +514 -0
  16. data/.github/actions/build-ruby/package-lock.json +581 -0
  17. data/.github/actions/build-ruby/package.json +32 -0
  18. data/.github/actions/build-ruby/pre-commit +5 -0
  19. data/.github/pull_request_template.md +16 -0
  20. data/.github/workflows/ci.yml +212 -0
  21. data/.github/workflows/pr_review_checklist.yml +22 -0
  22. data/.github/workflows/release.yml +78 -0
  23. data/.github/workflows/scripts/rubygems-authenticate.py +13 -0
  24. data/.github/workflows/scripts/rubygems-publish.rb +32 -0
  25. data/.github/workflows/snyk.yml +27 -0
  26. data/.github/workflows/stale.yml +21 -0
  27. data/.gitignore +9 -0
  28. data/.yardopts +4 -1
  29. data/CHANGELOG.md +868 -3
  30. data/CONTRIBUTING.md +106 -19
  31. data/Gemfile +6 -2
  32. data/Guardfile +18 -1
  33. data/LICENSE +208 -38
  34. data/README.md +81 -88
  35. data/ROADMAP.md +24 -0
  36. data/Rakefile +2 -0
  37. data/THIRD_PARTY_NOTICES.md +213 -0
  38. data/bin/nrdebug +1 -1
  39. data/config.dot +3 -12
  40. data/init.rb +1 -1
  41. data/install.rb +1 -1
  42. data/lib/new_relic/agent.rb +145 -31
  43. data/lib/new_relic/agent/adaptive_sampler.rb +104 -0
  44. data/lib/new_relic/agent/agent.rb +192 -190
  45. data/lib/new_relic/agent/agent_logger.rb +5 -1
  46. data/lib/new_relic/agent/attribute_filter.rb +85 -25
  47. data/lib/new_relic/agent/attribute_processing.rb +1 -1
  48. data/lib/new_relic/agent/attributes.rb +152 -0
  49. data/lib/new_relic/agent/audit_logger.rb +1 -1
  50. data/lib/new_relic/agent/autostart.rb +20 -15
  51. data/lib/new_relic/agent/chained_call.rb +1 -1
  52. data/lib/new_relic/agent/commands/agent_command.rb +1 -1
  53. data/lib/new_relic/agent/commands/agent_command_router.rb +3 -22
  54. data/lib/new_relic/agent/commands/thread_profiler_session.rb +1 -1
  55. data/lib/new_relic/agent/configuration.rb +1 -1
  56. data/lib/new_relic/agent/configuration/default_source.rb +375 -67
  57. data/lib/new_relic/agent/configuration/dotted_hash.rb +1 -1
  58. data/lib/new_relic/agent/configuration/environment_source.rb +5 -3
  59. data/lib/new_relic/agent/configuration/event_harvest_config.rb +45 -0
  60. data/lib/new_relic/agent/configuration/high_security_source.rb +2 -3
  61. data/lib/new_relic/agent/configuration/manager.rb +54 -43
  62. data/lib/new_relic/agent/configuration/manual_source.rb +1 -1
  63. data/lib/new_relic/agent/configuration/mask_defaults.rb +1 -1
  64. data/lib/new_relic/agent/configuration/security_policy_source.rb +238 -0
  65. data/lib/new_relic/agent/configuration/server_source.rb +46 -5
  66. data/lib/new_relic/agent/configuration/yaml_source.rb +12 -7
  67. data/lib/new_relic/agent/connect/request_builder.rb +61 -0
  68. data/lib/new_relic/agent/connect/response_handler.rb +61 -0
  69. data/lib/new_relic/agent/custom_event_aggregator.rb +17 -6
  70. data/lib/new_relic/agent/database.rb +21 -3
  71. data/lib/new_relic/agent/database/explain_plan_helpers.rb +12 -1
  72. data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
  73. data/lib/new_relic/agent/database/obfuscator.rb +1 -1
  74. data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +1 -1
  75. data/lib/new_relic/agent/datastores.rb +12 -11
  76. data/lib/new_relic/agent/datastores/metric_helper.rb +2 -3
  77. data/lib/new_relic/agent/datastores/mongo.rb +2 -2
  78. data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +3 -3
  79. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +1 -1
  80. data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +9 -9
  81. data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +1 -1
  82. data/lib/new_relic/agent/datastores/redis.rb +1 -1
  83. data/lib/new_relic/agent/deprecator.rb +1 -1
  84. data/lib/new_relic/agent/distributed_tracing.rb +216 -0
  85. data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +44 -0
  86. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +248 -0
  87. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +84 -0
  88. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +75 -0
  89. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +165 -0
  90. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +39 -0
  91. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +246 -0
  92. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +126 -0
  93. data/lib/new_relic/agent/encoding_normalizer.rb +1 -1
  94. data/lib/new_relic/agent/error_collector.rb +51 -20
  95. data/lib/new_relic/agent/error_event_aggregator.rb +14 -7
  96. data/lib/new_relic/agent/error_trace_aggregator.rb +2 -1
  97. data/lib/new_relic/agent/event_aggregator.rb +34 -15
  98. data/lib/new_relic/agent/event_buffer.rb +1 -1
  99. data/lib/new_relic/agent/event_listener.rb +1 -1
  100. data/lib/new_relic/agent/event_loop.rb +1 -1
  101. data/lib/new_relic/agent/external.rb +31 -29
  102. data/lib/new_relic/agent/guid_generator.rb +28 -0
  103. data/lib/new_relic/agent/harvester.rb +1 -1
  104. data/lib/new_relic/agent/heap.rb +140 -0
  105. data/lib/new_relic/agent/hostname.rb +16 -2
  106. data/lib/new_relic/agent/http_clients/abstract.rb +82 -0
  107. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +25 -20
  108. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +29 -14
  109. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +18 -22
  110. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +11 -12
  111. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +17 -5
  112. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +5 -7
  113. data/lib/new_relic/agent/http_clients/uri_util.rb +12 -11
  114. data/lib/new_relic/agent/instrumentation.rb +1 -1
  115. data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +26 -43
  116. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +56 -74
  117. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +82 -56
  118. data/lib/new_relic/agent/instrumentation/active_job.rb +19 -17
  119. data/lib/new_relic/agent/instrumentation/active_merchant.rb +1 -1
  120. data/lib/new_relic/agent/instrumentation/active_record.rb +85 -38
  121. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +82 -24
  122. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +168 -0
  123. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +102 -31
  124. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +47 -57
  125. data/lib/new_relic/agent/instrumentation/active_storage.rb +23 -0
  126. data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +63 -0
  127. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +24 -8
  128. data/lib/new_relic/agent/instrumentation/authlogic.rb +1 -1
  129. data/lib/new_relic/agent/instrumentation/bunny.rb +115 -44
  130. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +18 -12
  131. data/lib/new_relic/agent/instrumentation/curb.rb +121 -35
  132. data/lib/new_relic/agent/instrumentation/data_mapper.rb +6 -4
  133. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +61 -25
  134. data/lib/new_relic/agent/instrumentation/excon.rb +2 -2
  135. data/lib/new_relic/agent/instrumentation/excon/connection.rb +8 -5
  136. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +4 -3
  137. data/lib/new_relic/agent/instrumentation/grape.rb +46 -35
  138. data/lib/new_relic/agent/instrumentation/http.rb +8 -5
  139. data/lib/new_relic/agent/instrumentation/httpclient.rb +7 -5
  140. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
  141. data/lib/new_relic/agent/instrumentation/memcache.rb +5 -3
  142. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +10 -6
  143. data/lib/new_relic/agent/instrumentation/merb/controller.rb +1 -1
  144. data/lib/new_relic/agent/instrumentation/merb/errors.rb +1 -1
  145. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +13 -5
  146. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +20 -11
  147. data/lib/new_relic/agent/instrumentation/mongo.rb +11 -5
  148. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +39 -7
  149. data/lib/new_relic/agent/instrumentation/net.rb +60 -23
  150. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +100 -0
  151. data/lib/new_relic/agent/instrumentation/padrino.rb +40 -16
  152. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +1 -1
  153. data/lib/new_relic/agent/instrumentation/queue_time.rb +1 -1
  154. data/lib/new_relic/agent/instrumentation/rack.rb +36 -13
  155. data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +1 -1
  156. data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +1 -1
  157. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +1 -1
  158. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
  159. data/lib/new_relic/agent/instrumentation/{rails5 → rails_notifications}/action_cable.rb +8 -5
  160. data/lib/new_relic/agent/instrumentation/{rails5 → rails_notifications}/action_controller.rb +4 -4
  161. data/lib/new_relic/agent/instrumentation/{rails4 → rails_notifications}/action_view.rb +4 -4
  162. data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +1 -1
  163. data/lib/new_relic/agent/instrumentation/rake.rb +56 -22
  164. data/lib/new_relic/agent/instrumentation/redis.rb +141 -56
  165. data/lib/new_relic/agent/instrumentation/resque.rb +21 -37
  166. data/lib/new_relic/agent/instrumentation/sequel.rb +2 -3
  167. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +1 -1
  168. data/lib/new_relic/agent/instrumentation/sidekiq.rb +48 -24
  169. data/lib/new_relic/agent/instrumentation/sinatra.rb +62 -23
  170. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
  171. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
  172. data/lib/new_relic/agent/instrumentation/sunspot.rb +1 -1
  173. data/lib/new_relic/agent/instrumentation/typhoeus.rb +27 -10
  174. data/lib/new_relic/agent/internal_agent_error.rb +1 -1
  175. data/lib/new_relic/agent/javascript_instrumentor.rb +19 -16
  176. data/lib/new_relic/agent/log_once.rb +1 -1
  177. data/lib/new_relic/agent/logging.rb +139 -0
  178. data/lib/new_relic/agent/memory_logger.rb +1 -1
  179. data/lib/new_relic/agent/messaging.rb +15 -59
  180. data/lib/new_relic/agent/method_tracer.rb +42 -25
  181. data/lib/new_relic/agent/method_tracer_helpers.rb +5 -5
  182. data/lib/new_relic/agent/monitors.rb +27 -0
  183. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +110 -0
  184. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +27 -0
  185. data/lib/new_relic/agent/{inbound_request_monitor.rb → monitors/inbound_request_monitor.rb} +4 -4
  186. data/lib/new_relic/agent/{synthetics_monitor.rb → monitors/synthetics_monitor.rb} +4 -7
  187. data/lib/new_relic/agent/new_relic_service.rb +174 -63
  188. data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
  189. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +1 -2
  190. data/lib/new_relic/agent/new_relic_service/marshaller.rb +6 -27
  191. data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +61 -0
  192. data/lib/new_relic/agent/noticible_error.rb +22 -0
  193. data/lib/new_relic/agent/null_logger.rb +1 -1
  194. data/lib/new_relic/agent/obfuscator.rb +1 -1
  195. data/lib/new_relic/agent/parameter_filtering.rb +19 -6
  196. data/lib/new_relic/agent/payload_metric_mapping.rb +1 -1
  197. data/lib/new_relic/agent/pipe_channel_manager.rb +1 -1
  198. data/lib/new_relic/agent/pipe_service.rb +5 -1
  199. data/lib/new_relic/agent/prepend_supportability.rb +1 -1
  200. data/lib/new_relic/agent/priority_sampled_buffer.rb +95 -0
  201. data/lib/new_relic/agent/range_extensions.rb +1 -1
  202. data/lib/new_relic/agent/rules_engine.rb +1 -1
  203. data/lib/new_relic/agent/rules_engine/replacement_rule.rb +1 -1
  204. data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +1 -1
  205. data/lib/new_relic/agent/sampler.rb +1 -1
  206. data/lib/new_relic/agent/sampler_collection.rb +1 -1
  207. data/lib/new_relic/agent/samplers/cpu_sampler.rb +1 -1
  208. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +1 -1
  209. data/lib/new_relic/agent/samplers/memory_sampler.rb +1 -1
  210. data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
  211. data/lib/new_relic/agent/samplers/vm_sampler.rb +1 -1
  212. data/lib/new_relic/agent/span_event_aggregator.rb +49 -0
  213. data/lib/new_relic/agent/span_event_primitive.rb +206 -0
  214. data/lib/new_relic/agent/sql_sampler.rb +23 -7
  215. data/lib/new_relic/agent/stats.rb +1 -1
  216. data/lib/new_relic/agent/stats_engine.rb +4 -4
  217. data/lib/new_relic/agent/stats_engine/gc_profiler.rb +1 -1
  218. data/lib/new_relic/agent/stats_engine/stats_hash.rb +1 -1
  219. data/lib/new_relic/agent/supported_versions.rb +3 -3
  220. data/lib/new_relic/agent/synthetics_event_aggregator.rb +6 -13
  221. data/lib/new_relic/agent/system_info.rb +18 -8
  222. data/lib/new_relic/agent/threading/agent_thread.rb +6 -4
  223. data/lib/new_relic/agent/threading/backtrace_node.rb +1 -1
  224. data/lib/new_relic/agent/threading/backtrace_service.rb +4 -4
  225. data/lib/new_relic/agent/threading/thread_profile.rb +10 -24
  226. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +19 -0
  227. data/lib/new_relic/agent/tracer.rb +509 -0
  228. data/lib/new_relic/agent/transaction.rb +191 -278
  229. data/lib/new_relic/agent/transaction/abstract_segment.rb +38 -5
  230. data/lib/new_relic/agent/transaction/datastore_segment.rb +30 -5
  231. data/lib/new_relic/agent/transaction/distributed_tracer.rb +171 -0
  232. data/lib/new_relic/agent/transaction/distributed_tracing.rb +123 -71
  233. data/lib/new_relic/agent/transaction/external_request_segment.rb +41 -89
  234. data/lib/new_relic/agent/transaction/message_broker_segment.rb +7 -8
  235. data/lib/new_relic/agent/transaction/request_attributes.rb +1 -1
  236. data/lib/new_relic/agent/transaction/segment.rb +42 -2
  237. data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +1 -1
  238. data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
  239. data/lib/new_relic/agent/transaction/trace.rb +7 -23
  240. data/lib/new_relic/agent/transaction/trace_builder.rb +1 -2
  241. data/lib/new_relic/agent/transaction/trace_context.rb +168 -0
  242. data/lib/new_relic/agent/transaction/trace_node.rb +12 -8
  243. data/lib/new_relic/agent/transaction/tracing.rb +2 -100
  244. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
  245. data/lib/new_relic/agent/transaction_error_primitive.rb +13 -22
  246. data/lib/new_relic/agent/transaction_event_aggregator.rb +7 -16
  247. data/lib/new_relic/agent/transaction_event_primitive.rb +31 -42
  248. data/lib/new_relic/agent/transaction_event_recorder.rb +8 -16
  249. data/lib/new_relic/agent/transaction_metrics.rb +1 -1
  250. data/lib/new_relic/agent/transaction_sampler.rb +3 -14
  251. data/lib/new_relic/agent/transaction_time_aggregator.rb +155 -0
  252. data/lib/new_relic/agent/utilization/aws.rb +1 -1
  253. data/lib/new_relic/agent/utilization/azure.rb +1 -1
  254. data/lib/new_relic/agent/utilization/gcp.rb +1 -1
  255. data/lib/new_relic/agent/utilization/pcf.rb +1 -1
  256. data/lib/new_relic/agent/utilization/vendor.rb +1 -1
  257. data/lib/new_relic/agent/utilization_data.rb +37 -2
  258. data/lib/new_relic/agent/vm.rb +1 -1
  259. data/lib/new_relic/agent/vm/jruby_vm.rb +1 -1
  260. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
  261. data/lib/new_relic/agent/vm/mri_vm.rb +1 -1
  262. data/lib/new_relic/agent/vm/snapshot.rb +1 -1
  263. data/lib/new_relic/agent/worker_loop.rb +1 -1
  264. data/lib/new_relic/cli/command.rb +1 -1
  265. data/lib/new_relic/cli/commands/deployments.rb +2 -2
  266. data/lib/new_relic/cli/commands/install.rb +4 -3
  267. data/lib/new_relic/coerce.rb +32 -7
  268. data/lib/new_relic/collection_helper.rb +1 -1
  269. data/lib/new_relic/constants.rb +38 -0
  270. data/lib/new_relic/control.rb +1 -1
  271. data/lib/new_relic/control/class_methods.rb +8 -2
  272. data/lib/new_relic/control/frameworks.rb +1 -1
  273. data/lib/new_relic/control/frameworks/external.rb +1 -1
  274. data/lib/new_relic/control/frameworks/merb.rb +1 -1
  275. data/lib/new_relic/control/frameworks/rails.rb +1 -1
  276. data/lib/new_relic/control/frameworks/rails3.rb +1 -1
  277. data/lib/new_relic/control/frameworks/rails4.rb +1 -1
  278. data/lib/new_relic/control/frameworks/{rails5.rb → rails_notifications.rb} +2 -2
  279. data/lib/new_relic/control/frameworks/ruby.rb +1 -1
  280. data/lib/new_relic/control/frameworks/sinatra.rb +1 -1
  281. data/lib/new_relic/control/instance_methods.rb +30 -4
  282. data/lib/new_relic/control/instrumentation.rb +1 -1
  283. data/lib/new_relic/control/server_methods.rb +1 -1
  284. data/lib/new_relic/delayed_job_injection.rb +1 -1
  285. data/lib/new_relic/dependency_detection.rb +5 -5
  286. data/lib/new_relic/environment_report.rb +6 -2
  287. data/lib/new_relic/helper.rb +1 -1
  288. data/lib/new_relic/language_support.rb +1 -1
  289. data/lib/new_relic/latest_changes.rb +4 -4
  290. data/lib/new_relic/local_environment.rb +1 -1
  291. data/lib/new_relic/metric_data.rb +1 -1
  292. data/lib/new_relic/metric_spec.rb +1 -1
  293. data/lib/new_relic/noticed_error.rb +39 -18
  294. data/lib/new_relic/rack.rb +1 -1
  295. data/lib/new_relic/rack/agent_hooks.rb +1 -1
  296. data/lib/new_relic/rack/agent_middleware.rb +2 -2
  297. data/lib/new_relic/rack/browser_monitoring.rb +16 -9
  298. data/lib/new_relic/recipes.rb +1 -1
  299. data/lib/new_relic/recipes/capistrano3.rb +6 -3
  300. data/lib/new_relic/recipes/capistrano_legacy.rb +1 -1
  301. data/lib/new_relic/supportability_helper.rb +15 -1
  302. data/lib/new_relic/version.rb +4 -4
  303. data/lib/newrelic_rpm.rb +1 -1
  304. data/lib/sequel/extensions/newrelic_instrumentation.rb +3 -3
  305. data/lib/sequel/plugins/newrelic_instrumentation.rb +2 -2
  306. data/lib/tasks/all.rb +1 -1
  307. data/lib/tasks/config.rake +1 -2
  308. data/lib/tasks/multiverse.rb +35 -1
  309. data/lib/tasks/newrelic.rb +1 -1
  310. data/lib/tasks/tests.rake +6 -1
  311. data/newrelic_rpm.gemspec +23 -17
  312. data/recipes/newrelic.rb +1 -1
  313. data/test/agent_helper.rb +357 -78
  314. metadata +154 -60
  315. data/.travis.yml +0 -173
  316. data/lib/new_relic/agent/busy_calculator.rb +0 -117
  317. data/lib/new_relic/agent/commands/xray_session.rb +0 -55
  318. data/lib/new_relic/agent/commands/xray_session_collection.rb +0 -161
  319. data/lib/new_relic/agent/cross_app_monitor.rb +0 -140
  320. data/lib/new_relic/agent/cross_app_tracing.rb +0 -143
  321. data/lib/new_relic/agent/distributed_trace_monitor.rb +0 -29
  322. data/lib/new_relic/agent/distributed_trace_payload.rb +0 -223
  323. data/lib/new_relic/agent/distributed_trace_priority_sampled_buffer.rb +0 -72
  324. data/lib/new_relic/agent/http_clients/abstract_request.rb +0 -31
  325. data/lib/new_relic/agent/instrumentation/active_record_4.rb +0 -42
  326. data/lib/new_relic/agent/instrumentation/active_record_5.rb +0 -36
  327. data/lib/new_relic/agent/instrumentation/evented_subscriber.rb +0 -104
  328. data/lib/new_relic/agent/instrumentation/rails4/action_controller.rb +0 -32
  329. data/lib/new_relic/agent/instrumentation/rails5/action_view.rb +0 -27
  330. data/lib/new_relic/agent/sampled_buffer.rb +0 -68
  331. data/lib/new_relic/agent/sized_buffer.rb +0 -23
  332. data/lib/new_relic/agent/synthetics_event_buffer.rb +0 -40
  333. data/lib/new_relic/agent/throughput_monitor.rb +0 -59
  334. data/lib/new_relic/agent/transaction/attributes.rb +0 -153
  335. data/lib/new_relic/agent/transaction/xray_sample_buffer.rb +0 -64
  336. data/lib/new_relic/agent/transaction_state.rb +0 -145
  337. data/lib/new_relic/agent/transaction_timings.rb +0 -57
  338. data/lib/new_relic/metrics.rb +0 -13
  339. data/lib/tasks/versions.html.erb +0 -28
  340. data/lib/tasks/versions.postface.html +0 -8
  341. data/lib/tasks/versions.preface.html +0 -9
  342. data/lib/tasks/versions.rake +0 -65
  343. data/lib/tasks/versions.txt.erb +0 -14
@@ -0,0 +1,27 @@
1
+ # encoding: utf-8
2
+ # This file is distributed under New Relic's license terms.
3
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
+
5
+ require_relative 'monitors/inbound_request_monitor'
6
+
7
+ require_relative 'monitors/synthetics_monitor'
8
+
9
+ require_relative 'monitors/cross_app_monitor'
10
+ require_relative 'monitors/distributed_tracing_monitor'
11
+
12
+ module NewRelic
13
+ module Agent
14
+ class Monitors
15
+ attr_reader :cross_app_monitor
16
+ attr_reader :synthetics_monitor
17
+ attr_reader :distributed_tracing_monitor
18
+
19
+ def initialize events
20
+ @synthetics_monitor = NewRelic::Agent::SyntheticsMonitor.new events
21
+ @cross_app_monitor = NewRelic::Agent::DistributedTracing::CrossAppMonitor.new events
22
+ @distributed_tracing_monitor = NewRelic::Agent::DistributedTracing::Monitor.new events
23
+ end
24
+
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,110 @@
1
+ # encoding: utf-8
2
+ # This file is distributed under New Relic's license terms.
3
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
+
5
+ require 'digest'
6
+ require 'json'
7
+
8
+ require 'new_relic/agent/tracer'
9
+ require 'new_relic/agent/threading/agent_thread'
10
+
11
+ module NewRelic
12
+ module Agent
13
+ module DistributedTracing
14
+ class CrossAppMonitor < InboundRequestMonitor
15
+
16
+ NEWRELIC_ID_HEADER = 'X-NewRelic-ID'.freeze
17
+ NEWRELIC_TXN_HEADER = 'X-NewRelic-Transaction'.freeze
18
+ NEWRELIC_APPDATA_HEADER = 'X-NewRelic-App-Data'.freeze
19
+
20
+ NEWRELIC_ID_HEADER_KEY = 'HTTP_X_NEWRELIC_ID'.freeze
21
+ NEWRELIC_TXN_HEADER_KEY = 'HTTP_X_NEWRELIC_TRANSACTION'.freeze
22
+ CONTENT_LENGTH_HEADER_KEY = 'HTTP_CONTENT_LENGTH'.freeze
23
+
24
+ def on_finished_configuring(events)
25
+ register_event_listeners(events)
26
+ end
27
+
28
+ def path_hash(txn_name, seed)
29
+ rotated = ((seed << 1) | (seed >> 31)) & 0xffffffff
30
+ app_name = NewRelic::Agent.config[:app_name].first
31
+ identifier = "#{app_name};#{txn_name}"
32
+ sprintf("%08x", rotated ^ hash_transaction_name(identifier))
33
+ end
34
+
35
+ private
36
+
37
+ # Expected sequence of events:
38
+ # :before_call will save our cross application request id to the thread
39
+ # :after_call will write our response headers/metrics and clean up the thread
40
+ def register_event_listeners(events)
41
+ NewRelic::Agent.logger.
42
+ debug("Wiring up Cross Application Tracing to events after finished configuring")
43
+
44
+ events.subscribe(:before_call) do |env| #THREAD_LOCAL_ACCESS
45
+ if id = decoded_id(env) and should_process_request?(id)
46
+ state = NewRelic::Agent::Tracer.state
47
+
48
+ if (txn = state.current_transaction)
49
+ transaction_info = referring_transaction_info(state, env)
50
+
51
+ payload = CrossAppPayload.new(id, txn, transaction_info)
52
+ txn.distributed_tracer.cross_app_payload = payload
53
+ end
54
+
55
+ CrossAppTracing.assign_intrinsic_transaction_attributes state
56
+ end
57
+ end
58
+
59
+ events.subscribe(:after_call) do |env, (_status_code, headers, _body)| #THREAD_LOCAL_ACCESS
60
+ state = NewRelic::Agent::Tracer.state
61
+
62
+ insert_response_header(state, env, headers)
63
+ end
64
+ end
65
+
66
+ def referring_transaction_info(state, request_headers)
67
+ txn_header = request_headers[NEWRELIC_TXN_HEADER_KEY] or return
68
+ deserialize_header(txn_header, NEWRELIC_TXN_HEADER)
69
+ end
70
+
71
+ def insert_response_header(state, request_headers, response_headers)
72
+ txn = state.current_transaction
73
+ unless txn.nil? || txn.distributed_tracer.cross_app_payload.nil?
74
+ txn.freeze_name_and_execute_if_not_ignored do
75
+ content_length = content_length_from_request(request_headers)
76
+ set_response_headers(txn, response_headers, content_length)
77
+ end
78
+ end
79
+ end
80
+
81
+ def should_process_request? id
82
+ CrossAppTracing.cross_app_enabled? && CrossAppTracing.trusts?(id)
83
+ end
84
+
85
+ def set_response_headers(transaction, response_headers, content_length)
86
+ payload = obfuscator.obfuscate(
87
+ ::JSON.dump(
88
+ transaction.distributed_tracer.cross_app_payload.as_json_array(content_length)))
89
+
90
+ response_headers[NEWRELIC_APPDATA_HEADER] = payload
91
+ end
92
+
93
+ def decoded_id(request)
94
+ encoded_id = request[NEWRELIC_ID_HEADER_KEY]
95
+ return "" if encoded_id.nil? || encoded_id.empty?
96
+
97
+ obfuscator.deobfuscate(encoded_id)
98
+ end
99
+
100
+ def content_length_from_request(request)
101
+ request[CONTENT_LENGTH_HEADER_KEY] || -1
102
+ end
103
+
104
+ def hash_transaction_name(identifier)
105
+ Digest::MD5.digest(identifier).unpack("@12N").first & 0xffffffff
106
+ end
107
+ end
108
+ end
109
+ end
110
+ end
@@ -0,0 +1,27 @@
1
+ # encoding: utf-8
2
+ # This file is distributed under New Relic's license terms.
3
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
+
5
+ module NewRelic
6
+ module Agent
7
+ module DistributedTracing
8
+ class Monitor < InboundRequestMonitor
9
+ def on_finished_configuring(events)
10
+ return unless NewRelic::Agent.config[:'distributed_tracing.enabled']
11
+ events.subscribe(:before_call, &method(:on_before_call))
12
+ end
13
+
14
+ def on_before_call(request)
15
+ unless NewRelic::Agent.config[:'distributed_tracing.enabled']
16
+ NewRelic::Agent.logger.warn "Not configured to accept distributed trace headers"
17
+ return
18
+ end
19
+
20
+ return unless txn = Tracer.current_transaction
21
+
22
+ txn.distributed_tracer.accept_incoming_request request
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  # This file is distributed under New Relic's license terms.
3
- # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
3
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
4
 
5
5
  # This class serves as the base for objects wanting to monitor and respond to
6
6
  # incoming web requests. Examples include cross application tracing and
@@ -20,15 +20,15 @@ module NewRelic
20
20
  attr_reader :obfuscator
21
21
 
22
22
  def initialize(events)
23
- events.subscribe(:finished_configuring) do
24
- # This requires :encoding_key, so must wait until :finished_configuring
23
+ events.subscribe(:initial_configuration_complete) do
24
+ # This requires :encoding_key, so must wait until :initial_configuration_complete
25
25
  setup_obfuscator
26
26
  on_finished_configuring(events)
27
27
  end
28
28
  end
29
29
 
30
30
  def setup_obfuscator
31
- @obfuscator = NewRelic::Agent::Obfuscator.new(NewRelic::Agent.config[:encoding_key])
31
+ @obfuscator = Obfuscator.new(Agent.config[:encoding_key])
32
32
  end
33
33
 
34
34
  def deserialize_header(encoded_header, key)
@@ -1,8 +1,6 @@
1
1
  # encoding: utf-8
2
2
  # This file is distributed under New Relic's license terms.
3
- # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
4
-
5
- require 'new_relic/agent/inbound_request_monitor'
3
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
6
4
 
7
5
  module NewRelic
8
6
  module Agent
@@ -27,8 +25,7 @@ module NewRelic
27
25
  SyntheticsMonitor.is_supported_version?(incoming_payload) &&
28
26
  SyntheticsMonitor.is_trusted?(incoming_payload)
29
27
 
30
- state = NewRelic::Agent::TransactionState.tl_get
31
- txn = state.current_transaction
28
+ txn = Tracer.current_transaction
32
29
  txn.raw_synthetics_header = encoded_header
33
30
  txn.synthetics_payload = incoming_payload
34
31
  end
@@ -41,7 +38,7 @@ module NewRelic
41
38
 
42
39
  def is_trusted?(incoming_payload)
43
40
  account_id = incoming_payload[1]
44
- NewRelic::Agent.config[:trusted_account_ids].include?(account_id)
41
+ Agent.config[:trusted_account_ids].include?(account_id)
45
42
  end
46
43
 
47
44
  def is_valid_payload?(incoming_payload)
@@ -49,7 +46,7 @@ module NewRelic
49
46
  end
50
47
 
51
48
  def reject_messaging_synthetics_header headers
52
- headers.reject {|k,_| k == NewRelic::Agent::CrossAppTracing::NR_MESSAGE_BROKER_SYNTHETICS_HEADER}
49
+ headers.reject {|k,_| k == CrossAppTracing::NR_MESSAGE_BROKER_SYNTHETICS_HEADER}
53
50
  end
54
51
 
55
52
  end
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  # This file is distributed under New Relic's license terms.
3
- # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
3
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
4
 
5
5
  require 'zlib'
6
6
  require 'timeout'
@@ -8,6 +8,7 @@ require 'new_relic/agent/audit_logger'
8
8
  require 'new_relic/agent/new_relic_service/encoders'
9
9
  require 'new_relic/agent/new_relic_service/marshaller'
10
10
  require 'new_relic/agent/new_relic_service/json_marshaller'
11
+ require 'new_relic/agent/new_relic_service/security_policy_settings'
11
12
 
12
13
  module NewRelic
13
14
  module Agent
@@ -15,7 +16,8 @@ module NewRelic
15
16
  # Specifies the version of the agent's communication protocol with
16
17
  # the NewRelic hosted site.
17
18
 
18
- PROTOCOL_VERSION = 14
19
+ PROTOCOL_VERSION = 17
20
+
19
21
  # 1f147a42: v10 (tag 3.5.3.17)
20
22
  # cf0d1ff1: v9 (tag 3.5.0)
21
23
  # 14105: v8 (tag 2.10.3)
@@ -30,29 +32,26 @@ module NewRelic
30
32
  # underlying TCP connection may be in a bad state.
31
33
  CONNECTION_ERRORS = [Timeout::Error, EOFError, SystemCallError, SocketError].freeze
32
34
 
33
- attr_accessor :request_timeout, :agent_id
34
- attr_reader :collector, :marshaller
35
+ attr_accessor :request_timeout
36
+ attr_reader :collector, :marshaller, :agent_id
35
37
 
36
38
  def initialize(license_key=nil, collector=control.server)
37
39
  @license_key = license_key
38
40
  @collector = collector
41
+ @configured_collector = collector
39
42
  @request_timeout = Agent.config[:timeout]
40
43
  @ssl_cert_store = nil
44
+ @use_bundled_certs = false
41
45
  @in_session = nil
42
46
  @agent_id = nil
43
47
  @shared_tcp_connection = nil
48
+ @request_headers_map = nil
49
+ reset_remote_method_uris
44
50
 
45
51
  @audit_logger = ::NewRelic::Agent::AuditLogger.new
46
52
  Agent.config.register_callback(:'audit_log.enabled') do |enabled|
47
53
  @audit_logger.enabled = enabled
48
54
  end
49
- Agent.config.register_callback(:ssl) do |ssl|
50
- if !ssl
51
- ::NewRelic::Agent.logger.warn("Agent is configured not to use SSL when communicating with New Relic's servers")
52
- else
53
- ::NewRelic::Agent.logger.debug("Agent is configured to use SSL")
54
- end
55
- end
56
55
 
57
56
  Agent.config.register_callback(:marshaller) do |marshaller|
58
57
  if marshaller != 'json'
@@ -63,17 +62,48 @@ module NewRelic
63
62
  end
64
63
  end
65
64
 
65
+ def agent_id=(id)
66
+ # Remote URIs have the agent run ID in them, so we need to
67
+ # clear out our cached values whenever the run ID changes.
68
+ #
69
+ reset_remote_method_uris
70
+ @agent_id = id
71
+ end
72
+
66
73
  def connect(settings={})
67
- if host = get_redirect_host
68
- @collector = NewRelic::Control.instance.server_from_host(host)
74
+ @request_headers_map = nil
75
+ security_policies = nil
76
+ if response = preconnect
77
+ if host = response['redirect_host']
78
+ @collector = NewRelic::Control.instance.server_from_host(host)
79
+ end
80
+ if policies = response['security_policies']
81
+ security_policies = SecurityPolicySettings.preliminary_settings(policies)
82
+ settings.merge!(security_policies)
83
+ end
69
84
  end
70
85
  response = invoke_remote(:connect, [settings])
71
- @agent_id = response['agent_run_id']
86
+ @request_headers_map = response['request_headers_map']
87
+ self.agent_id = response['agent_run_id']
88
+ response.merge!(security_policies) if security_policies
72
89
  response
73
90
  end
74
91
 
75
- def get_redirect_host
76
- invoke_remote(:get_redirect_host)
92
+ def preconnect
93
+ token = Agent.config[:security_policies_token]
94
+
95
+ if token && !token.empty?
96
+ response = invoke_remote(:preconnect, [{'security_policies_token' => token, 'high_security' => false}])
97
+
98
+ validator = SecurityPolicySettings::Validator.new(response)
99
+ validator.validate_matching_agent_config!
100
+
101
+ response
102
+ elsif Agent.config[:high_security]
103
+ invoke_remote(:preconnect, [{'high_security' => true}])
104
+ else
105
+ invoke_remote(:preconnect, [{'high_security' => false}])
106
+ end
77
107
  end
78
108
 
79
109
  def shutdown(time)
@@ -136,10 +166,6 @@ module NewRelic
136
166
  invoke_remote(:agent_command_results, [@agent_id, results])
137
167
  end
138
168
 
139
- def get_xray_metadata(xray_ids)
140
- invoke_remote(:get_xray_metadata, [@agent_id, *xray_ids])
141
- end
142
-
143
169
  def analytic_event_data(data)
144
170
  _, items = data
145
171
  invoke_remote(:analytic_event_data, [@agent_id, *data],
@@ -159,20 +185,27 @@ module NewRelic
159
185
  NewRelic::Agent.record_metric("Supportability/Events/TransactionError/Seen", :count => metadata[:events_seen])
160
186
  end
161
187
 
188
+ def span_event_data(data)
189
+ metadata, items = data
190
+ invoke_remote(:span_event_data, [@agent_id, *data], :item_count => items.size)
191
+ NewRelic::Agent.record_metric("Supportability/Events/SpanEvents/Sent", :count => items.size)
192
+ NewRelic::Agent.record_metric("Supportability/Events/SpanEvents/Seen", :count => metadata[:events_seen])
193
+ end
194
+
162
195
  # We do not compress if content is smaller than 64kb. There are
163
196
  # problems with bugs in Ruby in some versions that expose us
164
197
  # to a risk of segfaults if we compress aggressively.
165
- def compress_request_if_needed(data)
198
+ def compress_request_if_needed(data, endpoint)
166
199
  encoding = 'identity'
167
200
  if data.size > 64 * 1024
168
201
  encoding = Agent.config[:compressed_content_encoding]
169
- data = if encoding == 'gzip'
170
- Encoders::Compressed::Gzip.encode(data)
171
- else
202
+ data = if encoding == 'deflate'
172
203
  Encoders::Compressed::Deflate.encode(data)
204
+ else
205
+ Encoders::Compressed::Gzip.encode(data)
173
206
  end
174
207
  end
175
- check_post_size(data)
208
+ check_post_size(data, endpoint)
176
209
  [data, encoding]
177
210
  end
178
211
 
@@ -259,13 +292,20 @@ module NewRelic
259
292
  # installed
260
293
  conn.use_ssl = true
261
294
  conn.verify_mode = OpenSSL::SSL::VERIFY_PEER
262
- conn.cert_store = ssl_cert_store
295
+ set_cert_store(conn)
263
296
  rescue StandardError, LoadError
264
- msg = "Agent is configured to use SSL, but SSL is not available in the environment. "
265
- msg << "Either disable SSL in the agent configuration, or install SSL support."
297
+ msg = "SSL is not available in the environment; please install SSL support."
266
298
  raise UnrecoverableAgentException.new(msg)
267
299
  end
268
300
 
301
+ def set_cert_store(conn)
302
+ if @use_bundled_certs || NewRelic::Agent.config[:ca_bundle_path]
303
+ conn.cert_store = ssl_cert_store
304
+ else
305
+ ::NewRelic::Agent.logger.debug("Using default security certificates")
306
+ end
307
+ end
308
+
269
309
  def start_connection(conn)
270
310
  NewRelic::Agent.logger.debug("Opening TCP connection to #{conn.address}:#{conn.port}")
271
311
  Timeout.timeout(@request_timeout) { conn.start }
@@ -296,7 +336,7 @@ module NewRelic
296
336
  conn = Net::HTTP.new(@collector.name, @collector.port)
297
337
  end
298
338
 
299
- setup_connection_for_ssl(conn) if Agent.config[:ssl]
339
+ setup_connection_for_ssl(conn)
300
340
  setup_connection_timeouts(conn)
301
341
 
302
342
  ::NewRelic::Agent.logger.debug("Created net/http handle to #{conn.address}:#{conn.port}")
@@ -307,6 +347,14 @@ module NewRelic
307
347
  conn = create_http_connection
308
348
  start_connection(conn)
309
349
  conn
350
+ rescue Timeout::Error
351
+ if @use_bundled_certs == false
352
+ ::NewRelic::Agent.logger.info("Unable to connect. Falling back to bundled security certificates")
353
+ @use_bundled_certs = true
354
+ retry
355
+ else
356
+ raise
357
+ end
310
358
  end
311
359
 
312
360
  # The path to the certificate file used to verify the SSL
@@ -316,6 +364,7 @@ module NewRelic
316
364
  NewRelic::Agent.logger.warn("Couldn't find CA bundle from configured ca_bundle_path: #{path_override}") unless File.exist? path_override
317
365
  path_override
318
366
  else
367
+ ::NewRelic::Agent.increment_metric("Supportability/Ruby/Certificate/BundleRequired")
319
368
  File.expand_path(File.join(control.newrelic_root, 'cert', 'cacert.pem'))
320
369
  end
321
370
  end
@@ -335,11 +384,28 @@ module NewRelic
335
384
  NewRelic::Control.instance
336
385
  end
337
386
 
338
- # The path on the server that we should post our data to
339
- def remote_method_uri(method, format)
340
- params = {'run_id' => @agent_id, 'marshal_format' => format}
341
- uri = "/agent_listener/#{PROTOCOL_VERSION}/#{license_key}/#{method}"
342
- uri << '?' + params.map do |k,v|
387
+ def remote_method_uri(method)
388
+ @remote_method_uris[method]
389
+ end
390
+
391
+ def reset_remote_method_uris
392
+ @remote_method_uris = Hash.new do |hash, remote_method|
393
+ hash[remote_method] = generate_remote_method_uri(remote_method)
394
+ end
395
+ end
396
+
397
+ def generate_remote_method_uri(method)
398
+ params = {
399
+ 'protocol_version' => PROTOCOL_VERSION,
400
+ 'license_key' => license_key,
401
+ 'run_id' => @agent_id,
402
+ 'method' => method,
403
+ 'marshal_format' => 'json', # Other formats are explicitly
404
+ # ruled out; see the initializer
405
+ }
406
+
407
+ uri = "/agent_listener/invoke_raw_method?"
408
+ uri << params.map do |k,v|
343
409
  next unless v
344
410
  "#{k}=#{v}"
345
411
  end.compact.join('&')
@@ -357,7 +423,7 @@ module NewRelic
357
423
  def invoke_remote(method, payload = [], options = {})
358
424
  start_ts = Time.now
359
425
 
360
- data, size, serialize_finish_ts = nil
426
+ data, size, serialize_finish_ts, request_send_ts, response_check_ts = nil
361
427
  begin
362
428
  data = @marshaller.dump(payload, options)
363
429
  rescue StandardError, SystemStackError => e
@@ -365,20 +431,26 @@ module NewRelic
365
431
  end
366
432
  serialize_finish_ts = Time.now
367
433
 
368
- data, encoding = compress_request_if_needed(data)
434
+ data, encoding = compress_request_if_needed(data, method)
369
435
  size = data.size
370
436
 
371
- uri = remote_method_uri(method, @marshaller.format)
372
- full_uri = "#{@collector}#{uri}"
437
+ # Preconnect needs to always use the configured collector host, not the redirect host
438
+ endpoint_specific_collector = (method == :preconnect) ? @configured_collector : @collector
439
+
440
+ uri = remote_method_uri(method)
441
+ full_uri = "#{endpoint_specific_collector}#{uri}"
373
442
 
374
443
  @audit_logger.log_request(full_uri, payload, @marshaller)
444
+ request_send_ts = Time.now
375
445
  response = send_request(:data => data,
376
446
  :uri => uri,
377
447
  :encoding => encoding,
378
- :collector => @collector)
448
+ :collector => endpoint_specific_collector,
449
+ :endpoint => method)
450
+ response_check_ts = Time.now
379
451
  @marshaller.load(decompress_response(response))
380
452
  ensure
381
- record_timing_supportability_metrics(method, start_ts, serialize_finish_ts)
453
+ record_timing_supportability_metrics(method, start_ts, serialize_finish_ts, request_send_ts, response_check_ts)
382
454
  if size
383
455
  record_size_supportability_metrics(method, size, options[:item_count])
384
456
  end
@@ -393,11 +465,12 @@ module NewRelic
393
465
  raise error
394
466
  end
395
467
 
396
- def record_timing_supportability_metrics(method, start_ts, serialize_finish_ts)
468
+ def record_timing_supportability_metrics(method, start_ts, serialize_finish_ts, request_send_ts, response_check_ts)
397
469
  serialize_time = serialize_finish_ts && (serialize_finish_ts - start_ts)
398
- duration = (Time.now - start_ts).to_f
399
- NewRelic::Agent.record_metric("Supportability/invoke_remote", duration)
400
- NewRelic::Agent.record_metric("Supportability/invoke_remote/#{method.to_s}", duration)
470
+ request_duration = response_check_ts && (response_check_ts - request_send_ts).to_f
471
+ if request_duration
472
+ NewRelic::Agent.record_metric("Supportability/Agent/Collector/#{method.to_s}/Duration", request_duration)
473
+ end
401
474
  if serialize_time
402
475
  NewRelic::Agent.record_metric("Supportability/invoke_remote_serialize", serialize_time)
403
476
  NewRelic::Agent.record_metric("Supportability/invoke_remote_serialize/#{method.to_s}", serialize_time)
@@ -424,9 +497,10 @@ module NewRelic
424
497
 
425
498
  # Raises an UnrecoverableServerException if the post_string is longer
426
499
  # than the limit configured in the control object
427
- def check_post_size(post_string)
428
- return if post_string.size < Agent.config[:post_size_limit]
500
+ def check_post_size(post_string, endpoint)
501
+ return if post_string.size < Agent.config[:max_payload_size_in_bytes]
429
502
  ::NewRelic::Agent.logger.debug "Tried to send too much data: #{post_string.size} bytes"
503
+ NewRelic::Agent.increment_metric("Supportability/Agent/Collector/#{endpoint}/MaxPayloadSizeLimit")
430
504
  raise UnrecoverableServerException.new('413 Request Entity Too Large')
431
505
  end
432
506
 
@@ -441,10 +515,16 @@ module NewRelic
441
515
  # contact
442
516
  # - :data => the data to send as the body of the request
443
517
  def send_request(opts)
518
+ headers = {
519
+ 'Content-Encoding' => opts[:encoding],
520
+ 'Host' => opts[:collector].name
521
+ }
522
+ headers.merge!(@request_headers_map) if @request_headers_map
523
+
444
524
  if Agent.config[:put_for_data_send]
445
- request = Net::HTTP::Put.new(opts[:uri], 'CONTENT-ENCODING' => opts[:encoding], 'HOST' => opts[:collector].name)
525
+ request = Net::HTTP::Put.new(opts[:uri], headers)
446
526
  else
447
- request = Net::HTTP::Post.new(opts[:uri], 'CONTENT-ENCODING' => opts[:encoding], 'HOST' => opts[:collector].name)
527
+ request = Net::HTTP::Post.new(opts[:uri], headers)
448
528
  end
449
529
  request['user-agent'] = user_agent
450
530
  request.content_type = "application/octet-stream"
@@ -453,6 +533,7 @@ module NewRelic
453
533
  response = nil
454
534
  attempts = 0
455
535
  max_attempts = 2
536
+ endpoint = opts[:endpoint]
456
537
 
457
538
  begin
458
539
  attempts += 1
@@ -474,20 +555,43 @@ module NewRelic
474
555
  log_response(response)
475
556
 
476
557
  case response
477
- when Net::HTTPSuccess
558
+ when Net::HTTPSuccess,
559
+ Net::HTTPAccepted
478
560
  true # do nothing
479
- when Net::HTTPUnauthorized
480
- raise LicenseException, 'Invalid license key, please visit support.newrelic.com'
481
- when Net::HTTPServiceUnavailable
482
- raise ServerConnectionException, "Service unavailable (#{response.code}): #{response.message}"
483
- when Net::HTTPGatewayTimeOut
484
- raise ServerConnectionException, "Gateway timeout (#{response.code}): #{response.message}"
485
- when Net::HTTPRequestEntityTooLarge
486
- raise UnrecoverableServerException, '413 Request Entity Too Large'
487
- when Net::HTTPUnsupportedMediaType
488
- raise UnrecoverableServerException, '415 Unsupported Media Type'
561
+ when Net::HTTPRequestTimeOut,
562
+ Net::HTTPTooManyRequests,
563
+ Net::HTTPInternalServerError,
564
+ Net::HTTPServiceUnavailable
565
+ record_endpoint_attempts_supportability_metrics(endpoint)
566
+ raise ServerConnectionException, "#{response.code}: #{response.message}"
567
+ when Net::HTTPBadRequest,
568
+ Net::HTTPForbidden,
569
+ Net::HTTPNotFound,
570
+ Net::HTTPMethodNotAllowed,
571
+ Net::HTTPProxyAuthenticationRequired,
572
+ Net::HTTPLengthRequired,
573
+ Net::HTTPRequestEntityTooLarge,
574
+ Net::HTTPRequestURITooLong,
575
+ Net::HTTPUnsupportedMediaType,
576
+ Net::HTTPExpectationFailed,
577
+ Net::HTTPUnsupportedMediaType,
578
+ Net::HTTPRequestHeaderFieldsTooLarge
579
+ record_endpoint_attempts_supportability_metrics(endpoint)
580
+ record_error_response_supportability_metrics(response.code)
581
+ raise UnrecoverableServerException, "#{response.code}: #{response.message}"
582
+ when Net::HTTPConflict,
583
+ Net::HTTPUnauthorized
584
+ record_endpoint_attempts_supportability_metrics(endpoint)
585
+ record_error_response_supportability_metrics(response.code)
586
+ raise ForceRestartException, "#{response.code}: #{response.message}"
587
+ when Net::HTTPGone
588
+ record_endpoint_attempts_supportability_metrics(endpoint)
589
+ record_error_response_supportability_metrics(response.code)
590
+ raise ForceDisconnectException, "#{response.code}: #{response.message}"
489
591
  else
490
- raise ServerConnectionException, "Unexpected response from server (#{response.code}): #{response.message}"
592
+ record_endpoint_attempts_supportability_metrics(endpoint)
593
+ record_error_response_supportability_metrics(response.code)
594
+ raise UnrecoverableServerException, "#{response.code}: #{response.message}"
491
595
  end
492
596
  response
493
597
  end
@@ -496,6 +600,16 @@ module NewRelic
496
600
  ::NewRelic::Agent.logger.debug "Received response, status: #{response.code}, encoding: '#{response['content-encoding']}'"
497
601
  end
498
602
 
603
+ # Per protocol 17, this metric should be recorded for all error response codes
604
+ # that cause data to be discarded.
605
+ def record_error_response_supportability_metrics(response_code)
606
+ ::NewRelic::Agent.increment_metric("Supportability/Agent/Collector/HTTPError/#{response_code}")
607
+ end
608
+
609
+ def record_endpoint_attempts_supportability_metrics(endpoint)
610
+ ::NewRelic::Agent.increment_metric("Supportability/Agent/Collector/#{endpoint}/Attempts")
611
+ end
612
+
499
613
  # Decompresses the response from the server, if it is gzip
500
614
  # encoded, otherwise returns it verbatim
501
615
  def decompress_response(response)
@@ -518,9 +632,6 @@ module NewRelic
518
632
  zlib_version << "zlib/#{Zlib.zlib_version}" if defined?(::Zlib) && Zlib.respond_to?(:zlib_version)
519
633
  "NewRelic-RubyAgent/#{NewRelic::VERSION::STRING} #{ruby_description}#{zlib_version}"
520
634
  end
521
-
522
- # Used to wrap errors reported to agent by the collector
523
- class CollectorError < StandardError; end
524
635
  end
525
636
  end
526
637
  end