newrelic_rpm 6.13.0 → 7.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (147) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/CHANGELOG.md +231 -0
  4. data/CONTRIBUTING.md +13 -2
  5. data/README.md +2 -2
  6. data/lib/new_relic/agent.rb +5 -8
  7. data/lib/new_relic/agent/agent.rb +4 -5
  8. data/lib/new_relic/agent/audit_logger.rb +10 -0
  9. data/lib/new_relic/agent/autostart.rb +1 -2
  10. data/lib/new_relic/agent/configuration/default_source.rb +412 -220
  11. data/lib/new_relic/agent/configuration/manager.rb +2 -2
  12. data/lib/new_relic/agent/database_adapter.rb +33 -0
  13. data/lib/new_relic/agent/datastores/redis.rb +0 -4
  14. data/lib/new_relic/agent/distributed_tracing.rb +0 -66
  15. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +2 -2
  16. data/lib/new_relic/agent/http_clients/uri_util.rb +1 -1
  17. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +4 -5
  18. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +21 -68
  19. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +0 -16
  20. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +23 -57
  21. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +1 -3
  22. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +0 -15
  23. data/lib/new_relic/agent/instrumentation/bunny.rb +10 -196
  24. data/lib/new_relic/agent/instrumentation/bunny/chain.rb +45 -0
  25. data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +152 -0
  26. data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +35 -0
  27. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +1 -0
  28. data/lib/new_relic/agent/instrumentation/curb.rb +9 -259
  29. data/lib/new_relic/agent/instrumentation/curb/chain.rb +93 -0
  30. data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +222 -0
  31. data/lib/new_relic/agent/instrumentation/curb/prepend.rb +63 -0
  32. data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +38 -0
  33. data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +53 -0
  34. data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +34 -0
  35. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +8 -84
  36. data/lib/new_relic/agent/instrumentation/excon.rb +2 -1
  37. data/lib/new_relic/agent/instrumentation/grape.rb +13 -113
  38. data/lib/new_relic/agent/instrumentation/grape/chain.rb +25 -0
  39. data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +100 -0
  40. data/lib/new_relic/agent/instrumentation/grape/prepend.rb +17 -0
  41. data/lib/new_relic/agent/instrumentation/httpclient.rb +8 -30
  42. data/lib/new_relic/agent/instrumentation/httpclient/chain.rb +25 -0
  43. data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +38 -0
  44. data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +17 -0
  45. data/lib/new_relic/agent/instrumentation/httprb.rb +29 -0
  46. data/lib/new_relic/agent/instrumentation/httprb/chain.rb +22 -0
  47. data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +30 -0
  48. data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +15 -0
  49. data/lib/new_relic/agent/instrumentation/memcache.rb +54 -69
  50. data/lib/new_relic/agent/instrumentation/memcache/chain.rb +16 -0
  51. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +38 -121
  52. data/lib/new_relic/agent/instrumentation/memcache/helper.rb +56 -0
  53. data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +88 -0
  54. data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +88 -0
  55. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +4 -10
  56. data/lib/new_relic/agent/instrumentation/mongo.rb +7 -0
  57. data/lib/new_relic/agent/instrumentation/net_http.rb +44 -0
  58. data/lib/new_relic/agent/instrumentation/net_http/chain.rb +25 -0
  59. data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +40 -0
  60. data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +21 -0
  61. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +1 -1
  62. data/lib/new_relic/agent/instrumentation/padrino.rb +18 -75
  63. data/lib/new_relic/agent/instrumentation/padrino/chain.rb +34 -0
  64. data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +27 -0
  65. data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +20 -0
  66. data/lib/new_relic/agent/instrumentation/rack.rb +29 -160
  67. data/lib/new_relic/agent/instrumentation/rack/chain.rb +57 -0
  68. data/lib/new_relic/agent/instrumentation/rack/helpers.rb +32 -0
  69. data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +73 -0
  70. data/lib/new_relic/agent/instrumentation/rack/prepend.rb +36 -0
  71. data/lib/new_relic/agent/instrumentation/rake.rb +13 -188
  72. data/lib/new_relic/agent/instrumentation/rake/chain.rb +25 -0
  73. data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +144 -0
  74. data/lib/new_relic/agent/instrumentation/rake/prepend.rb +14 -0
  75. data/lib/new_relic/agent/instrumentation/redis.rb +12 -186
  76. data/lib/new_relic/agent/instrumentation/redis/chain.rb +34 -0
  77. data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +65 -0
  78. data/lib/new_relic/agent/instrumentation/redis/prepend.rb +24 -0
  79. data/lib/new_relic/agent/instrumentation/resque.rb +21 -32
  80. data/lib/new_relic/agent/instrumentation/resque/chain.rb +22 -0
  81. data/lib/new_relic/agent/instrumentation/resque/helper.rb +19 -0
  82. data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +35 -0
  83. data/lib/new_relic/agent/instrumentation/resque/prepend.rb +16 -0
  84. data/lib/new_relic/agent/instrumentation/sidekiq.rb +1 -1
  85. data/lib/new_relic/agent/instrumentation/sinatra.rb +20 -198
  86. data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +55 -0
  87. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +29 -34
  88. data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +124 -0
  89. data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +33 -0
  90. data/lib/new_relic/agent/instrumentation/typhoeus.rb +10 -89
  91. data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +22 -0
  92. data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +82 -0
  93. data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +14 -0
  94. data/lib/new_relic/agent/javascript_instrumentor.rb +12 -7
  95. data/lib/new_relic/agent/method_tracer.rb +6 -16
  96. data/lib/new_relic/agent/new_relic_service.rb +16 -13
  97. data/lib/new_relic/agent/samplers/memory_sampler.rb +1 -1
  98. data/lib/new_relic/agent/span_event_primitive.rb +10 -8
  99. data/lib/new_relic/agent/sql_sampler.rb +3 -3
  100. data/lib/new_relic/agent/stats_engine/gc_profiler.rb +1 -1
  101. data/lib/new_relic/agent/transaction.rb +1 -4
  102. data/lib/new_relic/agent/transaction/abstract_segment.rb +1 -1
  103. data/lib/new_relic/agent/transaction/distributed_tracer.rb +12 -6
  104. data/lib/new_relic/agent/transaction/message_broker_segment.rb +1 -0
  105. data/lib/new_relic/agent/vm/mri_vm.rb +6 -4
  106. data/lib/new_relic/cli/commands/deployments.rb +0 -1
  107. data/lib/new_relic/constants.rb +4 -0
  108. data/lib/new_relic/control/frameworks/rails.rb +11 -9
  109. data/lib/new_relic/control/instance_methods.rb +1 -0
  110. data/lib/new_relic/dependency_detection.rb +119 -9
  111. data/lib/new_relic/environment_report.rb +1 -7
  112. data/lib/new_relic/noticed_error.rb +1 -5
  113. data/lib/new_relic/supportability_helper.rb +3 -2
  114. data/lib/new_relic/version.rb +2 -2
  115. data/lib/tasks/config.html.erb +14 -25
  116. data/lib/tasks/config.rake +8 -7
  117. data/newrelic_rpm.gemspec +2 -2
  118. data/test/agent_helper.rb +1 -0
  119. metadata +55 -32
  120. data/.github/ISSUE_TEMPLATE/bug_report.md +0 -31
  121. data/.github/ISSUE_TEMPLATE/config.yml +0 -5
  122. data/.github/ISSUE_TEMPLATE/feature_request.md +0 -24
  123. data/.github/actions/annotate/README.md +0 -79
  124. data/.github/actions/annotate/action.yml +0 -6
  125. data/.github/actions/annotate/dist/index.js +0 -433
  126. data/.github/actions/annotate/index.js +0 -25
  127. data/.github/actions/annotate/package-lock.json +0 -172
  128. data/.github/actions/annotate/package.json +0 -30
  129. data/.github/actions/annotate/pre-commit +0 -5
  130. data/.github/actions/build-ruby/README.md +0 -79
  131. data/.github/actions/build-ruby/action.yml +0 -15
  132. data/.github/actions/build-ruby/dist/index.js +0 -52683
  133. data/.github/actions/build-ruby/index.js +0 -514
  134. data/.github/actions/build-ruby/package-lock.json +0 -581
  135. data/.github/actions/build-ruby/package.json +0 -32
  136. data/.github/actions/build-ruby/pre-commit +0 -5
  137. data/.github/pull_request_template.md +0 -16
  138. data/.github/workflows/ci.yml +0 -212
  139. data/.github/workflows/pr_review_checklist.yml +0 -22
  140. data/.github/workflows/release.yml +0 -78
  141. data/.github/workflows/scripts/rubygems-authenticate.py +0 -13
  142. data/.github/workflows/scripts/rubygems-publish.rb +0 -32
  143. data/.github/workflows/snyk.yml +0 -27
  144. data/.github/workflows/stale.yml +0 -21
  145. data/cert/cacert.pem +0 -1177
  146. data/lib/new_relic/agent/instrumentation/http.rb +0 -49
  147. data/lib/new_relic/agent/instrumentation/net.rb +0 -87
