newrelic_rpm 9.19.0 → 9.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +38 -0
  3. data/lib/new_relic/agent/configuration/default_source.rb +85 -85
  4. data/lib/new_relic/agent/configuration/manager.rb +5 -2
  5. data/lib/new_relic/agent/configuration/yaml_source.rb +2 -2
  6. data/lib/new_relic/agent/database.rb +1 -1
  7. data/lib/new_relic/agent/database_adapter.rb +1 -1
  8. data/lib/new_relic/agent/datastores/redis.rb +1 -1
  9. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +1 -1
  10. data/lib/new_relic/agent/distributed_tracing.rb +2 -0
  11. data/lib/new_relic/agent/external.rb +2 -0
  12. data/lib/new_relic/agent/instrumentation/action_dispatch.rb +1 -1
  13. data/lib/new_relic/agent/instrumentation/action_dispatch_subscriber.rb +1 -1
  14. data/lib/new_relic/agent/instrumentation/action_mailbox.rb +1 -1
  15. data/lib/new_relic/agent/instrumentation/action_mailer.rb +1 -1
  16. data/lib/new_relic/agent/instrumentation/active_job.rb +1 -1
  17. data/lib/new_relic/agent/instrumentation/active_record.rb +6 -4
  18. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +2 -2
  19. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +11 -9
  20. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +2 -2
  21. data/lib/new_relic/agent/instrumentation/async_http.rb +1 -1
  22. data/lib/new_relic/agent/instrumentation/aws_sdk_kinesis/instrumentation.rb +1 -1
  23. data/lib/new_relic/agent/instrumentation/concurrent_ruby.rb +1 -1
  24. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +4 -0
  25. data/lib/new_relic/agent/instrumentation/curb.rb +1 -1
  26. data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +1 -2
  27. data/lib/new_relic/agent/instrumentation/elasticsearch.rb +1 -1
  28. data/lib/new_relic/agent/instrumentation/ethon.rb +1 -1
  29. data/lib/new_relic/agent/instrumentation/excon.rb +1 -1
  30. data/lib/new_relic/agent/instrumentation/fiber/chain.rb +1 -1
  31. data/lib/new_relic/agent/instrumentation/fiber/prepend.rb +1 -1
  32. data/lib/new_relic/agent/instrumentation/httpclient.rb +1 -4
  33. data/lib/new_relic/agent/instrumentation/httpx/instrumentation.rb +1 -1
  34. data/lib/new_relic/agent/instrumentation/httpx.rb +1 -1
  35. data/lib/new_relic/agent/instrumentation/logstasher.rb +1 -1
  36. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +1 -1
  37. data/lib/new_relic/agent/instrumentation/memcache/helper.rb +2 -2
  38. data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +1 -1
  39. data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +1 -1
  40. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +1 -1
  41. data/lib/new_relic/agent/instrumentation/net_http.rb +2 -1
  42. data/lib/new_relic/agent/instrumentation/rake.rb +1 -1
  43. data/lib/new_relic/agent/instrumentation/rdkafka/chain.rb +2 -2
  44. data/lib/new_relic/agent/instrumentation/rdkafka/prepend.rb +2 -2
  45. data/lib/new_relic/agent/instrumentation/redis/constants.rb +2 -2
  46. data/lib/new_relic/agent/instrumentation/resque.rb +2 -2
  47. data/lib/new_relic/agent/instrumentation/roda.rb +1 -1
  48. data/lib/new_relic/agent/instrumentation/ruby_kafka/prepend.rb +1 -1
  49. data/lib/new_relic/agent/instrumentation/ruby_openai.rb +2 -2
  50. data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +1 -1
  51. data/lib/new_relic/agent/instrumentation/stripe.rb +1 -1
  52. data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +2 -2
  53. data/lib/new_relic/agent/llm/chat_completion_summary.rb +1 -1
  54. data/lib/new_relic/agent/llm/embedding.rb +1 -1
  55. data/lib/new_relic/agent/local_log_decorator.rb +1 -1
  56. data/lib/new_relic/agent/logging.rb +1 -1
  57. data/lib/new_relic/agent/messaging.rb +5 -0
  58. data/lib/new_relic/agent/method_tracer.rb +3 -0
  59. data/lib/new_relic/agent/monitors/inbound_request_monitor.rb +1 -1
  60. data/lib/new_relic/agent/monitors/synthetics_monitor.rb +1 -1
  61. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +2 -2
  62. data/lib/new_relic/agent/opentelemetry/context/propagation/trace_propagator.rb +66 -0
  63. data/lib/new_relic/agent/opentelemetry/context/propagation.rb +15 -0
  64. data/lib/new_relic/agent/opentelemetry/context.rb +13 -0
  65. data/lib/new_relic/agent/opentelemetry/trace/span.rb +15 -7
  66. data/lib/new_relic/agent/opentelemetry/trace/tracer.rb +106 -15
  67. data/lib/new_relic/agent/opentelemetry/transaction_patch.rb +69 -0
  68. data/lib/new_relic/agent/opentelemetry_bridge.rb +7 -1
  69. data/lib/new_relic/agent/parameter_filtering.rb +1 -1
  70. data/lib/new_relic/agent/samplers/cpu_sampler.rb +1 -1
  71. data/lib/new_relic/agent/samplers/memory_sampler.rb +1 -1
  72. data/lib/new_relic/agent/span_event_primitive.rb +5 -0
  73. data/lib/new_relic/agent/tracer.rb +1 -1
  74. data/lib/new_relic/agent/transaction/datastore_segment.rb +1 -1
  75. data/lib/new_relic/agent/transaction/distributed_tracer.rb +3 -3
  76. data/lib/new_relic/agent/transaction/message_broker_segment.rb +1 -1
  77. data/lib/new_relic/agent/transaction/trace_context.rb +4 -4
  78. data/lib/new_relic/agent/transaction_time_aggregator.rb +1 -1
  79. data/lib/new_relic/agent/utilization/ecs.rb +22 -0
  80. data/lib/new_relic/agent/utilization/ecs_v4.rb +22 -0
  81. data/lib/new_relic/agent/utilization_data.rb +25 -0
  82. data/lib/new_relic/agent/vm/c_ruby_vm.rb +3 -3
  83. data/lib/new_relic/agent.rb +28 -0
  84. data/lib/new_relic/constants.rb +1 -0
  85. data/lib/new_relic/control/instrumentation.rb +1 -1
  86. data/lib/new_relic/dependency_detection.rb +0 -1
  87. data/lib/new_relic/helper.rb +7 -0
  88. data/lib/new_relic/version.rb +1 -1
  89. data/lib/sequel/extensions/new_relic_instrumentation.rb +1 -1
  90. data/lib/tasks/helpers/newrelicyml.rb +2 -0
  91. data/newrelic.yml +14 -14
  92. data/newrelic_rpm.gemspec +1 -1
  93. metadata +11 -6
