newrelic_rpm 7.0.0 → 8.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (98) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/CHANGELOG.md +187 -0
  4. data/CONTRIBUTING.md +13 -2
  5. data/README.md +5 -1
  6. data/lib/new_relic/agent/adaptive_sampler.rb +2 -2
  7. data/lib/new_relic/agent/agent.rb +8 -7
  8. data/lib/new_relic/agent/commands/thread_profiler_session.rb +7 -3
  9. data/lib/new_relic/agent/configuration/default_source.rb +223 -158
  10. data/lib/new_relic/agent/configuration/event_harvest_config.rb +28 -12
  11. data/lib/new_relic/agent/configuration/manager.rb +1 -2
  12. data/lib/new_relic/agent/configuration/server_source.rb +3 -2
  13. data/lib/new_relic/agent/configuration/yaml_source.rb +22 -1
  14. data/lib/new_relic/agent/connect/request_builder.rb +4 -2
  15. data/lib/new_relic/agent/custom_event_aggregator.rb +2 -1
  16. data/lib/new_relic/agent/database.rb +5 -2
  17. data/lib/new_relic/agent/datastores/mongo.rb +5 -10
  18. data/lib/new_relic/agent/datastores.rb +7 -7
  19. data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +5 -5
  20. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +10 -6
  21. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +0 -1
  22. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +1 -1
  23. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +1 -1
  24. data/lib/new_relic/agent/error_collector.rb +52 -37
  25. data/lib/new_relic/agent/error_filter.rb +175 -0
  26. data/lib/new_relic/agent/event_loop.rb +6 -6
  27. data/lib/new_relic/agent/external.rb +0 -32
  28. data/lib/new_relic/agent/http_clients/abstract.rb +2 -2
  29. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +7 -1
  30. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +1 -1
  31. data/lib/new_relic/agent/instrumentation/active_merchant.rb +3 -3
  32. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +1 -3
  33. data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +1 -1
  34. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +2 -1
  35. data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +4 -4
  36. data/lib/new_relic/agent/instrumentation/excon.rb +4 -23
  37. data/lib/new_relic/agent/instrumentation/logger/chain.rb +21 -0
  38. data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +59 -0
  39. data/lib/new_relic/agent/instrumentation/logger/prepend.rb +13 -0
  40. data/lib/new_relic/agent/instrumentation/logger.rb +25 -0
  41. data/lib/new_relic/agent/instrumentation/mongo.rb +3 -141
  42. data/lib/new_relic/agent/instrumentation/net_http.rb +6 -1
  43. data/lib/new_relic/agent/instrumentation/padrino/chain.rb +23 -19
  44. data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +1 -1
  45. data/lib/new_relic/agent/instrumentation/padrino.rb +4 -2
  46. data/lib/new_relic/agent/instrumentation/queue_time.rb +4 -4
  47. data/lib/new_relic/agent/instrumentation/rack/chain.rb +3 -2
  48. data/lib/new_relic/agent/instrumentation/rack/prepend.rb +2 -1
  49. data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +5 -5
  50. data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +1 -1
  51. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +5 -41
  52. data/lib/new_relic/agent/instrumentation/redis.rb +4 -0
  53. data/lib/new_relic/agent/instrumentation/resque/helper.rb +19 -0
  54. data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +5 -3
  55. data/lib/new_relic/agent/instrumentation/resque.rb +13 -4
  56. data/lib/new_relic/agent/instrumentation/sidekiq.rb +6 -1
  57. data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +8 -2
  58. data/lib/new_relic/agent/javascript_instrumentor.rb +15 -10
  59. data/lib/new_relic/agent/messaging.rb +10 -24
  60. data/lib/new_relic/agent/method_tracer.rb +137 -138
  61. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +6 -1
  62. data/lib/new_relic/agent/new_relic_service.rb +16 -12
  63. data/lib/new_relic/agent/pipe_channel_manager.rb +10 -6
  64. data/lib/new_relic/agent/pipe_service.rb +1 -1
  65. data/lib/new_relic/agent/samplers/cpu_sampler.rb +1 -1
  66. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +9 -6
  67. data/lib/new_relic/agent/span_event_aggregator.rb +2 -2
  68. data/lib/new_relic/agent/sql_sampler.rb +3 -3
  69. data/lib/new_relic/agent/stats_engine/stats_hash.rb +1 -1
  70. data/lib/new_relic/agent/stats_engine.rb +1 -1
  71. data/lib/new_relic/agent/threading/backtrace_service.rb +4 -5
  72. data/lib/new_relic/agent/threading/thread_profile.rb +1 -1
  73. data/lib/new_relic/agent/tracer.rb +15 -37
  74. data/lib/new_relic/agent/transaction/abstract_segment.rb +3 -3
  75. data/lib/new_relic/agent/transaction/message_broker_segment.rb +5 -11
  76. data/lib/new_relic/agent/transaction.rb +7 -28
  77. data/lib/new_relic/agent/transaction_time_aggregator.rb +5 -5
  78. data/lib/new_relic/agent/vm/snapshot.rb +1 -1
  79. data/lib/new_relic/agent/worker_loop.rb +5 -5
  80. data/lib/new_relic/agent.rb +10 -7
  81. data/lib/new_relic/cli/commands/deployments.rb +2 -2
  82. data/lib/new_relic/constants.rb +0 -4
  83. data/lib/new_relic/noticed_error.rb +4 -4
  84. data/lib/new_relic/version.rb +2 -2
  85. data/lib/newrelic_rpm.rb +10 -34
  86. data/lib/tasks/all.rb +1 -1
  87. data/lib/tasks/config.html.erb +14 -25
  88. data/lib/tasks/config.rake +8 -7
  89. data/newrelic.yml +594 -3
  90. data/newrelic_rpm.gemspec +1 -1
  91. data/test/agent_helper.rb +27 -2
  92. metadata +9 -9
  93. data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +0 -53
  94. data/lib/new_relic/agent/instrumentation/excon/connection.rb +0 -49
  95. data/lib/new_relic/agent/instrumentation/merb/controller.rb +0 -44
  96. data/lib/new_relic/agent/instrumentation/merb/errors.rb +0 -33
  97. data/lib/new_relic/agent/supported_versions.rb +0 -275
  98. data/lib/new_relic/control/frameworks/merb.rb +0 -29