@@ -27,18 +27,12 @@ module NewRelic
27
27
  @middleware_class = middleware_class
28
28
  end
29
29
 
30
- if RUBY_VERSION < "2.7.0"
31
- def new(*args, &blk)
32
- middleware_instance = @middleware_class.new(*args, &blk)
33
- MiddlewareProxy.wrap(middleware_instance)
34
- end
35
- else
36
- def new(*args, **kwargs, &blk)
37
- middleware_instance = @middleware_class.new(*args, **kwargs, &blk)
38
- MiddlewareProxy.wrap(middleware_instance)
39
- end
30
+ def new(*args, &blk)
31
+ middleware_instance = @middleware_class.new(*args, &blk)
32
+ MiddlewareProxy.wrap(middleware_instance)
40
33
  end
41
34
 
35
+ ruby2_keywords(:new) if respond_to?(:ruby2_keywords, true)
42
36
  end
43
37
 
44
38
  def self.is_sinatra_app?(target)
@@ -34,7 +34,14 @@ DependencyDetection.defer do
34
34
  )
35
35
  end
36
36
 
37
+ # TODO: Remove in 8.0.0 release
37
38
  def install_mongo_instrumentation
39
+ ::NewRelic::Agent::Deprecator.deprecate "install_mongo_instrumentation", "install_mongo_command_subscriber", "8.0.0"
40
+ ::NewRelic::Agent.logger.warn("Installing deprecated Mongo instrumentation. " \
41
+ "This instrumentation will be removed in a future release. " \
42
+ "Update Mongo version to >= 2.1.0 for updated instrumentation"
43
+ )
44
+
38
45
  require 'new_relic/agent/datastores/mongo/metric_translator'
