newrelic_rpm 9.10.2 → 9.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +91 -1
- data/README.md +1 -1
- data/lib/new_relic/agent/agent_logger.rb +1 -0
- data/lib/new_relic/agent/configuration/default_source.rb +114 -3
- data/lib/new_relic/agent/database/obfuscator.rb +1 -0
- data/lib/new_relic/agent/error_collector.rb +14 -10
- data/lib/new_relic/agent/instrumentation/aws_sqs/chain.rb +37 -0
- data/lib/new_relic/agent/instrumentation/aws_sqs/instrumentation.rb +67 -0
- data/lib/new_relic/agent/instrumentation/aws_sqs/prepend.rb +21 -0
- data/lib/new_relic/agent/instrumentation/aws_sqs.rb +25 -0
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +14 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/logstasher/chain.rb +21 -0
- data/lib/new_relic/agent/instrumentation/logstasher/instrumentation.rb +24 -0
- data/lib/new_relic/agent/instrumentation/logstasher/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/logstasher.rb +27 -0
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +3 -0
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +9 -5
- data/lib/new_relic/agent/instrumentation/redis/cluster_middleware.rb +26 -0
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +14 -11
- data/lib/new_relic/agent/instrumentation/redis/middleware.rb +3 -0
- data/lib/new_relic/agent/instrumentation/redis.rb +5 -0
- data/lib/new_relic/agent/instrumentation/stripe_subscriber.rb +22 -1
- data/lib/new_relic/agent/local_log_decorator.rb +8 -1
- data/lib/new_relic/agent/log_event_aggregator.rb +91 -26
- data/lib/new_relic/control/instance_methods.rb +1 -0
- data/lib/new_relic/control/private_instance_methods.rb +4 -0
- data/lib/new_relic/control/security_interface.rb +57 -0
- data/lib/new_relic/control.rb +1 -1
- data/lib/new_relic/rack/browser_monitoring.rb +11 -7
- data/lib/new_relic/version.rb +2 -2
- data/lib/tasks/config.rake +5 -2
- data/lib/tasks/gha.rake +31 -0
- data/lib/tasks/helpers/config.html.erb +1 -1
- data/lib/tasks/helpers/format.rb +1 -1
- data/lib/tasks/helpers/newrelicyml.rb +3 -2
- data/lib/tasks/instrumentation_generator/instrumentation.thor +1 -0
- data/newrelic.yml +202 -135
- data/newrelic_rpm.gemspec +2 -0
- data/test/agent_helper.rb +9 -0
- metadata +42 -3
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: newrelic_rpm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 9.
|
4
|
+
version: 9.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tanna McClure
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2024-
|
14
|
+
date: 2024-07-24 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: bundler
|
@@ -69,6 +69,34 @@ dependencies:
|
|
69
69
|
- - "~>"
|
70
70
|
- !ruby/object:Gem::Version
|
71
71
|
version: '1.16'
|
72
|
+
- !ruby/object:Gem::Dependency
|
73
|
+
name: mutex_m
|
74
|
+
requirement: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: '0'
|
79
|
+
type: :development
|
80
|
+
prerelease: false
|
81
|
+
version_requirements: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - ">="
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
- !ruby/object:Gem::Dependency
|
87
|
+
name: ostruct
|
88
|
+
requirement: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
type: :development
|
94
|
+
prerelease: false
|
95
|
+
version_requirements: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - ">="
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
72
100
|
- !ruby/object:Gem::Dependency
|
73
101
|
name: rack
|
74
102
|
requirement: !ruby/object:Gem::Requirement
|
@@ -364,6 +392,10 @@ files:
|
|
364
392
|
- lib/new_relic/agent/instrumentation/async_http/chain.rb
|
365
393
|
- lib/new_relic/agent/instrumentation/async_http/instrumentation.rb
|
366
394
|
- lib/new_relic/agent/instrumentation/async_http/prepend.rb
|
395
|
+
- lib/new_relic/agent/instrumentation/aws_sqs.rb
|
396
|
+
- lib/new_relic/agent/instrumentation/aws_sqs/chain.rb
|
397
|
+
- lib/new_relic/agent/instrumentation/aws_sqs/instrumentation.rb
|
398
|
+
- lib/new_relic/agent/instrumentation/aws_sqs/prepend.rb
|
367
399
|
- lib/new_relic/agent/instrumentation/bunny.rb
|
368
400
|
- lib/new_relic/agent/instrumentation/bunny/chain.rb
|
369
401
|
- lib/new_relic/agent/instrumentation/bunny/instrumentation.rb
|
@@ -433,6 +465,10 @@ files:
|
|
433
465
|
- lib/new_relic/agent/instrumentation/logger/chain.rb
|
434
466
|
- lib/new_relic/agent/instrumentation/logger/instrumentation.rb
|
435
467
|
- lib/new_relic/agent/instrumentation/logger/prepend.rb
|
468
|
+
- lib/new_relic/agent/instrumentation/logstasher.rb
|
469
|
+
- lib/new_relic/agent/instrumentation/logstasher/chain.rb
|
470
|
+
- lib/new_relic/agent/instrumentation/logstasher/instrumentation.rb
|
471
|
+
- lib/new_relic/agent/instrumentation/logstasher/prepend.rb
|
436
472
|
- lib/new_relic/agent/instrumentation/memcache.rb
|
437
473
|
- lib/new_relic/agent/instrumentation/memcache/chain.rb
|
438
474
|
- lib/new_relic/agent/instrumentation/memcache/dalli.rb
|
@@ -471,6 +507,7 @@ files:
|
|
471
507
|
- lib/new_relic/agent/instrumentation/rake/prepend.rb
|
472
508
|
- lib/new_relic/agent/instrumentation/redis.rb
|
473
509
|
- lib/new_relic/agent/instrumentation/redis/chain.rb
|
510
|
+
- lib/new_relic/agent/instrumentation/redis/cluster_middleware.rb
|
474
511
|
- lib/new_relic/agent/instrumentation/redis/constants.rb
|
475
512
|
- lib/new_relic/agent/instrumentation/redis/instrumentation.rb
|
476
513
|
- lib/new_relic/agent/instrumentation/redis/middleware.rb
|
@@ -641,6 +678,7 @@ files:
|
|
641
678
|
- lib/new_relic/control/instance_methods.rb
|
642
679
|
- lib/new_relic/control/instrumentation.rb
|
643
680
|
- lib/new_relic/control/private_instance_methods.rb
|
681
|
+
- lib/new_relic/control/security_interface.rb
|
644
682
|
- lib/new_relic/control/server_methods.rb
|
645
683
|
- lib/new_relic/delayed_job_injection.rb
|
646
684
|
- lib/new_relic/dependency_detection.rb
|
@@ -671,6 +709,7 @@ files:
|
|
671
709
|
- lib/tasks/bump_version.rake
|
672
710
|
- lib/tasks/config.rake
|
673
711
|
- lib/tasks/coverage_report.rake
|
712
|
+
- lib/tasks/gha.rake
|
674
713
|
- lib/tasks/helpers/config.html.erb
|
675
714
|
- lib/tasks/helpers/config.text.erb
|
676
715
|
- lib/tasks/helpers/format.rb
|
@@ -723,7 +762,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
723
762
|
- !ruby/object:Gem::Version
|
724
763
|
version: 1.3.1
|
725
764
|
requirements: []
|
726
|
-
rubygems_version: 3.5.
|
765
|
+
rubygems_version: 3.5.11
|
727
766
|
signing_key:
|
728
767
|
specification_version: 4
|
729
768
|
summary: New Relic Ruby Agent
|