newrelic_rpm 8.7.0 → 8.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +4 -0
- data/.rubocop.yml +68 -189
- data/.rubocop_todo.yml +52 -0
- data/.simplecov +15 -0
- data/.snyk +11 -0
- data/.yardopts +1 -0
- data/Brewfile +1 -0
- data/CHANGELOG.md +181 -23
- data/CONTRIBUTING.md +1 -1
- data/Gemfile +0 -1
- data/Guardfile +1 -0
- data/README.md +1 -1
- data/Rakefile +13 -20
- data/Thorfile +5 -0
- data/bin/newrelic +2 -1
- data/bin/newrelic_cmd +1 -0
- data/bin/nrdebug +66 -45
- data/config.dot +5 -5
- data/init.rb +4 -4
- data/install.rb +2 -2
- data/lib/new_relic/agent/adaptive_sampler.rb +4 -4
- data/lib/new_relic/agent/agent/shutdown.rb +34 -0
- data/lib/new_relic/agent/agent/special_startup.rb +70 -0
- data/lib/new_relic/agent/agent/start_worker_thread.rb +163 -0
- data/lib/new_relic/agent/agent/startup.rb +196 -0
- data/lib/new_relic/agent/agent.rb +134 -534
- data/lib/new_relic/agent/agent_logger.rb +8 -10
- data/lib/new_relic/agent/attribute_filter.rb +40 -21
- data/lib/new_relic/agent/attribute_processing.rb +7 -7
- data/lib/new_relic/agent/attributes.rb +2 -2
- data/lib/new_relic/agent/audit_logger.rb +3 -3
- data/lib/new_relic/agent/autostart.rb +2 -2
- data/lib/new_relic/agent/chained_call.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command_router.rb +8 -8
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +1 -1
- data/lib/new_relic/agent/configuration/default_source.rb +105 -41
- data/lib/new_relic/agent/configuration/dotted_hash.rb +2 -2
- data/lib/new_relic/agent/configuration/environment_source.rb +5 -5
- data/lib/new_relic/agent/configuration/event_harvest_config.rb +1 -1
- data/lib/new_relic/agent/configuration/high_security_source.rb +1 -1
- data/lib/new_relic/agent/configuration/manager.rb +5 -5
- data/lib/new_relic/agent/configuration/manual_source.rb +1 -1
- data/lib/new_relic/agent/configuration/mask_defaults.rb +3 -3
- data/lib/new_relic/agent/configuration/security_policy_source.rb +7 -4
- data/lib/new_relic/agent/configuration/server_source.rb +7 -7
- data/lib/new_relic/agent/configuration/yaml_source.rb +6 -4
- data/lib/new_relic/agent/configuration.rb +1 -1
- data/lib/new_relic/agent/connect/request_builder.rb +3 -3
- data/lib/new_relic/agent/connect/response_handler.rb +5 -5
- data/lib/new_relic/agent/custom_event_aggregator.rb +5 -5
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +1 -1
- data/lib/new_relic/agent/database/obfuscator.rb +2 -2
- data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +1 -1
- data/lib/new_relic/agent/database.rb +21 -21
- data/lib/new_relic/agent/database_adapter.rb +1 -1
- data/lib/new_relic/agent/datastores/metric_helper.rb +12 -13
- data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +4 -3
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +2 -4
- data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +2 -2
- data/lib/new_relic/agent/datastores/mongo.rb +1 -1
- data/lib/new_relic/agent/datastores/redis.rb +3 -3
- data/lib/new_relic/agent/datastores.rb +4 -4
- data/lib/new_relic/agent/deprecator.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +16 -17
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +9 -10
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +18 -19
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +8 -10
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +2 -3
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +40 -40
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +16 -15
- data/lib/new_relic/agent/distributed_tracing.rb +17 -18
- data/lib/new_relic/agent/encoding_normalizer.rb +1 -1
- data/lib/new_relic/agent/error_collector.rb +6 -5
- data/lib/new_relic/agent/error_event_aggregator.rb +3 -4
- data/lib/new_relic/agent/error_filter.rb +5 -5
- data/lib/new_relic/agent/error_trace_aggregator.rb +3 -3
- data/lib/new_relic/agent/event_aggregator.rb +20 -20
- data/lib/new_relic/agent/event_buffer.rb +1 -1
- data/lib/new_relic/agent/event_listener.rb +1 -1
- data/lib/new_relic/agent/event_loop.rb +9 -9
- data/lib/new_relic/agent/external.rb +10 -10
- data/lib/new_relic/agent/guid_generator.rb +2 -2
- data/lib/new_relic/agent/harvester.rb +1 -1
- data/lib/new_relic/agent/heap.rb +5 -5
- data/lib/new_relic/agent/hostname.rb +4 -3
- data/lib/new_relic/agent/http_clients/abstract.rb +1 -2
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +5 -6
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +4 -5
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +2 -3
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +1 -2
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +0 -1
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +1 -2
- data/lib/new_relic/agent/http_clients/uri_util.rb +1 -2
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +6 -5
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +31 -23
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +7 -6
- data/lib/new_relic/agent/instrumentation/active_job.rb +11 -4
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +4 -3
- data/lib/new_relic/agent/instrumentation/active_record.rb +9 -9
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +37 -21
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +3 -3
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +21 -11
- data/lib/new_relic/agent/instrumentation/active_storage.rb +2 -2
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +16 -15
- data/lib/new_relic/agent/instrumentation/active_support_logger/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_support_logger.rb +2 -2
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +2 -2
- data/lib/new_relic/agent/instrumentation/authlogic.rb +2 -2
- data/lib/new_relic/agent/instrumentation/bunny/chain.rb +10 -10
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +10 -11
- data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +4 -4
- data/lib/new_relic/agent/instrumentation/bunny.rb +1 -2
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +25 -17
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +21 -22
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +19 -16
- data/lib/new_relic/agent/instrumentation/curb/prepend.rb +2 -3
- data/lib/new_relic/agent/instrumentation/curb.rb +2 -2
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +44 -44
- data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +1 -2
- data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +2 -3
- data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +1 -2
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/excon/middleware.rb +3 -3
- data/lib/new_relic/agent/instrumentation/excon.rb +2 -2
- data/lib/new_relic/agent/instrumentation/grape/chain.rb +6 -6
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +5 -5
- data/lib/new_relic/agent/instrumentation/grape/prepend.rb +4 -4
- data/lib/new_relic/agent/instrumentation/grape.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +97 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +89 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +111 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +30 -0
- data/lib/new_relic/agent/instrumentation/grpc/helper.rb +32 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/chain.rb +69 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +134 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb +35 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/rpc_server_prepend.rb +26 -0
- data/lib/new_relic/agent/instrumentation/grpc_client.rb +23 -0
- data/lib/new_relic/agent/instrumentation/grpc_server.rb +25 -0
- data/lib/new_relic/agent/instrumentation/httpclient/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +6 -6
- data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/httpclient.rb +2 -2
- data/lib/new_relic/agent/instrumentation/httprb/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +4 -4
- data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/httprb.rb +2 -2
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +2 -2
- data/lib/new_relic/agent/instrumentation/logger/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +5 -1
- data/lib/new_relic/agent/instrumentation/logger/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/logger.rb +2 -2
- data/lib/new_relic/agent/instrumentation/memcache/chain.rb +2 -3
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +24 -17
- data/lib/new_relic/agent/instrumentation/memcache/helper.rb +8 -9
- data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +17 -15
- data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +21 -15
- data/lib/new_relic/agent/instrumentation/memcache.rb +5 -6
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +2 -2
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +0 -1
- data/lib/new_relic/agent/instrumentation/mongo.rb +2 -2
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +15 -14
- data/lib/new_relic/agent/instrumentation/net_http/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +5 -5
- data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/net_http.rb +2 -2
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +6 -6
- data/lib/new_relic/agent/instrumentation/padrino/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/padrino.rb +2 -2
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/queue_time.rb +1 -2
- data/lib/new_relic/agent/instrumentation/rack/chain.rb +12 -12
- data/lib/new_relic/agent/instrumentation/rack/helpers.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +7 -7
- data/lib/new_relic/agent/instrumentation/rack/prepend.rb +4 -4
- data/lib/new_relic/agent/instrumentation/rack.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +6 -6
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +3 -2
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +3 -2
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +3 -2
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/rake/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +6 -2
- data/lib/new_relic/agent/instrumentation/rake/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rake.rb +3 -3
- data/lib/new_relic/agent/instrumentation/redis/chain.rb +3 -4
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +5 -6
- data/lib/new_relic/agent/instrumentation/redis/prepend.rb +3 -4
- data/lib/new_relic/agent/instrumentation/redis.rb +2 -2
- data/lib/new_relic/agent/instrumentation/resque/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +0 -1
- data/lib/new_relic/agent/instrumentation/resque/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/resque.rb +3 -3
- data/lib/new_relic/agent/instrumentation/sequel.rb +8 -8
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +6 -5
- data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +2 -2
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +2 -2
- data/lib/new_relic/agent/instrumentation/sinatra.rb +2 -2
- data/lib/new_relic/agent/instrumentation/sunspot.rb +4 -4
- data/lib/new_relic/agent/instrumentation/thread/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/thread/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/thread.rb +2 -2
- data/lib/new_relic/agent/instrumentation/tilt/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/tilt.rb +1 -1
- data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +8 -8
- data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/typhoeus.rb +2 -2
- data/lib/new_relic/agent/instrumentation.rb +1 -1
- data/lib/new_relic/agent/internal_agent_error.rb +1 -1
- data/lib/new_relic/agent/javascript_instrumentor.rb +8 -8
- data/lib/new_relic/agent/linking_metadata.rb +2 -3
- data/lib/new_relic/agent/local_log_decorator.rb +0 -1
- data/lib/new_relic/agent/log_event_aggregator.rb +7 -7
- data/lib/new_relic/agent/log_once.rb +1 -1
- data/lib/new_relic/agent/log_priority.rb +1 -1
- data/lib/new_relic/agent/logging.rb +13 -13
- data/lib/new_relic/agent/memory_logger.rb +1 -1
- data/lib/new_relic/agent/messaging.rb +19 -20
- data/lib/new_relic/agent/method_tracer.rb +15 -10
- data/lib/new_relic/agent/method_tracer_helpers.rb +83 -1
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +4 -4
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +3 -3
- data/lib/new_relic/agent/monitors/inbound_request_monitor.rb +1 -1
- data/lib/new_relic/agent/monitors/synthetics_monitor.rb +2 -2
- data/lib/new_relic/agent/monitors.rb +5 -5
- data/lib/new_relic/agent/new_relic_service/encoders.rb +2 -2
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +4 -4
- data/lib/new_relic/agent/new_relic_service/marshaller.rb +1 -1
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +1 -1
- data/lib/new_relic/agent/new_relic_service.rb +214 -166
- data/lib/new_relic/agent/{noticible_error.rb → noticeable_error.rb} +2 -3
- data/lib/new_relic/agent/null_logger.rb +1 -1
- data/lib/new_relic/agent/obfuscator.rb +3 -3
- data/lib/new_relic/agent/parameter_filtering.rb +1 -1
- data/lib/new_relic/agent/payload_metric_mapping.rb +1 -1
- data/lib/new_relic/agent/pipe_channel_manager.rb +10 -5
- data/lib/new_relic/agent/pipe_service.rb +2 -2
- data/lib/new_relic/agent/prepend_supportability.rb +2 -2
- data/lib/new_relic/agent/priority_sampled_buffer.rb +4 -4
- data/lib/new_relic/agent/range_extensions.rb +8 -28
- data/lib/new_relic/agent/rules_engine/replacement_rule.rb +2 -2
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +1 -1
- data/lib/new_relic/agent/rules_engine.rb +2 -2
- data/lib/new_relic/agent/sampler.rb +1 -1
- data/lib/new_relic/agent/sampler_collection.rb +1 -1
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +2 -2
- data/lib/new_relic/agent/samplers/memory_sampler.rb +10 -10
- data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/vm_sampler.rb +3 -1
- data/lib/new_relic/agent/span_event_aggregator.rb +2 -2
- data/lib/new_relic/agent/span_event_primitive.rb +24 -19
- data/lib/new_relic/agent/sql_sampler.rb +8 -8
- data/lib/new_relic/agent/stats.rb +15 -4
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +1 -2
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +4 -4
- data/lib/new_relic/agent/stats_engine.rb +1 -1
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +6 -6
- data/lib/new_relic/agent/system_info.rb +68 -53
- data/lib/new_relic/agent/threading/agent_thread.rb +13 -9
- data/lib/new_relic/agent/threading/backtrace_node.rb +6 -4
- data/lib/new_relic/agent/threading/backtrace_service.rb +1 -1
- data/lib/new_relic/agent/threading/thread_profile.rb +4 -4
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
- data/lib/new_relic/agent/tracer.rb +19 -17
- data/lib/new_relic/agent/transaction/abstract_segment.rb +93 -34
- data/lib/new_relic/agent/transaction/datastore_segment.rb +12 -12
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +52 -48
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +21 -22
- data/lib/new_relic/agent/transaction/external_request_segment.rb +37 -29
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +6 -6
- data/lib/new_relic/agent/transaction/request_attributes.rb +29 -29
- data/lib/new_relic/agent/transaction/segment.rb +8 -8
- data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/trace.rb +3 -3
- data/lib/new_relic/agent/transaction/trace_builder.rb +10 -10
- data/lib/new_relic/agent/transaction/trace_context.rb +22 -20
- data/lib/new_relic/agent/transaction/trace_node.rb +9 -9
- data/lib/new_relic/agent/transaction/tracing.rb +7 -7
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -2
- data/lib/new_relic/agent/transaction.rb +35 -31
- data/lib/new_relic/agent/transaction_error_primitive.rb +9 -9
- data/lib/new_relic/agent/transaction_event_aggregator.rb +5 -5
- data/lib/new_relic/agent/transaction_event_primitive.rb +3 -4
- data/lib/new_relic/agent/transaction_event_recorder.rb +15 -14
- data/lib/new_relic/agent/transaction_metrics.rb +4 -4
- data/lib/new_relic/agent/transaction_sampler.rb +5 -5
- data/lib/new_relic/agent/transaction_time_aggregator.rb +14 -14
- data/lib/new_relic/agent/utilization/aws.rb +4 -4
- data/lib/new_relic/agent/utilization/azure.rb +2 -2
- data/lib/new_relic/agent/utilization/gcp.rb +7 -7
- data/lib/new_relic/agent/utilization/pcf.rb +4 -4
- data/lib/new_relic/agent/utilization/vendor.rb +28 -28
- data/lib/new_relic/agent/utilization_data.rb +1 -1
- data/lib/new_relic/agent/vm/jruby_vm.rb +1 -1
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
- data/lib/new_relic/agent/vm/mri_vm.rb +36 -23
- data/lib/new_relic/agent/vm/snapshot.rb +2 -2
- data/lib/new_relic/agent/vm.rb +1 -1
- data/lib/new_relic/agent/worker_loop.rb +2 -2
- data/lib/new_relic/agent.rb +27 -27
- data/lib/new_relic/cli/command.rb +6 -6
- data/lib/new_relic/cli/commands/deployments.rb +81 -29
- data/lib/new_relic/cli/commands/install.rb +6 -6
- data/lib/new_relic/coerce.rb +5 -6
- data/lib/new_relic/collection_helper.rb +4 -4
- data/lib/new_relic/constants.rb +0 -1
- data/lib/new_relic/control/class_methods.rb +1 -1
- data/lib/new_relic/control/frameworks/external.rb +1 -1
- data/lib/new_relic/control/frameworks/rails.rb +3 -3
- data/lib/new_relic/control/frameworks/rails3.rb +1 -1
- data/lib/new_relic/control/frameworks/rails4.rb +1 -1
- data/lib/new_relic/control/frameworks/rails_notifications.rb +1 -1
- data/lib/new_relic/control/frameworks/ruby.rb +1 -1
- data/lib/new_relic/control/frameworks/sinatra.rb +1 -1
- data/lib/new_relic/control/frameworks.rb +1 -1
- data/lib/new_relic/control/instance_methods.rb +20 -42
- data/lib/new_relic/control/instrumentation.rb +7 -7
- data/lib/new_relic/control/private_instance_methods.rb +48 -0
- data/lib/new_relic/control/server_methods.rb +2 -2
- data/lib/new_relic/control.rb +1 -1
- data/lib/new_relic/delayed_job_injection.rb +1 -1
- data/lib/new_relic/dependency_detection.rb +23 -22
- data/lib/new_relic/environment_report.rb +24 -14
- data/lib/new_relic/helper.rb +5 -5
- data/lib/new_relic/language_support.rb +8 -3
- data/lib/new_relic/latest_changes.rb +4 -4
- data/lib/new_relic/local_environment.rb +9 -11
- data/lib/new_relic/metric_data.rb +30 -24
- data/lib/new_relic/metric_spec.rb +3 -3
- data/lib/new_relic/noticed_error.rb +3 -6
- data/lib/new_relic/rack/agent_hooks.rb +1 -1
- data/lib/new_relic/rack/agent_middleware.rb +1 -1
- data/lib/new_relic/rack/browser_monitoring.rb +132 -123
- data/lib/new_relic/rack.rb +1 -1
- data/lib/new_relic/recipes/capistrano3.rb +3 -59
- data/lib/new_relic/recipes/capistrano_legacy.rb +13 -13
- data/lib/new_relic/recipes/helpers/send_deployment.rb +69 -0
- data/lib/new_relic/recipes.rb +1 -1
- data/lib/new_relic/supportability_helper.rb +6 -6
- data/lib/new_relic/traced_thread.rb +5 -7
- data/lib/new_relic/version.rb +2 -2
- data/lib/newrelic_rpm.rb +1 -1
- data/lib/sequel/extensions/newrelic_instrumentation.rb +8 -8
- data/lib/sequel/plugins/newrelic_instrumentation.rb +1 -1
- data/lib/tasks/all.rb +1 -1
- data/lib/tasks/config.rake +8 -112
- data/lib/tasks/coverage_report.rake +28 -0
- data/lib/tasks/{config.html.erb → helpers/config.html.erb} +0 -0
- data/lib/tasks/{config.text.erb → helpers/config.text.erb} +0 -0
- data/lib/tasks/helpers/format.rb +120 -0
- data/lib/tasks/helpers/matches.rb +12 -0
- data/lib/tasks/helpers/prompt.rb +24 -0
- data/lib/tasks/helpers/removers.rb +33 -0
- data/lib/tasks/install.rake +4 -0
- data/lib/tasks/instrumentation_generator/README.md +63 -0
- data/lib/tasks/instrumentation_generator/TODO.md +33 -0
- data/lib/tasks/instrumentation_generator/instrumentation.thor +102 -0
- data/lib/tasks/instrumentation_generator/templates/Envfile.tt +9 -0
- data/lib/tasks/instrumentation_generator/templates/chain.tt +21 -0
- data/lib/tasks/instrumentation_generator/templates/chain_method.tt +7 -0
- data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +29 -0
- data/lib/tasks/instrumentation_generator/templates/instrumentation.tt +12 -0
- data/lib/tasks/instrumentation_generator/templates/instrumentation_method.tt +3 -0
- data/lib/tasks/instrumentation_generator/templates/newrelic.yml.tt +19 -0
- data/lib/tasks/instrumentation_generator/templates/prepend.tt +13 -0
- data/lib/tasks/instrumentation_generator/templates/prepend_method.tt +3 -0
- data/lib/tasks/instrumentation_generator/templates/test.tt +15 -0
- data/lib/tasks/multiverse.rake +4 -0
- data/lib/tasks/multiverse.rb +5 -30
- data/lib/tasks/newrelic.rb +1 -1
- data/lib/tasks/tests.rake +7 -8
- data/newrelic.yml +514 -483
- data/newrelic_rpm.gemspec +16 -21
- data/recipes/newrelic.rb +1 -1
- data/test/agent_helper.rb +125 -147
- metadata +82 -90
- data/bin/mongrel_rpm +0 -32
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
# This module powers the Busy calculation for the Capacity report in
|
6
6
|
# APM (https://rpm.newrelic.com/accounts/.../applications/.../optimize/capacity_analysis).
|
@@ -12,13 +12,13 @@
|
|
12
12
|
module NewRelic
|
13
13
|
module Agent
|
14
14
|
module TransactionTimeAggregator
|
15
|
-
TransactionStats = Struct.new
|
15
|
+
TransactionStats = Struct.new(:transaction_started_at, :elapsed_transaction_time)
|
16
16
|
|
17
17
|
@lock = Mutex.new
|
18
18
|
@harvest_cycle_started_at = Process.clock_gettime(Process::CLOCK_REALTIME)
|
19
19
|
|
20
20
|
@stats = Hash.new do |h, k|
|
21
|
-
h[k] = TransactionStats.new
|
21
|
+
h[k] = TransactionStats.new(nil, 0.0)
|
22
22
|
end
|
23
23
|
|
24
24
|
def reset!(timestamp = Process.clock_gettime(Process::CLOCK_REALTIME))
|
@@ -28,14 +28,14 @@ module NewRelic
|
|
28
28
|
|
29
29
|
def transaction_start(timestamp = Process.clock_gettime(Process::CLOCK_REALTIME))
|
30
30
|
@lock.synchronize do
|
31
|
-
set_transaction_start_time
|
31
|
+
set_transaction_start_time(timestamp)
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
35
35
|
def transaction_stop(timestamp = Process.clock_gettime(Process::CLOCK_REALTIME), starting_thread_id = current_thread)
|
36
36
|
@lock.synchronize do
|
37
|
-
record_elapsed_transaction_time_until
|
38
|
-
set_transaction_start_time
|
37
|
+
record_elapsed_transaction_time_until(timestamp, starting_thread_id)
|
38
|
+
set_transaction_start_time(nil, starting_thread_id)
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
@@ -100,23 +100,23 @@ module NewRelic
|
|
100
100
|
end
|
101
101
|
|
102
102
|
def thread_is_alive?(thread_id)
|
103
|
-
thread = thread_by_id
|
103
|
+
thread = thread_by_id(thread_id)
|
104
104
|
thread && thread.alive?
|
105
105
|
rescue StandardError
|
106
106
|
false
|
107
107
|
end
|
108
108
|
|
109
109
|
# ObjectSpace is faster on MRI, but disabled by default on JRuby for
|
110
|
-
#
|
110
|
+
# performance reasons. We have two implementations of `thread_by_id`
|
111
111
|
# based on ruby implementation.
|
112
112
|
if RUBY_ENGINE == 'jruby'
|
113
|
-
def thread_by_id
|
113
|
+
def thread_by_id(thread_id)
|
114
114
|
Thread.list.detect { |t| t.object_id == thread_id }
|
115
115
|
end
|
116
116
|
else
|
117
117
|
require 'objspace'
|
118
118
|
|
119
|
-
def thread_by_id
|
119
|
+
def thread_by_id(thread_id)
|
120
120
|
ObjectSpace._id2ref(thread_id)
|
121
121
|
end
|
122
122
|
end
|
@@ -131,14 +131,14 @@ module NewRelic
|
|
131
131
|
@stats[thread_id].elapsed_transaction_time = 0.0
|
132
132
|
end
|
133
133
|
|
134
|
-
def transaction_time_in_thread
|
135
|
-
return entry.elapsed_transaction_time unless in_transaction?
|
134
|
+
def transaction_time_in_thread(timestamp, thread_id, entry)
|
135
|
+
return entry.elapsed_transaction_time unless in_transaction?(thread_id)
|
136
136
|
|
137
137
|
# Count the portion of the transaction that's elapsed so far,...
|
138
|
-
elapsed = record_elapsed_transaction_time_until
|
138
|
+
elapsed = record_elapsed_transaction_time_until(timestamp, thread_id)
|
139
139
|
|
140
140
|
# ...then readjust the transaction start time to the next harvest
|
141
|
-
split_transaction_at_harvest
|
141
|
+
split_transaction_at_harvest(timestamp, thread_id)
|
142
142
|
|
143
143
|
elapsed
|
144
144
|
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'new_relic/agent/utilization/vendor'
|
6
6
|
|
@@ -25,15 +25,15 @@ module NewRelic
|
|
25
25
|
'',
|
26
26
|
{'X-aws-ec2-metadata-token-ttl-seconds' => IMDS_TOKEN_TTL_SECS})
|
27
27
|
unless response.code == Vendor::SUCCESS
|
28
|
-
NewRelic::Agent.logger.debug
|
28
|
+
NewRelic::Agent.logger.debug('Failed to obtain an AWS token for use with IMDS - encountered ' \
|
29
29
|
"#{response.class} with HTTP response code #{response.code} - " \
|
30
|
-
'assuming non AWS'
|
30
|
+
'assuming non AWS')
|
31
31
|
return
|
32
32
|
end
|
33
33
|
|
34
34
|
response.body
|
35
35
|
rescue Net::OpenTimeout
|
36
|
-
NewRelic::Agent.logger.debug
|
36
|
+
NewRelic::Agent.logger.debug('Timed out waiting for AWS IMDS - assuming non AWS')
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
module NewRelic
|
6
6
|
module Agent
|
@@ -9,7 +9,7 @@ module NewRelic
|
|
9
9
|
vendor_name "azure"
|
10
10
|
endpoint "http://169.254.169.254/metadata/instance/compute?api-version=2017-03-01"
|
11
11
|
headers "Metadata" => "true"
|
12
|
-
keys [
|
12
|
+
keys %w[vmId name vmSize location]
|
13
13
|
key_transforms :to_sym
|
14
14
|
end
|
15
15
|
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'new_relic/agent/utilization/vendor'
|
6
6
|
|
@@ -11,22 +11,22 @@ module NewRelic
|
|
11
11
|
vendor_name "gcp"
|
12
12
|
endpoint "http://metadata.google.internal/computeMetadata/v1/instance/?recursive=true"
|
13
13
|
headers "Metadata-Flavor" => "Google"
|
14
|
-
keys [
|
14
|
+
keys %w[id machineType name zone]
|
15
15
|
key_transforms :to_sym
|
16
16
|
|
17
17
|
MACH_TYPE = 'machineType'.freeze
|
18
18
|
ZONE = 'zone'.freeze
|
19
19
|
|
20
|
-
def prepare_response
|
21
|
-
body = JSON.parse
|
22
|
-
body[MACH_TYPE] = trim_leading
|
23
|
-
body[ZONE] = trim_leading
|
20
|
+
def prepare_response(response)
|
21
|
+
body = JSON.parse(response.body)
|
22
|
+
body[MACH_TYPE] = trim_leading(body[MACH_TYPE])
|
23
|
+
body[ZONE] = trim_leading(body[ZONE])
|
24
24
|
body
|
25
25
|
end
|
26
26
|
|
27
27
|
SLASH = '/'.freeze
|
28
28
|
|
29
|
-
def trim_leading
|
29
|
+
def trim_leading(value)
|
30
30
|
value.split(SLASH).last
|
31
31
|
end
|
32
32
|
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'new_relic/agent/utilization/vendor'
|
6
6
|
|
@@ -9,15 +9,15 @@ module NewRelic
|
|
9
9
|
module Utilization
|
10
10
|
class PCF < Vendor
|
11
11
|
vendor_name "pcf"
|
12
|
-
keys [
|
12
|
+
keys %w[CF_INSTANCE_GUID CF_INSTANCE_IP MEMORY_LIMIT]
|
13
13
|
key_transforms [:downcase, :to_sym]
|
14
14
|
|
15
15
|
def detect
|
16
16
|
begin
|
17
17
|
return false unless pcf_keys_present?
|
18
|
-
process_response
|
18
|
+
process_response(ENV)
|
19
19
|
rescue
|
20
|
-
NewRelic::Agent.logger.error
|
20
|
+
NewRelic::Agent.logger.error("Error occurred detecting: #{vendor_name}", e)
|
21
21
|
record_supportability_metric
|
22
22
|
false
|
23
23
|
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'net/http'
|
6
6
|
|
@@ -9,23 +9,23 @@ module NewRelic
|
|
9
9
|
module Utilization
|
10
10
|
class Vendor
|
11
11
|
class << self
|
12
|
-
def vendor_name
|
12
|
+
def vendor_name(vendor_name = nil)
|
13
13
|
vendor_name ? @vendor_name = vendor_name.freeze : @vendor_name
|
14
14
|
end
|
15
15
|
|
16
|
-
def endpoint
|
16
|
+
def endpoint(endpoint = nil)
|
17
17
|
endpoint ? @endpoint = URI(endpoint) : @endpoint
|
18
18
|
end
|
19
19
|
|
20
|
-
def headers
|
20
|
+
def headers(headers = nil)
|
21
21
|
headers ? @headers = headers.freeze : processed_headers
|
22
22
|
end
|
23
23
|
|
24
|
-
def keys
|
24
|
+
def keys(keys = nil)
|
25
25
|
keys ? @keys = keys.freeze : @keys
|
26
26
|
end
|
27
27
|
|
28
|
-
def key_transforms
|
28
|
+
def key_transforms(key_transforms = nil)
|
29
29
|
key_transforms ? @key_transforms = Array(key_transforms).freeze : @key_transforms
|
30
30
|
end
|
31
31
|
|
@@ -58,12 +58,12 @@ module NewRelic
|
|
58
58
|
|
59
59
|
begin
|
60
60
|
if response.code == SUCCESS
|
61
|
-
process_response
|
61
|
+
process_response(prepare_response(response))
|
62
62
|
else
|
63
63
|
false
|
64
64
|
end
|
65
65
|
rescue => e
|
66
|
-
NewRelic::Agent.logger.error
|
66
|
+
NewRelic::Agent.logger.error("Error occurred detecting: #{vendor_name}", e)
|
67
67
|
record_supportability_metric
|
68
68
|
false
|
69
69
|
end
|
@@ -73,27 +73,27 @@ module NewRelic
|
|
73
73
|
|
74
74
|
def request_metadata
|
75
75
|
processed_headers = headers
|
76
|
-
raise if processed_headers.
|
76
|
+
raise if processed_headers.value?(:error)
|
77
77
|
|
78
|
-
Timeout.timeout
|
78
|
+
Timeout.timeout(1) do
|
79
79
|
response = nil
|
80
|
-
Net::HTTP.start
|
81
|
-
req = Net::HTTP::Get.new
|
82
|
-
response = http.request
|
80
|
+
Net::HTTP.start(endpoint.host, endpoint.port) do |http|
|
81
|
+
req = Net::HTTP::Get.new(endpoint, processed_headers)
|
82
|
+
response = http.request(req)
|
83
83
|
end
|
84
84
|
response
|
85
85
|
end
|
86
86
|
rescue
|
87
|
-
NewRelic::Agent.logger.debug
|
87
|
+
NewRelic::Agent.logger.debug("#{vendor_name} environment not detected")
|
88
88
|
end
|
89
89
|
|
90
|
-
def prepare_response
|
91
|
-
JSON.parse
|
90
|
+
def prepare_response(response)
|
91
|
+
JSON.parse(response.body)
|
92
92
|
end
|
93
93
|
|
94
|
-
def process_response
|
94
|
+
def process_response(response)
|
95
95
|
keys.each do |key|
|
96
|
-
normalized = normalize
|
96
|
+
normalized = normalize(response[key])
|
97
97
|
if normalized
|
98
98
|
@metadata[transform_key(key)] = normalized
|
99
99
|
else
|
@@ -105,51 +105,51 @@ module NewRelic
|
|
105
105
|
true
|
106
106
|
end
|
107
107
|
|
108
|
-
def normalize
|
108
|
+
def normalize(value)
|
109
109
|
return if value.nil?
|
110
110
|
|
111
111
|
value = value.to_s
|
112
112
|
value = value.dup if value.frozen?
|
113
113
|
|
114
|
-
value.force_encoding
|
114
|
+
value.force_encoding(Encoding::UTF_8)
|
115
115
|
value.strip!
|
116
116
|
|
117
|
-
return unless valid_length?
|
118
|
-
return unless valid_chars?
|
117
|
+
return unless valid_length?(value)
|
118
|
+
return unless valid_chars?(value)
|
119
119
|
|
120
120
|
value
|
121
121
|
end
|
122
122
|
|
123
|
-
def valid_length?
|
123
|
+
def valid_length?(value)
|
124
124
|
if value.bytesize <= 255
|
125
125
|
true
|
126
126
|
else
|
127
|
-
NewRelic::Agent.logger.warn
|
127
|
+
NewRelic::Agent.logger.warn("Found invalid length value while detecting: #{vendor_name}")
|
128
128
|
false
|
129
129
|
end
|
130
130
|
end
|
131
131
|
|
132
132
|
VALID_CHARS = /^[0-9a-zA-Z_ .\/-]$/
|
133
133
|
|
134
|
-
def valid_chars?
|
134
|
+
def valid_chars?(value)
|
135
135
|
value.each_char do |ch|
|
136
136
|
next if ch =~ VALID_CHARS
|
137
137
|
code_point = ch[0].ord # this works in Ruby 1.8.7 - 2.1.2
|
138
138
|
next if code_point >= 0x80
|
139
139
|
|
140
|
-
NewRelic::Agent.logger.warn
|
140
|
+
NewRelic::Agent.logger.warn("Found invalid character while detecting: #{vendor_name}")
|
141
141
|
return false # it's in neither set of valid characters
|
142
142
|
end
|
143
143
|
true
|
144
144
|
end
|
145
145
|
|
146
|
-
def transform_key
|
146
|
+
def transform_key(key)
|
147
147
|
return key unless key_transforms
|
148
148
|
key_transforms.inject(key) { |memo, transform| memo.send(transform) }
|
149
149
|
end
|
150
150
|
|
151
151
|
def record_supportability_metric
|
152
|
-
NewRelic::Agent.increment_metric
|
152
|
+
NewRelic::Agent.increment_metric("Supportability/utilization/#{vendor_name}/error")
|
153
153
|
end
|
154
154
|
end
|
155
155
|
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'new_relic/agent/utilization/aws'
|
6
6
|
require 'new_relic/agent/utilization/gcp'
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'thread'
|
6
6
|
require 'new_relic/agent/vm/snapshot'
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
# The GC::Profiler class available on MRI has to be reset periodically to avoid
|
6
6
|
# memory "leaking" in the underlying implementation. However, it's a major
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'thread'
|
6
6
|
require 'new_relic/agent/vm/snapshot'
|
@@ -23,24 +23,35 @@ module NewRelic
|
|
23
23
|
end
|
24
24
|
|
25
25
|
def gather_gc_stats(snap)
|
26
|
-
if supports?(:gc_runs)
|
27
|
-
|
28
|
-
|
26
|
+
gather_gc_runs(snap) if supports?(:gc_runs)
|
27
|
+
gather_derived_stats(snap) if GC.respond_to?(:stat)
|
28
|
+
end
|
29
|
+
|
30
|
+
def gather_gc_runs(snap)
|
31
|
+
snap.gc_runs = GC.count
|
32
|
+
end
|
29
33
|
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
34
|
+
def gather_derived_stats(snap)
|
35
|
+
stat = GC.stat
|
36
|
+
snap.total_allocated_object = derive_from_gc_stats(%i[total_allocated_objects total_allocated_object], stat)
|
37
|
+
snap.major_gc_count = derive_from_gc_stats(:major_gc_count, stat)
|
38
|
+
snap.minor_gc_count = derive_from_gc_stats(:minor_gc_count, stat)
|
39
|
+
snap.heap_live = derive_from_gc_stats(%i[heap_live_slots heap_live_slot heap_live_num], stat)
|
40
|
+
snap.heap_free = derive_from_gc_stats(%i[heap_free_slots heap_free_slot heap_free_num], stat)
|
41
|
+
end
|
42
|
+
|
43
|
+
def derive_from_gc_stats(keys, stat)
|
44
|
+
Array(keys).each do |key|
|
45
|
+
value = stat[key]
|
46
|
+
return value if value
|
37
47
|
end
|
48
|
+
nil
|
38
49
|
end
|
39
50
|
|
40
51
|
def gather_gc_time(snap)
|
41
|
-
|
42
|
-
|
43
|
-
|
52
|
+
return unless supports?(:gc_total_time)
|
53
|
+
|
54
|
+
snap.gc_total_time = NewRelic::Agent.instance.monotonic_gc_profiler.total_time_s
|
44
55
|
end
|
45
56
|
|
46
57
|
def gather_ruby_vm_stats(snap)
|
@@ -51,18 +62,18 @@ module NewRelic
|
|
51
62
|
if supports?(:constant_cache_invalidations)
|
52
63
|
snap.constant_cache_invalidations = gather_constant_cache_invalidations
|
53
64
|
end
|
65
|
+
|
66
|
+
if supports?(:constant_cache_misses)
|
67
|
+
snap.constant_cache_misses = gather_constant_cache_misses
|
68
|
+
end
|
54
69
|
end
|
55
70
|
|
56
71
|
def gather_constant_cache_invalidations
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
# Ruby < 3.2 uses :global_constant_state
|
63
|
-
else
|
64
|
-
RubyVM.stat[:global_constant_state]
|
65
|
-
end
|
72
|
+
RubyVM.stat[RUBY_VERSION >= '3.2.0' ? :constant_cache_invalidations : :global_constant_state]
|
73
|
+
end
|
74
|
+
|
75
|
+
def gather_constant_cache_misses
|
76
|
+
RubyVM.stat[:constant_cache_misses]
|
66
77
|
end
|
67
78
|
|
68
79
|
def gather_thread_stats(snap)
|
@@ -83,6 +94,8 @@ module NewRelic
|
|
83
94
|
RUBY_VERSION >= '2.1.0' && RUBY_VERSION < '3.0.0'
|
84
95
|
when :constant_cache_invalidations
|
85
96
|
RUBY_VERSION >= '2.1.0'
|
97
|
+
when :constant_cache_misses
|
98
|
+
RUBY_VERSION >= '3.2.0'
|
86
99
|
else
|
87
100
|
false
|
88
101
|
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
module NewRelic
|
6
6
|
module Agent
|
@@ -9,7 +9,7 @@ module NewRelic
|
|
9
9
|
attr_accessor :gc_total_time, :gc_runs, :major_gc_count, :minor_gc_count,
|
10
10
|
:total_allocated_object, :heap_live, :heap_free,
|
11
11
|
:method_cache_invalidations, :constant_cache_invalidations,
|
12
|
-
:thread_count, :taken_at
|
12
|
+
:constant_cache_misses, :thread_count, :taken_at
|
13
13
|
|
14
14
|
def initialize
|
15
15
|
@taken_at = Process.clock_gettime(Process::CLOCK_REALTIME)
|
data/lib/new_relic/agent/vm.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'new_relic/language_support'
|
6
6
|
require 'new_relic/agent/vm/mri_vm'
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'thread'
|
6
6
|
|
@@ -88,7 +88,7 @@ module NewRelic
|
|
88
88
|
raise
|
89
89
|
rescue => e
|
90
90
|
# Don't blow out the stack for anything that hasn't already propagated
|
91
|
-
::NewRelic::Agent.logger.error
|
91
|
+
::NewRelic::Agent.logger.error("Error running task in Agent Worker Loop:", e)
|
92
92
|
end
|
93
93
|
end
|
94
94
|
end
|