39
46
  require 'new_relic/agent/datastores/mongo/statement_formatter'
40
47
 
@@ -0,0 +1,44 @@
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 'net_http/chain'
6
+ require_relative 'net_http/prepend'
7
+
8
+ DependencyDetection.defer do
9
+ named :net_http
10
+
11
+ depends_on do
12
+ defined?(Net) && defined?(Net::HTTP)
13
+ end
14
+
15
+ executes do
16
+ ::NewRelic::Agent.logger.info 'Installing Net:HTTP Wrappers'
17
+ require 'new_relic/agent/http_clients/net_http_wrappers'
18
+ end
19
+
20
+ # Airbrake uses method chaining on Net::HTTP in versions < 10.0.2 (10.0.2 updated to prepend for Net:HTTP)
21
+ conflicts_with_prepend do
22
+ defined?(::Airbrake) && defined?(::Airbrake::AIRBRAKE_VERSION) && ::Gem::Version.create(::Airbrake::AIRBRAKE_VERSION) < ::Gem::Version.create('10.0.2')
23
+ end
24
+
25
+ conflicts_with_prepend do
26
+ defined?(::ScoutApm)
27
+ end
28
+
29
+ conflicts_with_prepend do
30
+ defined?(::Rack::MiniProfiler)
31
+ end
32
+
33
+ conflicts_with_prepend do
34
+ source_location_for(Net::HTTP, "request") =~ /airbrake|profiler/i
35
+ end
36
+
37
+ executes do
38
+ if use_prepend?
39
+ prepend_instrument ::Net::HTTP, ::NewRelic::Agent::Instrumentation::NetHTTP::Prepend
40
+ else
41
+ chain_instrument ::NewRelic::Agent::Instrumentation::NetHTTP::Chain
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,25 @@
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 'instrumentation'
6
+
7
+
8
+ module NewRelic::Agent::Instrumentation
9
+ module NetHTTP
10
+ module Chain
11
+ def self.instrument!
12
+ Net::HTTP.class_eval do
13
+ include NewRelic::Agent::Instrumentation::NetHTTP
14
+
15
+ def request_with_newrelic_trace(request, *args, &block)
16
+ request_with_tracing(request) { request_without_newrelic_trace(request, *args, &block) }
17
+ end
18
+
19
+ alias request_without_newrelic_trace request
20
+ alias request request_with_newrelic_trace
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,40 @@
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 Instrumentation
8
+ module NetHTTP
9
+ def request_with_tracing(request)
10
+ wrapped_request = NewRelic::Agent::HTTPClients::NetHTTPRequest.new(self, request)
11
+
12
+ segment = NewRelic::Agent::Tracer.start_external_request_segment(
13
+ library: wrapped_request.type,
14
+ uri: wrapped_request.uri,
15
+ procedure: wrapped_request.method
16
+ )
17
+
18
+ begin
19
+ response = nil
20
+ segment.add_request_headers wrapped_request
21
+
22
+ # RUBY-1244 Disable further tracing in request to avoid double
23
+ # counting if connection wasn't started (which calls request again).
24
+ NewRelic::Agent.disable_all_tracing do
25
+ response = NewRelic::Agent::Tracer.capture_segment_error segment do
26
+ yield
27
+ end
28
+ end
29
+
30
+ wrapped_response = NewRelic::Agent::HTTPClients::NetHTTPResponse.new response
31
+ segment.process_response_headers wrapped_response
32
+ response
33
+ ensure
34
+ segment.finish
35
+ end
36
+ end
37
+ end
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,21 @@
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 'instrumentation'
6
+
7
+ module NewRelic
8
+ module Agent
9
+ module Instrumentation
10
+ module NetHTTP
11
+ module Prepend
12
+ include NewRelic::Agent::Instrumentation::NetHTTP
13
+
14
+ def request(request, *args, &block)
15
+ request_with_tracing(request) { super }
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -75,7 +75,7 @@ module NewRelic
75
75
  # we don't expect this to be called more than once, but we're being