data/test/agent_helper.rb CHANGED
@@ -594,6 +594,31 @@ def advance_time seconds
594
594
  Time.__frozen_now = Time.now + seconds
595
595
  end
596
596
 
597
+ unless Process.respond_to?(:__original_clock_gettime)
598
+ Process.instance_eval do
599
+ class << self
600
+ attr_accessor :__frozen_clock_gettime
601
+ alias_method :__original_clock_gettime, :clock_gettime
602
+
603
+ def clock_gettime(clock_id, unit = :float_second)
604
+ __frozen_clock_gettime || __original_clock_gettime(clock_id, unit)
605
+ end
606
+ end
607
+ end
608
+ end
609
+
610
+ def advance_process_time(seconds, clock_id=Process::CLOCK_REALTIME)
611
+ Process.__frozen_clock_gettime = Process.clock_gettime(clock_id) + seconds
612
+ end
613
+
614
+ def nr_freeze_process_time(now=Process.clock_gettime(Process::CLOCK_REALTIME))
615
+ Process.__frozen_clock_gettime = now
616
+ end
617
+
618
+ def nr_unfreeze_process_time
619
+ Process.__frozen_clock_gettime = nil
620
+ end
621
+
597
622
  def with_constant_defined constant_symbol, implementation=Module.new
598
623
  const_path = constant_path(constant_symbol.to_s)
599
624
 