@@ -293,6 +293,7 @@ module NewRelic
293
293
  #
294
294
  # This method is safe to use from any thread.
295
295
  #
296
+ # @!scope class
296
297
  # @api public
297
298
  def record_metric(metric_name, value) # THREAD_LOCAL_ACCESS
298
299
  record_api_supportability_metric(:record_metric)
@@ -333,6 +334,7 @@ module NewRelic
333
334
  #
334
335
  # This method is safe to use from any thread.
335
336
  #
337
+ # @!scope class
336
338
  # @api public
337
339
  #
338
340
  def increment_metric(metric_name, amount = 1) # THREAD_LOCAL_ACCESS
@@ -360,6 +362,7 @@ module NewRelic
360
362
  #
361
363
  # Return the new block or the existing filter Proc if no block is passed.
362
364
  #
365
+ # @!scope class
363
366
  # @api public
364
367
  #
365
368
  def ignore_error_filter(&block)
@@ -398,6 +401,7 @@ module NewRelic
398
401
  # them if you are calling <code>notice_error</code> outside a
399
402
  # transaction.
400
403
  #
404
+ # @!scope class
401
405
  # @api public
402
406
  #
403
407
  def notice_error(exception, options = {})
@@ -435,6 +439,7 @@ module NewRelic
435
439
  # :'error.expected' => Whether (true) or not (false) the error was expected