76
76
  # defensive.
77
77
  return if defined?(exception_object)
78
- return unless defined?(::ActiveSupport)
78
+ return unless defined?(::ActiveSupport::VERSION)
79
79
  if ::ActiveSupport::VERSION::STRING < "5.0.0"
80
80
  # Earlier versions of Rails did not add the exception itself to the
81
81
  # payload asssessible via :exception_object, so we create a stand-in
@@ -2,91 +2,34 @@
2
2
  # This file is distributed under New Relic's license terms.
3
3
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
4
 
5
- require 'new_relic/agent/instrumentation/sinatra'
5
+ # Our Padrino instrumentation relies heavily on the fact that Padrino is
6
+ # built on Sinatra. Although it wires up a lot of its own routing logic,
7
+ # we only need to patch into Padrino's dispatch to get things started.
8
+ #
9
+ # Parts of the Sinatra instrumentation (such as the TransactionNamer) are
10
+ # aware of Padrino as a potential target in areas where both Sinatra and
11
+ # Padrino run through the same code.
12
+
13
+ require_relative 'sinatra'
14
+ require_relative 'padrino/chain'
15
+ require_relative 'padrino/instrumentation'
16
+ require_relative 'padrino/prepend'
6
17
 
7
18
  DependencyDetection.defer do