@@ -668,7 +693,7 @@ def wait_for_backtrace_service_poll opts={}
668
693
  :iterations => 1
669
694
  }
670
695
  opts = defaults.merge(opts)
671
- deadline = Time.now + opts[:timeout]
696
+ deadline = Process.clock_gettime(Process::CLOCK_REALTIME) + opts[:timeout]
672
697
 
673
698
  service = opts[:service]
674
699
  worker_loop = service.worker_loop
@@ -676,7 +701,7 @@ def wait_for_backtrace_service_poll opts={}
676
701
 
677
702
  until worker_loop.iterations > opts[:iterations]
678
703
  sleep(0.01)
679
- if Time.now > deadline
704
+ if Process.clock_gettime(Process::CLOCK_REALTIME) > deadline
680
705
  raise "Timed out waiting #{opts[:timeout]} s for backtrace service poll\n" +
681
706
  "Worker loop ran for #{opts[:service].worker_loop.iterations} iterations\n\n" +
682
707
  Thread.list.map { |t|
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: newrelic_rpm
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.0
4
+ version: 8.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Huntsman
8
8
  - Tanna McClure
9
- - Michael Lang
9
+ - Kayla Reopelle
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2021-04-23 00:00:00.000000000 Z
13
+ date: 2021-10-27 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rake
@@ -261,7 +261,6 @@ files:
261
261
  - lib/new_relic/agent/datastores/mongo/event_formatter.rb
262
262
  - lib/new_relic/agent/datastores/mongo/metric_translator.rb
263
263
  - lib/new_relic/agent/datastores/mongo/obfuscator.rb
264
- - lib/new_relic/agent/datastores/mongo/statement_formatter.rb
265
264
  - lib/new_relic/agent/datastores/redis.rb
266
265
  - lib/new_relic/agent/deprecator.rb
267
266
  - lib/new_relic/agent/distributed_tracing.rb
@@ -276,6 +275,7 @@ files:
276
275
  - lib/new_relic/agent/encoding_normalizer.rb
277
276
  - lib/new_relic/agent/error_collector.rb
278
277
  - lib/new_relic/agent/error_event_aggregator.rb
278
+ - lib/new_relic/agent/error_filter.rb
279
279
  - lib/new_relic/agent/error_trace_aggregator.rb
280
280
  - lib/new_relic/agent/event_aggregator.rb
281
281
  - lib/new_relic/agent/event_buffer.rb
@@ -324,7 +324,6 @@ files:
324
324
  - lib/new_relic/agent/instrumentation/delayed_job/prepend.rb
325
325
  - lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb
326
326
  - lib/new_relic/agent/instrumentation/excon.rb
327
- - lib/new_relic/agent/instrumentation/excon/connection.rb
328
327
  - lib/new_relic/agent/instrumentation/excon/middleware.rb
329
328
  - lib/new_relic/agent/instrumentation/grape.rb
330
329
  - lib/new_relic/agent/instrumentation/grape/chain.rb
@@ -339,14 +338,16 @@ files:
339
338
  - lib/new_relic/agent/instrumentation/httprb/instrumentation.rb
340
339
  - lib/new_relic/agent/instrumentation/httprb/prepend.rb
341
340
  - lib/new_relic/agent/instrumentation/ignore_actions.rb
341
+ - lib/new_relic/agent/instrumentation/logger.rb
342
+ - lib/new_relic/agent/instrumentation/logger/chain.rb
343
+ - lib/new_relic/agent/instrumentation/logger/instrumentation.rb
344
+ - lib/new_relic/agent/instrumentation/logger/prepend.rb
342
345
  - lib/new_relic/agent/instrumentation/memcache.rb
343
346
  - lib/new_relic/agent/instrumentation/memcache/chain.rb
344
347
  - lib/new_relic/agent/instrumentation/memcache/dalli.rb
345
348
  - lib/new_relic/agent/instrumentation/memcache/helper.rb
346
349
  - lib/new_relic/agent/instrumentation/memcache/instrumentation.rb
347
350
  - lib/new_relic/agent/instrumentation/memcache/prepend.rb
348
- - lib/new_relic/agent/instrumentation/merb/controller.rb
349
- - lib/new_relic/agent/instrumentation/merb/errors.rb
350
351
  - lib/new_relic/agent/instrumentation/middleware_proxy.rb
351
352
  - lib/new_relic/agent/instrumentation/middleware_tracing.rb
352
353
  - lib/new_relic/agent/instrumentation/mongo.rb
@@ -385,6 +386,7 @@ files:
385
386
  - lib/new_relic/agent/instrumentation/redis/prepend.rb
386
387
  - lib/new_relic/agent/instrumentation/resque.rb
387
388
  - lib/new_relic/agent/instrumentation/resque/chain.rb
389
+ - lib/new_relic/agent/instrumentation/resque/helper.rb
388
390
  - lib/new_relic/agent/instrumentation/resque/instrumentation.rb
389
391
  - lib/new_relic/agent/instrumentation/resque/prepend.rb
390
392
  - lib/new_relic/agent/instrumentation/sequel.rb
@@ -446,7 +448,6 @@ files:
446
448
  - lib/new_relic/agent/stats_engine.rb
447
449
  - lib/new_relic/agent/stats_engine/gc_profiler.rb
448
450
  - lib/new_relic/agent/stats_engine/stats_hash.rb
449
- - lib/new_relic/agent/supported_versions.rb
450
451
  - lib/new_relic/agent/synthetics_event_aggregator.rb
451
452
  - lib/new_relic/agent/system_info.rb
452
453
  - lib/new_relic/agent/threading/agent_thread.rb
@@ -501,7 +502,6 @@ files:
501
502
  - lib/new_relic/control/class_methods.rb
502
503
  - lib/new_relic/control/frameworks.rb
503
504
  - lib/new_relic/control/frameworks/external.rb
504
- - lib/new_relic/control/frameworks/merb.rb
505
505
  - lib/new_relic/control/frameworks/rails.rb
506
506
  - lib/new_relic/control/frameworks/rails3.rb
507
507
  - lib/new_relic/control/frameworks/rails4.rb
@@ -1,53 +0,0 @@
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 'new_relic/agent/datastores/mongo/obfuscator'
6
-
7
- module NewRelic
8
- module Agent
9
- module Datastores
10
- module Mongo
11
- module StatementFormatter
12
-
13
- PLAINTEXT_KEYS = [
14
- :database,
15
- :collection,
16
- :operation,
17
- :fields,
18
- :skip,
19
- :limit,
20
- :order
21
- ]
22
-
23
- OBFUSCATE_KEYS = [
24
- :selector
25
- ]
26
-
27
- def self.format(statement, operation)
28
- return nil unless NewRelic::Agent.config[:'mongo.capture_queries']
29
-
30
- result = { :operation => operation }
31
-
32
- PLAINTEXT_KEYS.each do |key|
33
- result[key] = statement[key] if statement.key?(key)
34
- end
35
-
36
- OBFUSCATE_KEYS.each do |key|
37
- if statement.key?(key) && statement[key]
38
- obfuscated = obfuscate(statement[key])
39
- result[key] = obfuscated if obfuscated
40
- end
41
- end
42
- result
43
- end
44
-
45
- def self.obfuscate(statement)
46
- statement = Obfuscator.obfuscate_statement(statement) if NewRelic::Agent.config[:'mongo.obfuscate_queries']
47
- statement
48
- end
49
- end
50
- end
51
- end
52
- end
53
- end
@@ -1,49 +0,0 @@
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 ::Excon
6
- class Connection
7
- # @connection is deprecated in newer excon versions and replaced with @data
8
- def newrelic_connection_params
9
- (@data || @connection)
10
- end
11
-
12
- def newrelic_resolved_request_params(request_params)
13
- resolved = newrelic_connection_params.merge(request_params)
14
- resolved[:headers] = resolved[:headers].merge(request_params[:headers] || {})
15
- resolved
16
- end
17
-
18
- def request_with_newrelic_trace(params, &block)
19
- resolved_params = newrelic_resolved_request_params(params)
20
- wrapped_request = ::NewRelic::Agent::HTTPClients::ExconHTTPRequest.new(resolved_params)
21
- segment = NewRelic::Agent::Tracer.start_external_request_segment(
22
- library: wrapped_request.type,
23
- uri: wrapped_request.uri,
24
- procedure: wrapped_request.method
25
- )
26
-
27
- begin
28
- response = nil
29
- segment.add_request_headers wrapped_request
30
-
31
- response = NewRelic::Agent::Tracer.capture_segment_error segment do
32
- request_without_newrelic_trace(resolved_params, &block)
33
- end
34
-
35
- wrapped_response = ::NewRelic::Agent::HTTPClients::ExconHTTPResponse.new(response)
36
- segment.process_response_headers wrapped_response
37
-
38
- response
39
- ensure
40
- segment.finish if segment
41
- end
42
- end
43
-
44
- def self.install_newrelic_instrumentation
45
- alias request_without_newrelic_trace request
46
- alias request request_with_newrelic_trace
47
- end
48
- end
49
- end
@@ -1,44 +0,0 @@
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 'set'
6
-
7
- DependencyDetection.defer do
8
- @name = :merb_controller
9
-
10
- depends_on do
11
- defined?(Merb) && defined?(Merb::Controller)
12
- end
13
-
14
- executes do
15
- ::NewRelic::Agent.logger.info 'Installing Merb Controller instrumentation'
16
- end
17
-
18
- executes do
19
- require 'merb-core/controller/merb_controller'
20
-
21
- Merb::Controller.class_eval do
22
- include NewRelic::Agent::Instrumentation::ControllerInstrumentation
23
-
24
- # determine the path that is used in the metric name for
25
- # the called controller action
26
- def newrelic_metric_path
27
- "#{controller_name}/#{action_name}"
28
- end
29
-
30
- protected
31
-
32
- def _dispatch_with_newrelic_trace(*args)
33
- options = {}
34
- options[:params] = params
35
- perform_action_with_newrelic_trace(options) do
36
- _dispatch_without_newrelic_trace(*args)
37
- end
38
- end
39
-
40
- alias_method :_dispatch_without_newrelic_trace, :_dispatch
41
- alias_method :_dispatch, :_dispatch_with_newrelic_trace
42
- end
43
- end
44
- end
@@ -1,33 +0,0 @@
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
- DependencyDetection.defer do
6
- @name = :merb_error
7
-
8
- depends_on do
9
- defined?(Merb) && defined?(Merb::Dispatcher) && defined?(Merb::Dispatcher::DefaultException)
10
- end
11
-
12
- depends_on do
13
- Merb::Dispatcher::DefaultException.respond_to?(:before)
14
- end
15
-
16
- executes do
17
- ::NewRelic::Agent.logger.info 'Installing Merb Errors instrumentation'
18
- end
19
-
20
- executes do
21
-
22
- # Hook in the notification to merb
23
- error_notifier = Proc.new {
24
- if request.exceptions #check that there's actually an exception
25
- # Note, this assumes we have already captured the other information such as uri and params in the Transaction.
26
- NewRelic::Agent::Transaction.notice_error(request.exceptions.first)
27
- end
28
- }
29
- Merb::Dispatcher::DefaultException.before error_notifier
30
- Exceptions.before error_notifier
31
-
32
- end
33
- end
@@ -1,275 +0,0 @@
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
- SUPPORTED_VERSIONS =
8
- {
9
- # Rubies
10
- :mri =>
11
- {
12
- :type => :ruby,
13
- :name => "MRI",
14
- :supported => ["2.0.0", "~>2.1.0", "~>2.2.0", "~>2.3.0", "~>2.4.0", "~>2.5.0", "~>2.6.0", "~>2.7.0"],
15
- :deprecated => ["1.8.6", "1.8.7", "1.9.2", "1.9.3"],
16
- :url => "https://www.ruby-lang.org",
17
- :feed => "https://www.ruby-lang.org/en/feeds/news.rss",
18
- :notes => ["Last supported agent for 1.8.7, 1.9.2, and 1.9.3 was 3.18.1.330.",
19
- "Last supported agent on 1.8.6 was 3.6.8.168."]
20
- },
21
- :jruby =>
22
- {
23
- :type => :ruby,
24
- :name => "JRuby",
25
- :supported => ["~>9.0", "~>9.1"],
26
- :deprecated => ["~>1.7.0"],
27
- :url => "http://jruby.org",
28
- :feed => "http://jruby.org/atom.xml",
29
- :notes => ["Last supported agent for ~>1.7.0 was 3.18.1.330."]
30
- },
31
-
32
- # App servers
33
- :passenger =>
34
- {
35
- :type => :app_server,
36
- :supported => ["~>2.2", "~>3.0", "~>4.0"],
37
- :url => "http://www.phusionpassenger.com/",
38
- :feed => "http://rubygems.org/gems/passenger/versions.atom"
39
- },
40
- :thin =>
41
- {
42
- :type => :app_server,
43
- :supported => ["~>1.0"],
44
- :url => "http://code.macournoyer.com/thin/",
45
- :feed => "http://rubygems.org/gems/thin/versions.atom"
46
- },
47
- :unicorn =>
48
- {
49
- :type => :app_server,
50
- :supported => ["~>4.0"],
51
- :deprecated => ["~>1.0", "~>2.0", "~>3.0"],
52
- :url => "http://unicorn.bogomips.org/",
53
- :feed => "http://rubygems.org/gems/unicorn/versions.atom"
54
- },
55
- :puma =>
56
- {
57
- :type => :app_server,
58
- :supported => ["~>2.0"],
59
- :deprecated => ["~>1.0"],
60
- :url => "http://puma.io/",
61
- :feed => "http://rubygems.org/gems/puma/versions.atom"
62
- },
63
- :rainbows =>
64
- {
65
- :type => :app_server,
66
- :name => "rainbows!",
67
- :experimental=> ["4.5.0"],
68
- :url => "http://rainbows.rubyforge.org/",
69
- :feed => "http://rubygems.org/gems/rainbows/versions.atom"
70
- },
71
- :webrick =>
72
- {
73
- :type => :app_server,
74
- :notes => [ "Supported for all agent-supported versions of Ruby" ]
75
- },
76
-
77
- # Web frameworks
78
- :rails =>
79
- {
80
- :type => :web,
81
- :supported => ["~3.0.0", "~>3.1.0", "~>3.2.0", "~>4.0.0", "~>4.1.0", "~>4.2.0", "~>5.0.0", "~>5.1.0"],
82
- :deprecated => ["~>2.0.0", "~>2.1.0", "~>2.2.0", "~>2.3.0"],
83
- :url => "https://rubygems.org/gems/rails",
84
- :feed => "https://rubygems.org/gems/rails/versions.atom",
85
- :notes => ["Last supported agent for ~>2.1.0, ~>2.2.0, and ~>2.3.0 was 3.18.1.330.",
86
- "Last supported agent for 2.0.x was 3.6.8.168."]
87
- },
88
- :sinatra =>
89
- {
90
- :type => :web,
91
- :supported => ["~>1.2.0", "~>1.3.0", "~>1.4.0", "~>2.0.0"],
92
- :url => "https://rubygems.org/gems/sinatra",
93
- :feed => "https://rubygems.org/gems/sinatra/versions.atom"
94
- },
95
- :padrino =>
96
- {
97
- :type => :web,
98
- :supported => ["~>0.10"],
99
- :url => "https://rubygems.org/gems/padrino",
100
- :feed => "https://rubygems.org/gems/padrino/versions.atom"
101
- },
102
- :rack =>
103
- {
104
- :type => :web,
105
- :supported => [">= 1.1.0"],
106
- :deprecated => ["~>1.0.0"],
107
- :url => "https://rubygems.org/gems/rack",
108
- :feed => "https://rubygems.org/gems/rack/versions.atom"
109
- },
110
- :grape =>
111
- {
112
- :type => :web,
113
- :supported => [">= 0.2.0"],
114
- :url => "https://rubygems.org/gems/grape",
115
- :feed => "https://rubygems.org/gems/grape/versions.atom"
116
- },
117
-
118
- # Database
119
- :activerecord =>
120
- {
121
- :type => :database,
122
- :supported => ["~>3.0.0", "~>3.1.0", "~>3.2.0", "~>4.0.0", "~>4.1.0", "~>4.2.0", "~>5.0.0", "~>5.1.0", "~>6.0.0"],
123
- :deprecated => ["~>2.0.0", "~>2.1.0", "~>2.2.0", "~>2.3.0",],
124
- :url => "https://rubygems.org/gems/activerecord",
125
- :feed => "https://rubygems.org/gems/activerecord/versions.atom",
126
- :notes => ["Last supported agent for ~>2.1.0, ~>2.2.0, and ~>2.3.0 was 3.18.1.330.",
127
- "Last supported agent for 2.0.x was 3.6.8.168."]
128
- },
129
- :datamapper =>
130
- {
131
- :type => :database,
132
- :supported => ["~>1.0"],
133
- :url => "https://rubygems.org/gems/datamapper",
134
- :feed => "https://rubygems.org/gems/datamapper/versions.atom"
135
- },
136
- :sequel =>
137
- {
138
- :type => :database,
139
- :supported => ["~>3.37", "~>4.0"],
140
- :url => "https://rubygems.org/gems/sequel",
141
- :feed => "https://rubygems.org/gems/sequel/versions.atom"
142
- },
143
- :mongo =>
144
- {
145
- :type => :database,
146
- :supported => ["~>1.8", "~>2.1"],
147
- :url => "https://rubygems.org/gems/mongo",
148
- :feed => "https://rubygems.org/gems/mongo/versions.atom"
149
- },
150
- :redis =>
151
- {
152
- :type => :database,
153
- :supported => ["~>3.0"],
154
- :url => "https://rubygems.org/gems/redis",
155
- :feed => "https://rubygems.org/gems/redis/versions.atom"
156
- },
157
-
158
- # Background Jobs
159
- :rake =>
160
- {
161
- :type => :background,
162
- :supported => ["~>10.0"],
163
- :url => "https://rubygems.org/gems/rake",
164
- :feed => "https://rubygems.org/gems/rake/versions.atom"
165
- },
166
- :resque =>
167
- {
168
- :type => :background,
169
- :supported => ["~>1.23.0"],
170
- :deprecated => ["~>1.22.0"],
171
- :experimental=> [">= 2.0"],
172
- :url => "https://rubygems.org/gems/resque",
173
- :feed => "https://rubygems.org/gems/resque/versions.atom"
174
- },
175
- :sidekiq =>
176
- {
177
- :type => :background,
178
- :supported => ["~>2.8", "~>3.4.2", "~>4.0"],
179
- :url => "https://rubygems.org/gems/sidekiq",
180
- :feed => "https://rubygems.org/gems/sidekiq/versions.atom"
181
- },
182
- :delayed_job =>
183
- {
184
- :type => :background,
185
- :supported => ["~>2.0", "~>3.0", "~>4.0"],
186
- :url => "https://rubygems.org/gems/delayed_job",
187
- :feed => "https://rubygems.org/gems/delayed_job/versions.atom"
188
- },
189
-
190
- # HTTP Clients
191
- :curb =>
192
- {
193
- :type => :http,
194
- :supported => [ ">= 0.8.1" ],
195
- :url => "https://rubygems.org/gems/curb",
196
- :feed => "https://rubygems.org/gems/curb/versions.atom"
197
- },
198
- :excon =>
199
- {
200
- :type => :http,
201
- :supported => [ ">= 0.10.1" ],
202
- :url => "https://rubygems.org/gems/excon",
203
- :feed => "https://rubygems.org/gems/excon/versions.atom"
204
- },
205
- :httpclient =>
206
- {
207
- :type => :http,
208
- :supported => [ ">= 2.2.0"],
209
- :url => "https://rubygems.org/gems/httpclient",
210
- :feed => "https://rubygems.org/gems/httpclient/versions.atom"
211
- },
212
- :typhoeus =>
213
- {
214
- :type => :http,
215
- :supported => [ ">= 0.5.3"],
216
- :url => "https://rubygems.org/gems/typhoeus",
217
- :feed => "https://rubygems.org/gems/typhoeus/versions.atom"
218
- },
219
- :net_http =>
220
- {
221
- :type => :http,
222
- :name => "Net::HTTP",
223
- :notes => [
224
- "Supported for all agent-supported versions of Ruby.",
225
- "For more information on supported HTTP clients see http://docs.newrelic.com/docs/ruby/ruby-http-clients."]
226
- },
227
- :httprb =>
228
- {
229
- :type => :http,
230
- :supported => [ ">= 0.9.9"],
231
- :url => "https://rubygems.org/gems/http",
232
- :feed => "https://rubygems.org/gems/http/versions.atom"
233
- },
234
-
235
- # Other
236
- :sunspot =>
237
- {
238
- :type => :other,
239
- :url => "https://rubygems.org/gems/sunspot",
240
- :feed => "https://rubygems.org/gems/sunspot/versions.atom"
241
- },
242
- :acts_as_solr =>
243
- {
244
- :type => :other,
245
- :url => "https://rubygems.org/gems/acts_as_solr",
246
- :feed => "https://rubygems.org/gems/acts_as_solr/versions.atom"
247
- },
248
- :dalli =>
249
- {
250
- :type => :other,
251
- :url => "https://rubygems.org/gems/dalli",
252
- :feed => "https://rubygems.org/gems/dalli/versions.atom"
253
- },
254
- :'memcache-client' =>
255
- {
256
- :type => :other,
257
- :url => "https://rubygems.org/gems/memcache-client",
258
- :feed => "https://rubygems.org/gems/memcache-client/versions.atom"
259
- },
260
- :authlogic =>
261
- {
262
- :type => :other,
263
- :url => "https://rubygems.org/gems/authlogic",
264
- :feed => "https://rubygems.org/gems/authlogic/versions.atom"
265
- },
266
- :activemerchant =>
267
- {
268
- :type => :other,
269
- :supported => [ ">= 1.25.0"],
270
- :url => "https://rubygems.org/gems/activemerchant",
271
- :feed => "https://rubygems.org/gems/activemerchant/versions.atom"
272
- },
273
- }
274
- end
275
- end
@@ -1,29 +0,0 @@
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
- class Control
7
- module Frameworks
8
- # Includes limited support for Merb
9
- class Merb < NewRelic::Control
10
-
11
- def env
12
- @env ||= ::Merb.env
13
- end
14
- def root
15
- ::Merb.root
16
- end
17
-
18
- def init_config options={}
19
- ::Merb::Plugins.add_rakefiles File.join(newrelic_root,"lib/tasks/all.rb")
20
-
21
- # Merb gives you a Merb::Plugins.config hash...feel free to put your stuff in your piece of it
22
- ::Merb::Plugins.config[:newrelic] = {
23
- :config => self
24
- }
25
- end
26
- end
27
- end
28
- end
29
- end