436
440
  # :options => The options hash passed to `NewRelic::Agent.notice_error`
437
441
  #
442
+ # @!scope class
438
443
  # @api public
439
444
  #
440
445
  def set_error_group_callback(callback_proc)
@@ -474,6 +479,7 @@ module NewRelic
474
479
  # may be strings, symbols, numeric values or
475
480
  # booleans.
476
481
  #
482
+ # @!scope class
477
483
  # @api public
478
484
  #
479
485
  def record_custom_event(event_type, event_attrs)
@@ -506,6 +512,7 @@ module NewRelic
506
512
  # @param [optional, Hash] Set of key-value pairs to store any other
507
513
  # desired data to submit with the feedback event.
508
514
  #
515
+ # @!scope class
509
516
  # @api public
510
517
  #
511
518
  def record_llm_feedback_event(trace_id:,
@@ -559,6 +566,7 @@ module NewRelic
559
566
  # :model => [String] The name of the LLM model
560
567
  # :content => [String] The message content or prompt
561
568
  #
569
+ # @!scope class
562
570
  # @api public
563
571
  #
564
572
  def set_llm_token_count_callback(callback_proc)
@@ -591,6 +599,7 @@ module NewRelic
591
599
  # file logger. The setting for the newrelic.yml section to use
592
600
  # (ie, RAILS_ENV) can be overridden with an :env argument.
593
601
  #
602
+ # @!scope class
594
603
  # @api public
595
604
  #
596
605
  def manual_start(options = {})
@@ -623,6 +632,7 @@ module NewRelic
623
632
  # connection, this tells me to only try it once so this method returns
624
633
  # quickly if there is some kind of latency with the server.
625
634
  #
635
+ # @!scope class
626
636
  # @api public
627
637
  #
628
638
  def after_fork(options = {})
@@ -636,6 +646,7 @@ module NewRelic
636
646
  #
637
647
  # @param options [Hash] Unused options Hash, for back compatibility only
638
648
  #
649
+ # @!scope class
639
650
  # @api public
640
651
  #
641
652
  def shutdown(options = {})
@@ -646,6 +657,7 @@ module NewRelic
646
657
  # Clear out any data the agent has buffered but has not yet transmitted
647
658
  # to the collector.
648
659
  #
660
+ # @!scope class
649
661
  # @api public
650
662
  def drop_buffered_data
651
663
  # the following line needs else branch coverage
@@ -660,6 +672,7 @@ module NewRelic
660
672
  # register instrumentation than just loading the files directly,
661
673
  # although that probably also works.
662
674
  #
675
+ # @!scope class
663
676
  # @api public
664
677
  #
665
678
  def add_instrumentation(file_pattern)
@@ -669,6 +682,7 @@ module NewRelic
669
682
 
670
683
  # Require agent testing helper methods
671
684
  #
685
+ # @!scope class
672
686
  # @api public
673
687
  def require_test_helper
674
688
  record_api_supportability_metric(:require_test_helper)
@@ -689,6 +703,7 @@ module NewRelic
689
703
  # my_obfuscator(sql)
690
704
  # end
691
705
  #
706
+ # @!scope class
692
707
  # @api public
693
708
  #
694
709
  def set_sql_obfuscator(type = :replace, &block)
@@ -704,6 +719,7 @@ module NewRelic
704
719
  # traced errors, transaction traces, Insights events, slow SQL traces,
705
720
  # or RUM injection will happen for this transaction.
706
721
  #
722
+ # @!scope class
707
723
  # @api public
708
724
  #
709
725
  def ignore_transaction
@@ -714,6 +730,7 @@ module NewRelic
714
730
  # This method disables the recording of Apdex metrics in the current
715
731
  # transaction.
716
732
  #
733
+ # @!scope class
717
734
  # @api public
718
735
  #
719
736
  def ignore_apdex
@@ -724,6 +741,7 @@ module NewRelic
724
741
  # This method disables browser monitoring javascript injection in the
725
742
  # current transaction.
726
743
  #
744
+ # @!scope class
727
745
  # @api public
728
746
  #
729
747
  def ignore_enduser
@@ -736,6 +754,7 @@ module NewRelic
736
754
  # track of the first entry point and turn on tracing again after
737
755
  # leaving that block. This uses the thread local Tracer::State.
738
756
  #
757
+ # @!scope class
739
758
  # @api public
740
759
  #
741
760
  def disable_all_tracing
@@ -760,6 +779,7 @@ module NewRelic
760
779
  # ...
761
780
  # end
762
781
  #
782
+ # @!scope class
763
783
  # @api public
764
784
  #
765
785
  def disable_sql_recording
@@ -798,6 +818,7 @@ module NewRelic
798
818
  # may be strings, symbols, numeric values or
799
819
  # booleans.
800
820
  #
821
+ # @!scope class
801
822
  # @api public
802
823
  #
803
824
  def add_custom_attributes(params) # THREAD_LOCAL_ACCESS
@@ -838,6 +859,7 @@ module NewRelic
838
859
  # booleans.
839
860
  #
840
861
  # @see https://docs.newrelic.com/docs/using-new-relic/welcome-new-relic/get-started/glossary#span
862
+ # @!scope class
841
863
  # @api public
842
864
  def add_custom_span_attributes(params)
843
865
  record_api_supportability_metric(:add_custom_span_attributes)
@@ -879,6 +901,7 @@ module NewRelic
879
901
  #
880
902
  # Attribute pairs with empty or nil contents
881
903
  # will be dropped.
904
+ # @!scope class
882
905
  # @api public
883
906
  def add_custom_log_attributes(params)
884
907
  record_api_supportability_metric(:add_custom_log_attributes)
@@ -894,6 +917,7 @@ module NewRelic
894
917
  #
895
918
  # @param [String] user_id The user id to add to the current transaction attributes
896
919
  #
920
+ # @!scope class
897
921
  # @api public
898
922
  def set_user_id(user_id)
899
923
  record_api_supportability_metric(:set_user_id)
@@ -937,6 +961,7 @@ module NewRelic
937
961
  #
938
962
  # The default category is the same as the running transaction.
939
963
  #
964
+ # @!scope class
940
965
  # @api public
941
966
  #
942
967
  def set_transaction_name(name, options = {})
@@ -947,6 +972,7 @@ module NewRelic
947
972
  # Get the name of the current running transaction. This is useful if you
948
973
  # want to modify the default name.
949
974
  #
975
+ # @!scope class
950
976
  # @api public
951
977
  #
952
978
  def get_transaction_name # THREAD_LOCAL_ACCESS
@@ -1018,6 +1044,7 @@ module NewRelic
1018
1044
  # * entity.guid - The guid of the current entity.
1019
1045
  # * hostname - The fully qualified hostname.
1020
1046
  #
1047
+ # @!scope class
1021
1048
  # @api public
1022
1049
  def linking_metadata
1023
1050
  metadata = Hash.new
@@ -1044,6 +1071,7 @@ module NewRelic
1044
1071
  #
1045
1072
  # @param [String] nonce The nonce to use in the javascript tag for browser instrumentation
1046
1073
  #
1074
+ # @!scope class
1047
1075
  # @api public
1048
1076
  #
1049
1077
  def browser_timing_header(nonce = nil)
@@ -16,6 +16,7 @@ module NewRelic
16
16
  HTTP = 'HTTP'
17
17
  HTTPS = 'HTTPS'
18
18
  UNKNOWN = 'Unknown'
19
+ UNKNOWN_LOWER = 'unknown'
19
20
 
20
21
  FORMAT_NON_RACK = 0
21
22
  FORMAT_RACK = 1
@@ -68,7 +68,7 @@ module NewRelic
68
68
  end
69
69
 
70
70
  def rails_32_deprecation
71
- return unless defined?(Rails::VERSION) && Gem::Version.new(Rails::VERSION::STRING) <= Gem::Version.new('3.2')
71
+ return unless defined?(Rails::VERSION) && NewRelic::Helper.version_satisfied?(Rails::VERSION::STRING, '<=', '3.2')
72
72
 
73
73
  deprecation_msg = 'The Ruby agent is dropping support for Rails 3.2 ' \
74
74
  'in a future major release. Please upgrade your Rails version to continue receiving support. ' \
@@ -179,7 +179,6 @@ module DependencyDetection
179
179
  # logs the resolved value during debug mode.
180
180
  def fetch_config_value(key)
181
181
  valid_value = valid_config_value(::NewRelic::Agent.config[key].to_s.to_sym)
182
- ::NewRelic::Agent.logger.debug("Using #{valid_value} configuration value for #{self.name} to configure instrumentation")
183
182
  return valid_value
184
183
  end
185
184
 
@@ -83,6 +83,13 @@ module NewRelic
83
83
  end
84
84
  end
85
85
 
86
+ def version_satisfied?(left, operator, right)
87
+ left = Gem::Version.new(left) unless left.is_a?(Gem::Version)
88
+ right = Gem::Version.new(right) unless right.is_a?(Gem::Version)
89
+
90
+ left.public_send(operator, right)
91
+ end
92
+
86
93
  # Bundler version 2.5.12 deprecated all_specs and added installed_specs.
87
94
  # To support newer Bundler versions, try to use installed_specs first,
88
95
  # then fall back to all_specs.
@@ -6,7 +6,7 @@
6
6
  module NewRelic
7
7
  module VERSION # :nodoc:
8
8
  MAJOR = 9
9
- MINOR = 19
9
+ MINOR = 20
10
10
  TINY = 0
11
11
 
12
12
  STRING = "#{MAJOR}.#{MINOR}.#{TINY}"
@@ -79,7 +79,7 @@ module Sequel
79
79
 
80
80
  THREAD_SAFE_CONNECTION_POOL_CLASSES = [
81
81
  (defined?(::Sequel::ThreadedConnectionPool) && ::Sequel::ThreadedConnectionPool),
82
- (defined?(::Sequel::TimedQueueConnectionPool) && RUBY_VERSION >= '3.2' && ::Sequel::TimedQueueConnectionPool)
82
+ (defined?(::Sequel::TimedQueueConnectionPool) && NewRelic::Helper.version_satisfied?(RUBY_VERSION, '>=', '3.2') && ::Sequel::TimedQueueConnectionPool)
83
83
  ].compact.freeze
84
84
 
85
85
  def explainer_for(sql)
@@ -152,6 +152,8 @@ module NewRelicYML
152
152
  end
153
153
 
154
154
  def self.format_description(description)
155
+ # remove all tab characters
156
+ description.delete!("\t")
155
157
  # remove leading and trailing whitespace
156
158
  description.strip!
157
159
  # wrap text after 80 characters, assuming we're at one tabstop's (two
data/newrelic.yml CHANGED
@@ -138,17 +138,17 @@ common: &default_settings
138
138
  # MyCompany module namespace:
139
139
  #
140
140
  # module MyCompany
141
- # class Image
142
- # def render_png
143
- # # code to render a PNG
144
- # end
145
- # end
141
+ # class Image
142
+ # def render_png
143
+ # # code to render a PNG
144
+ # end
145
+ # end
146
146
  #
147
- # class User
148
- # def self.notify
149
- # # code to notify users
150
- # end
151
- # end
147
+ # class User
148
+ # def self.notify
149
+ # # code to notify users
150
+ # end
151
+ # end
152
152
  # end
153
153
  #
154
154
  #
@@ -156,8 +156,8 @@ common: &default_settings
156
156
  # instrumentation for both of these methods like so:
157
157
  #
158
158
  # automatic_custom_instrumentation_method_list:
159
- # - MyCompany::Image#render_png
160
- # - MyCompany::User.notify
159
+ # - MyCompany::Image#render_png
160
+ # - MyCompany::User.notify
161
161
  #
162
162
  #
163
163
  # That configuration example uses YAML array syntax to specify both methods.
@@ -342,9 +342,9 @@ common: &default_settings
342
342
  # your newrelic.yml configuration file:
343
343
  #
344
344
  # cross_application_tracer:
345
- # enabled: true
345
+ # enabled: true
346
346
  # distributed_tracing:
347
- # enabled: false
347
+ # enabled: false
348
348
  # disable_sinatra_auto_middleware: false
349
349
 
350
350
  # If true, disables view instrumentation.
data/newrelic_rpm.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.version = NewRelic::VERSION::STRING
11
11
  s.required_ruby_version = '>= 2.4.0'
12
12
  s.required_rubygems_version = Gem::Requirement.new('> 1.3.1') if s.respond_to?(:required_rubygems_version=)
13
- s.authors = ['Tanna McClure', 'Kayla Reopelle', 'James Bunch', 'Hannah Ramadan']
13
+ s.authors = ['Tanna McClure', 'Kayla Reopelle', 'Hannah Ramadan']
14
14
  s.licenses = ['Apache-2.0']
15
15
  s.description = <<~EOS
16
16
  New Relic is a performance management system, developed by New Relic,
metadata CHANGED
@@ -1,16 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: newrelic_rpm
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.19.0
4
+ version: 9.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tanna McClure
8
8
  - Kayla Reopelle
9
- - James Bunch
10
9
  - Hannah Ramadan
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2025-04-30 00:00:00.000000000 Z
12
+ date: 1980-01-02 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: bundler
@@ -245,15 +244,15 @@ description: |
245
244
  https://github.com/newrelic/newrelic-ruby-agent/
246
245
  email: support@newrelic.com
247
246
  executables:
248
- - newrelic_rpm
249
247
  - newrelic
248
+ - newrelic_rpm
250
249
  - nrdebug
251
250
  extensions: []
252
251
  extra_rdoc_files:
253
252
  - CHANGELOG.md
253
+ - CONTRIBUTING.md
254
254
  - LICENSE
255
255
  - README.md
256
- - CONTRIBUTING.md
257
256
  - newrelic.yml
258
257
  files:
259
258
  - ".build_ignore"
@@ -614,10 +613,14 @@ files:
614
613
  - lib/new_relic/agent/noticeable_error.rb
615
614
  - lib/new_relic/agent/null_logger.rb
616
615
  - lib/new_relic/agent/obfuscator.rb
616
+ - lib/new_relic/agent/opentelemetry/context.rb
617
+ - lib/new_relic/agent/opentelemetry/context/propagation.rb
618
+ - lib/new_relic/agent/opentelemetry/context/propagation/trace_propagator.rb
617
619
  - lib/new_relic/agent/opentelemetry/trace.rb
618
620
  - lib/new_relic/agent/opentelemetry/trace/span.rb
619
621
  - lib/new_relic/agent/opentelemetry/trace/tracer.rb
620
622
  - lib/new_relic/agent/opentelemetry/trace/tracer_provider.rb
623
+ - lib/new_relic/agent/opentelemetry/transaction_patch.rb
621
624
  - lib/new_relic/agent/opentelemetry_bridge.rb
622
625
  - lib/new_relic/agent/parameter_filtering.rb
623
626
  - lib/new_relic/agent/payload_metric_mapping.rb
@@ -679,6 +682,8 @@ files:
679
682
  - lib/new_relic/agent/transaction_time_aggregator.rb
680
683
  - lib/new_relic/agent/utilization/aws.rb
681
684
  - lib/new_relic/agent/utilization/azure.rb
685
+ - lib/new_relic/agent/utilization/ecs.rb
686
+ - lib/new_relic/agent/utilization/ecs_v4.rb
682
687
  - lib/new_relic/agent/utilization/gcp.rb
683
688
  - lib/new_relic/agent/utilization/pcf.rb
684
689
  - lib/new_relic/agent/utilization/vendor.rb
@@ -782,7 +787,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
782
787
  - !ruby/object:Gem::Version
783
788
  version: 1.3.1
784
789
  requirements: []
785
- rubygems_version: 3.6.2
790
+ rubygems_version: 3.6.7
786
791
  specification_version: 4
787
792
  summary: New Relic Ruby Agent
788
793
  test_files: []