8
19
  @name = :padrino
20
+ configure_with :sinatra
9
21
 
10
- depends_on do
11
- !NewRelic::Agent.config[:disable_sinatra] &&
12
- defined?(::Padrino) && defined?(::Padrino::Routing::InstanceMethods)
13
- end
22
+ depends_on { defined?(::Padrino) && defined?(::Padrino::Routing::InstanceMethods) }
14
23
 
15
24
  executes do
16
25
  ::NewRelic::Agent.logger.info 'Installing Padrino instrumentation'
17
-
18
- # Our Padrino instrumentation relies heavily on the fact that Padrino is
19
- # built on Sinatra. Although it wires up a lot of its own routing logic,
20
- # we only need to patch into Padrino's dispatch to get things started.
21
- #
22
- # Parts of the Sinatra instrumentation (such as the TransactionNamer) are
23
- # aware of Padrino as a potential target in areas where both Sinatra and
24
- # Padrino run through the same code.
25
- module ::Padrino::Routing::InstanceMethods
26
- include NewRelic::Agent::Instrumentation::Sinatra
27
-
28
- alias dispatch_without_newrelic dispatch!
29
- alias dispatch! dispatch_with_newrelic
30
-
31
- # Padrino 0.13 mustermann routing
32
- if private_method_defined?(:invoke_route)
33
- include NewRelic::Agent::Instrumentation::Padrino
34
-
35
- alias invoke_route_without_newrelic invoke_route
36
- alias invoke_route invoke_route_with_newrelic
37
- end
26
+ if use_prepend?
27
+ prepend_instrument ::Padrino::Routing::InstanceMethods, NewRelic::Agent::Instrumentation::Padrino::Prepend
28
+ else
29
+ chain_instrument NewRelic::Agent::Instrumentation::Padrino::Chain
38
30
  end
39
31
  end
40
32
  end
41
33
 
42
- module NewRelic
43
- module Agent
44
- module Instrumentation
45
- module Padrino
46
34
 
47
- if RUBY_VERSION < "2.7.0"
48
- def invoke_route_with_newrelic(*args, &block)
49
- begin
50
- env["newrelic.last_route"] = args[0].original_path
51
- rescue => e
52
- ::NewRelic::Agent.logger.debug("Failed determining last route in Padrino", e)
53
- end
54
-
55
- begin
56
- txn_name = ::NewRelic::Agent::Instrumentation::Sinatra::TransactionNamer.transaction_name_for_route(env, request)
57
- unless txn_name.nil?
58
- ::NewRelic::Agent::Transaction.set_default_transaction_name(
59
- "#{self.class.name}/#{txn_name}", :sinatra)
60
- end
61
- rescue => e
62
- ::NewRelic::Agent.logger.debug("Failed during invoke_route to set transaction name", e)
63
- end
64
-
65
- invoke_route_without_newrelic(*args, &block)
66
- end
67
- else
68
- def invoke_route_with_newrelic(*args, **kwargs, &block)
69
- begin
70
- env["newrelic.last_route"] = args[0].original_path
71
- rescue => e
72
- ::NewRelic::Agent.logger.debug("Failed determining last route in Padrino", e)
73
- end
74
-
75
- begin
76
- txn_name = ::NewRelic::Agent::Instrumentation::Sinatra::TransactionNamer.transaction_name_for_route(env, request)
77
- unless txn_name.nil?
78
- ::NewRelic::Agent::Transaction.set_default_transaction_name(
79
- "#{self.class.name}/#{txn_name}", :sinatra)
80
- end
81
- rescue => e
82
- ::NewRelic::Agent.logger.debug("Failed during invoke_route to set transaction name", e)
83
- end
84
-
85
- invoke_route_without_newrelic(*args, **kwargs, &block)
86
- end
87
- end
88
35
 
89
- end
90
- end
91
- end
92
- end
@@ -0,0 +1,34 @@
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::Agent::Instrumentation
6
+ module Padrino
7
+ module Chain
8
+ def self.instrument!
9
+ ::Padrino::Routing::InstanceMethods.module_eval do
10
+ include NewRelic::Agent::Instrumentation::Sinatra
11
+
12
+ def dispatch_with_newrelic
13
+ dispatch_with_tracing { dispatch_without_newrelic }
14
+ end
15
+
16
+ alias dispatch_without_newrelic dispatch!
17
+ alias dispatch! dispatch_with_newrelic
18
+
19
+ # Padrino 0.13 mustermann routing
20
+ if private_method_defined?(:invoke_route)
21
+ include NewRelic::Agent::Instrumentation::Padrino
22
+
23
+ def invoke_route_with_newrelic(*args, &block)
24
+ invoke_route_with_tracing(*args) { invoke_route_without_newrelic(*args, &block) }
25
+ end
26
+
27
+ alias invoke_route_without_newrelic invoke_route
28
+ alias invoke_route invoke_route_with_newrelic
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
34
+ 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::Agent::Instrumentation
6
+ module Padrino
7
+ def invoke_route_with_tracing(*args)
8
+ begin
9
+ env["newrelic.last_route"] = args[0].original_path
10
+ rescue => e
11
+ ::NewRelic::Agent.logger.debug("Failed determining last route in Padrino", e)
12
+ end
13
+
14
+ begin
15
+ txn_name = ::NewRelic::Agent::Instrumentation::Sinatra::TransactionNamer.transaction_name_for_route(env, request)
16
+ unless txn_name.nil?
17
+ ::NewRelic::Agent::Transaction.set_default_transaction_name(
18
+ "#{self.class.name}/#{txn_name}", :sinatra)
19
+ end
20
+ rescue => e
21
+ ::NewRelic::Agent.logger.debug("Failed during invoke_route to set transaction name", e)
22
+ end
23
+
24
+ yield
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,20 @@
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::Agent::Instrumentation
6
+ module Padrino
7
+ module Prepend
8
+ include NewRelic::Agent::Instrumentation::Sinatra
9
+ include NewRelic::Agent::Instrumentation::Padrino
10
+
11
+ def dispatch
12
+ dispatch_with_tracing { super }
13
+ end
14
+
15
+ def invoke_route(*args, &block)
16
+ invoke_route_with_tracing(*args) { super }
17
+ end
18
+ end
19
+ end
20
+ end
@@ -4,155 +4,10 @@
4
4
 
5
5
  require 'new_relic/agent/instrumentation/controller_instrumentation'
6
6
 
7
- module NewRelic
8
- module Agent
9
- module Instrumentation
10
- module RackHelpers
11
- def self.version_supported?
12
- rack_version_supported? || puma_rack_version_supported?
13
- end
14
-
15
- def self.rack_version_supported?
16
- return false unless defined? ::Rack
17
-
18
- version = Gem::Version.new(::Rack.release)
19
- min_version = Gem::Version.new('1.1.0')
20
- version >= min_version
21
- end
22
-
23
- def self.puma_rack_version_supported?
24
- return false unless defined? ::Puma::Const::PUMA_VERSION
25
-
26
- version = Gem::Version.new(::Puma::Const::PUMA_VERSION)
27
- min_version = Gem::Version.new('2.12.0')
28
- version >= min_version
29
- end
30
-
31
- def self.middleware_instrumentation_enabled?
32
- version_supported? && !::NewRelic::Agent.config[:disable_middleware_instrumentation]
33
- end
34
-
35
- def self.check_for_late_instrumentation(app)
36
- return if defined?(@checked_for_late_instrumentation) && @checked_for_late_instrumentation
37
- @checked_for_late_instrumentation = true
38
- if middleware_instrumentation_enabled?
39
- if ::NewRelic::Agent::Instrumentation::MiddlewareProxy.needs_wrapping?(app)
40
- ::NewRelic::Agent.logger.info("We weren't able to instrument all of your Rack middlewares.",
41
- "To correct this, ensure you 'require \"newrelic_rpm\"' before setting up your middleware stack.")
42
- end
43
- end
44
- end
45
-
46
- def self.instrument_builder builder_class
47
- ::NewRelic::Agent.logger.info "Installing deferred #{builder_class} instrumentation"
48
-
49
- builder_class.class_eval do
50
- class << self
51
- attr_accessor :_nr_deferred_detection_ran
52
- end
53
- self._nr_deferred_detection_ran = false
54
-
55
- include ::NewRelic::Agent::Instrumentation::RackBuilder
56
-
57
- alias_method :to_app_without_newrelic, :to_app
58
- alias_method :to_app, :to_app_with_newrelic_deferred_dependency_detection
59
-
60
- if ::NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled?
61
- ::NewRelic::Agent.logger.info "Installing #{builder_class} middleware instrumentation"
62
- alias_method :run_without_newrelic, :run
63
- alias_method :run, :run_with_newrelic
64
-
65
- alias_method :use_without_newrelic, :use
66
- alias_method :use, :use_with_newrelic
67
- end
68
- end
69
-
70
- def self.instrument_url_map url_map_class
71
- url_map_class.class_eval do
72
- alias_method :initialize_without_newrelic, :initialize
73
-
74
- def initialize(map = {})
75
- traced_map = ::NewRelic::Agent::Instrumentation::RackURLMap.generate_traced_map(map)
76
- initialize_without_newrelic(traced_map)
77
- end
78
- end
79
- end
80
- end
81
- end
82
-
83
- module RackBuilder
84
-
85
- if RUBY_VERSION < "2.7.0"
86
- def run_with_newrelic(app, *args)
87
- if ::NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled?
88
- wrapped_app = ::NewRelic::Agent::Instrumentation::MiddlewareProxy.wrap(app, true)
89
- run_without_newrelic(wrapped_app, *args)
90
- else
91
- run_without_newrelic(app, *args)
92
- end
93
- end
94
- else
95
- def run_with_newrelic(app, *args, **kwargs)
96
- if ::NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled?
97
- wrapped_app = ::NewRelic::Agent::Instrumentation::MiddlewareProxy.wrap(app, true)
98
- run_without_newrelic(wrapped_app, *args, **kwargs)
99
- else
100
- run_without_newrelic(app, *args, **kwargs)
101
- end
102
- end
103
- end
104
-
105
- if RUBY_VERSION < "2.7.0"
106
- def use_with_newrelic(middleware_class, *args, &blk)
107
- if ::NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled?
108
- wrapped_middleware_class = ::NewRelic::Agent::Instrumentation::MiddlewareProxy.for_class(middleware_class)
109
- use_without_newrelic(wrapped_middleware_class, *args, &blk)
110
- else
111
- use_without_newrelic(middleware_class, *args, &blk)
112
- end
113
- end
114
- else
115
- def use_with_newrelic(middleware_class, *args, **kwargs, &blk)
116
- if ::NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled?
117
- wrapped_middleware_class = ::NewRelic::Agent::Instrumentation::MiddlewareProxy.for_class(middleware_class)
118
- use_without_newrelic(wrapped_middleware_class, *args, **kwargs, &blk)
119
- else
120
- use_without_newrelic(middleware_class, *args, **kwargs, &blk)
121
- end
122
- end
123
- end
124
-
125
- # We patch this method for a reason that actually has nothing to do with
126
- # instrumenting rack itself. It happens to be a convenient and
127
- # easy-to-hook point that happens late in the startup sequence of almost
128
- # every application, making it a good place to do a final call to
129
- # DependencyDetection.detect!, since all libraries are likely loaded at
130
- # this point.
131
- def to_app_with_newrelic_deferred_dependency_detection
132
- unless self.class._nr_deferred_detection_ran
133
- NewRelic::Agent.logger.info "Doing deferred dependency-detection before Rack startup"
134
- DependencyDetection.detect!
135
- self.class._nr_deferred_detection_ran = true
136
- end
137
-
138
- result = to_app_without_newrelic
139
- ::NewRelic::Agent::Instrumentation::RackHelpers.check_for_late_instrumentation(result)
140
-
141
- result
142
- end
143
- end
144
-
145
- module RackURLMap
146
- def self.generate_traced_map(map)
147
- map.inject({}) do |traced_map, (url, handler)|
148
- traced_map[url] = NewRelic::Agent::Instrumentation::MiddlewareProxy.wrap(handler, true)
149
- traced_map
150
- end
151
- end
152
- end
153
- end
154
- end
155
- end
7
+ require_relative 'rack/helpers'
8
+ require_relative 'rack/instrumentation'
9
+ require_relative 'rack/chain'
10
+ require_relative 'rack/prepend'
156
11
 
157
12
  DependencyDetection.defer do
158
13
  named :rack
@@ -162,20 +17,27 @@ DependencyDetection.defer do
162
17
  end
163
18
 
164
19
  executes do
165
- ::NewRelic::Agent::Instrumentation::RackHelpers.instrument_builder ::Rack::Builder
20
+ if use_prepend?
21
+ prepend_instrument ::Rack::Builder, NewRelic::Agent::Instrumentation::Rack::Prepend
22
+ else
23
+ chain_instrument_target ::Rack::Builder, NewRelic::Agent::Instrumentation::Rack::Chain
24
+ end
166
25
  end
167
26
  end
168
27
 
169
-
170
28
  DependencyDetection.defer do
171
29
  named :puma_rack
172
30
 
173
31
  depends_on do
174
- defined?(::Puma::Rack::Builder) && !NewRelic::Agent.config[:disable_puma_rack]
32
+ defined?(::Puma::Rack::Builder)
175
33
  end
176
34
 
177
35
  executes do
178
- ::NewRelic::Agent::Instrumentation::RackHelpers.instrument_builder ::Puma::Rack::Builder
36
+ if use_prepend?
37
+ prepend_instrument ::Puma::Rack::Builder, NewRelic::Agent::Instrumentation::Rack::Prepend
38
+ else
39
+ chain_instrument_target ::Puma::Rack::Builder, NewRelic::Agent::Instrumentation::Rack::Chain
40
+ end
179
41
  end
180
42
  end
181
43
 
@@ -187,12 +49,16 @@ DependencyDetection.defer do
187
49
  end
188
50
 
189
51
  depends_on do
190
- ::NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled? &&
191
- !::NewRelic::Agent.config[:disable_rack]
52
+ ::NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled?
192
53
  end
193
54
 
194
55
  executes do
195
- ::NewRelic::Agent::Instrumentation::RackHelpers.instrument_url_map ::Rack::URLMap
56
+ if use_prepend?
57
+ prepend_instrument ::Rack::URLMap, NewRelic::Agent::Instrumentation::Rack::URLMap::Prepend
58
+ else
59
+ chain_instrument_target ::Rack::URLMap, NewRelic::Agent::Instrumentation::Rack::URLMap::Chain
60
+ ::NewRelic::Agent::Instrumentation::RackHelpers.instrument_url_map
61
+ end
196
62
  end
197
63
  end
198
64
 
@@ -200,15 +66,18 @@ DependencyDetection.defer do
200
66
  named :puma_rack_urlmap
201
67
 
202
68
  depends_on do
203
- defined? Puma::Rack::URLMap
69
+ defined?(Puma::Rack::URLMap)
204
70
  end
205
71
 
206
72
  depends_on do
207
- ::NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled? &&
208
- !::NewRelic::Agent.config[:disable_puma_rack]
73
+ ::NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled?
209
74
  end
210
75
 
211
76
  executes do
212
- ::NewRelic::Agent::Instrumentation::RackHelpers.instrument_url_map ::Puma::Rack::URLMap
77
+ if use_prepend?
78
+ prepend_instrument ::Puma::Rack::URLMap, NewRelic::Agent::Instrumentation::Rack::URLMap::Prepend
79
+ else
80
+ chain_instrument_target ::Puma::Rack::URLMap, NewRelic::Agent::Instrumentation::Rack::URLMap::Chain
81
+ end
213
82
  end
214
83
  end