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,17 +1,20 @@
|
|
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/null_logger'
|
6
6
|
require 'new_relic/agent/memory_logger'
|
7
7
|
require 'new_relic/agent/agent_logger'
|
8
8
|
|
9
|
+
require_relative 'private_instance_methods'
|
10
|
+
|
9
11
|
module NewRelic
|
10
12
|
class Control
|
11
13
|
# Contains methods that relate to the runtime usage of the control
|
12
14
|
# object. Note that these are subject to override in the
|
13
15
|
# NewRelic::Control::Framework classes that are actually instantiated
|
14
16
|
module InstanceMethods
|
17
|
+
include PrivateInstanceMethods
|
15
18
|
# The env is the setting used to identify which section of the newrelic.yml
|
16
19
|
# to load. This defaults to a framework specific value, such as ENV['RAILS_ENV']
|
17
20
|
# but can be overridden as long as you set it before calling #init_plugin
|
@@ -52,9 +55,7 @@ module NewRelic
|
|
52
55
|
configure_agent(env, options)
|
53
56
|
|
54
57
|
# Be sure to only create once! RUBY-1020
|
55
|
-
|
56
|
-
::NewRelic::Agent.logger = NewRelic::Agent::AgentLogger.new(root, options.delete(:log))
|
57
|
-
end
|
58
|
+
create_logger(options)
|
58
59
|
|
59
60
|
# Merge the stringified options into the config as overrides:
|
60
61
|
environment_name = options.delete(:env) and self.env = environment_name
|
@@ -63,21 +64,11 @@ module NewRelic
|
|
63
64
|
|
64
65
|
# An artifact of earlier implementation, we put both #add_method_tracer and #trace_execution
|
65
66
|
# methods in the module methods.
|
66
|
-
Module.send
|
67
|
-
Module.send
|
67
|
+
Module.send(:include, NewRelic::Agent::MethodTracer::ClassMethods)
|
68
|
+
Module.send(:include, NewRelic::Agent::MethodTracer)
|
68
69
|
init_config(options)
|
69
70
|
NewRelic::Agent.agent = NewRelic::Agent::Agent.instance
|
70
|
-
|
71
|
-
if !security_settings_valid?
|
72
|
-
handle_invalid_security_settings
|
73
|
-
elsif Agent.config[:agent_enabled] && !NewRelic::Agent.instance.started?
|
74
|
-
start_agent
|
75
|
-
install_instrumentation
|
76
|
-
elsif !Agent.config[:agent_enabled]
|
77
|
-
install_shim
|
78
|
-
else
|
79
|
-
DependencyDetection.detect!
|
80
|
-
end
|
71
|
+
init_instrumentation
|
81
72
|
end
|
82
73
|
|
83
74
|
def determine_env(options)
|
@@ -85,11 +76,13 @@ module NewRelic
|
|
85
76
|
env = env.to_s
|
86
77
|
|
87
78
|
if @started_in_env && @started_in_env != env
|
88
|
-
Agent.logger.error("Attempted to start agent in #{env.inspect} environment, but agent was already running
|
89
|
-
"The agent will continue running in #{@started_in_env.inspect}. To
|
79
|
+
Agent.logger.error("Attempted to start agent in #{env.inspect} environment, but agent was already running " \
|
80
|
+
"in #{@started_in_env.inspect}", "The agent will continue running in #{@started_in_env.inspect}. To " \
|
81
|
+
"alter this, ensure the desired environment is set before the agent starts.")
|
90
82
|
else
|
91
|
-
Agent.logger.info("Starting the New Relic agent version #{NewRelic::VERSION::STRING} in #{env.inspect}
|
92
|
-
"To prevent agent startup add a NEW_RELIC_AGENT_ENABLED=false environment variable or
|
83
|
+
Agent.logger.info("Starting the New Relic agent version #{NewRelic::VERSION::STRING} in #{env.inspect} " \
|
84
|
+
"environment.", "To prevent agent startup add a NEW_RELIC_AGENT_ENABLED=false environment variable or " \
|
85
|
+
"modify the #{env.inspect} section of your newrelic.yml.")
|
93
86
|
end
|
94
87
|
|
95
88
|
env
|
@@ -98,33 +91,20 @@ module NewRelic
|
|
98
91
|
def configure_agent(env, options)
|
99
92
|
manual = Agent::Configuration::ManualSource.new(options)
|
100
93
|
Agent.config.replace_or_add_config(manual)
|
101
|
-
|
102
|
-
config_file_path = @config_file_override || Agent.config[:config_path]
|
103
94
|
yaml_source = Agent::Configuration::YamlSource.new(config_file_path, env)
|
104
|
-
if yaml_source.failed?
|
105
|
-
yaml_source.failures.each do |msg|
|
106
|
-
stdout.puts Agent::AgentLogger.format_fatal_error(msg)
|
107
|
-
end
|
108
|
-
end
|
95
|
+
log_yaml_source_failures(yaml_source) if yaml_source.failed?
|
109
96
|
Agent.config.replace_or_add_config(yaml_source)
|
110
|
-
|
111
|
-
if security_settings_valid? && Agent.config[:high_security]
|
112
|
-
Agent.logger.info("Installing high security configuration based on local configuration")
|
113
|
-
Agent.config.replace_or_add_config(Agent::Configuration::HighSecuritySource.new(Agent.config))
|
114
|
-
end
|
97
|
+
configure_high_security
|
115
98
|
end
|
116
99
|
|
117
100
|
def security_settings_valid?
|
118
|
-
!Agent.config[:high_security] ||
|
119
|
-
Agent.config[:security_policies_token].empty?
|
101
|
+
!Agent.config[:high_security] || Agent.config[:security_policies_token].empty?
|
120
102
|
end
|
121
103
|
|
122
104
|
def handle_invalid_security_settings
|
123
|
-
NewRelic::Agent.logger.error
|
124
|
-
"
|
125
|
-
"
|
126
|
-
"ensure the security_policies_token is set but high_security is " \
|
127
|
-
"disabled (default)."
|
105
|
+
NewRelic::Agent.logger.error("Security Policies and High Security Mode cannot both be present in the agent " \
|
106
|
+
"configuration. If Security Policies have been set for your account, please ensure the " \
|
107
|
+
"security_policies_token is set but high_security is disabled (default).")
|
128
108
|
install_shim
|
129
109
|
end
|
130
110
|
|
@@ -167,10 +147,8 @@ module NewRelic
|
|
167
147
|
@install_lock = Mutex.new
|
168
148
|
@local_env = local_env
|
169
149
|
@started_in_env = nil
|
170
|
-
|
171
150
|
@instrumented = nil
|
172
151
|
@instrumentation_files = []
|
173
|
-
|
174
152
|
@config_file_override = config_file_override
|
175
153
|
end
|
176
154
|
|
@@ -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
|
class Control
|
@@ -12,12 +12,12 @@ module NewRelic
|
|
12
12
|
# This requires the files within a rescue block, so that any
|
13
13
|
# errors within instrumentation files do not affect the overall
|
14
14
|
# agent or application in which it runs.
|
15
|
-
def load_instrumentation_files
|
15
|
+
def load_instrumentation_files(pattern)
|
16
16
|
Dir.glob(pattern) do |file|
|
17
17
|
begin
|
18
18
|
require file.to_s
|
19
19
|
rescue => e
|
20
|
-
::NewRelic::Agent.logger.warn
|
20
|
+
::NewRelic::Agent.logger.warn("Error loading instrumentation file '#{file}':", e)
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -33,9 +33,9 @@ module NewRelic
|
|
33
33
|
#
|
34
34
|
# This happens after the agent has loaded and all dependencies
|
35
35
|
# are ready to be instrumented
|
36
|
-
def add_instrumentation
|
36
|
+
def add_instrumentation(pattern)
|
37
37
|
if @instrumented
|
38
|
-
load_instrumentation_files
|
38
|
+
load_instrumentation_files(pattern)
|
39
39
|
else
|
40
40
|
@instrumentation_files << pattern
|
41
41
|
end
|
@@ -60,11 +60,11 @@ module NewRelic
|
|
60
60
|
@instrumentation_files <<
|
61
61
|
File.join(instrumentation_path, '*.rb') <<
|
62
62
|
File.join(instrumentation_path, app.to_s, '*.rb')
|
63
|
-
@instrumentation_files.each { |pattern| load_instrumentation_files
|
63
|
+
@instrumentation_files.each { |pattern| load_instrumentation_files(pattern) }
|
64
64
|
DependencyDetection.detect!
|
65
65
|
ruby_22_deprecation
|
66
66
|
rails_32_deprecation
|
67
|
-
::NewRelic::Agent.logger.info
|
67
|
+
::NewRelic::Agent.logger.info("Finished instrumentation")
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# This file is distributed under New Relic's license terms.
|
2
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
|
+
|
5
|
+
require 'new_relic/agent/memory_logger'
|
6
|
+
require 'new_relic/agent/agent_logger'
|
7
|
+
|
8
|
+
module NewRelic
|
9
|
+
class Control
|
10
|
+
module PrivateInstanceMethods
|
11
|
+
private
|
12
|
+
|
13
|
+
def configure_high_security
|
14
|
+
if security_settings_valid? && Agent.config[:high_security]
|
15
|
+
Agent.logger.info("Installing high security configuration based on local configuration")
|
16
|
+
Agent.config.replace_or_add_config(Agent::Configuration::HighSecuritySource.new(Agent.config))
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def log_yaml_source_failures(yaml_source)
|
21
|
+
yaml_source.failures.each { |msg| stdout.puts Agent::AgentLogger.format_fatal_error(msg) }
|
22
|
+
end
|
23
|
+
|
24
|
+
def config_file_path
|
25
|
+
@config_file_override || Agent.config[:config_path]
|
26
|
+
end
|
27
|
+
|
28
|
+
def create_logger(options)
|
29
|
+
if ::NewRelic::Agent.logger.is_startup_logger?
|
30
|
+
::NewRelic::Agent.logger = NewRelic::Agent::AgentLogger.new(root, options.delete(:log))
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def init_instrumentation
|
35
|
+
if !security_settings_valid?
|
36
|
+
handle_invalid_security_settings
|
37
|
+
elsif Agent.config[:agent_enabled] && !NewRelic::Agent.instance.started?
|
38
|
+
start_agent
|
39
|
+
install_instrumentation
|
40
|
+
elsif !Agent.config[:agent_enabled]
|
41
|
+
install_shim
|
42
|
+
else
|
43
|
+
DependencyDetection.detect!
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -1,11 +1,11 @@
|
|
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
|
class Control
|
7
7
|
# Structs holding info for the remote server and proxy server
|
8
|
-
class Server < Struct.new
|
8
|
+
class Server < Struct.new(:name, :port) # :nodoc:
|
9
9
|
def to_s; "#{name}:#{port}"; end
|
10
10
|
end
|
11
11
|
|
data/lib/new_relic/control.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 'yaml'
|
6
6
|
require 'new_relic/dependency_detection'
|
@@ -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 DependencyDetection
|
6
6
|
module_function
|
@@ -75,40 +75,40 @@ module DependencyDetection
|
|
75
75
|
!executed and check_dependencies
|
76
76
|
end
|
77
77
|
|
78
|
-
def source_location_for
|
78
|
+
def source_location_for(klass, method_name)
|
79
79
|
Object.instance_method(:method).bind(klass.allocate).call(method_name).source_location.to_s
|
80
80
|
end
|
81
81
|
|
82
82
|
# Extracts the instrumented library name from the instrumenting module's name
|
83
83
|
# Given "NewRelic::Agent::Instrumentation::NetHTTP::Prepend"
|
84
84
|
# Will extract "NetHTTP" which is in the 2nd to last spot
|
85
|
-
def extract_supportability_name
|
85
|
+
def extract_supportability_name(instrumenting_module)
|
86
86
|
instrumenting_module.to_s.split("::")[-2]
|
87
87
|
end
|
88
88
|
|
89
|
-
def log_and_instrument
|
89
|
+
def log_and_instrument(method, instrumenting_module, supportability_name)
|
90
90
|
supportability_name ||= extract_supportability_name(instrumenting_module)
|
91
|
-
NewRelic::Agent.logger.info
|
91
|
+
NewRelic::Agent.logger.info("Installing New Relic supported #{supportability_name} instrumentation using #{method}")
|
92
92
|
NewRelic::Agent.record_metric("Supportability/Instrumentation/#{supportability_name}/#{method}", 0.0)
|
93
93
|
yield
|
94
94
|
end
|
95
95
|
|
96
|
-
def prepend_instrument
|
96
|
+
def prepend_instrument(target_class, instrumenting_module, supportability_name = nil)
|
97
97
|
log_and_instrument("Prepend", instrumenting_module, supportability_name) do
|
98
|
-
target_class.send
|
98
|
+
target_class.send(:prepend, instrumenting_module)
|
99
99
|
end
|
100
100
|
end
|
101
101
|
|
102
|
-
def chain_instrument
|
102
|
+
def chain_instrument(instrumenting_module, supportability_name = nil)
|
103
103
|
log_and_instrument("MethodChaining", instrumenting_module, supportability_name) do
|
104
104
|
instrumenting_module.instrument!
|
105
105
|
end
|
106
106
|
end
|
107
107
|
|
108
|
-
def chain_instrument_target
|
109
|
-
NewRelic::Agent.logger.info
|
108
|
+
def chain_instrument_target(target, instrumenting_module, supportability_name = nil)
|
109
|
+
NewRelic::Agent.logger.info("Installing deferred #{target} instrumentation")
|
110
110
|
log_and_instrument("MethodChaining", instrumenting_module, supportability_name) do
|
111
|
-
instrumenting_module.instrument!
|
111
|
+
instrumenting_module.instrument!(target)
|
112
112
|
end
|
113
113
|
end
|
114
114
|
|
@@ -117,7 +117,7 @@ module DependencyDetection
|
|
117
117
|
begin
|
118
118
|
x.call
|
119
119
|
rescue => err
|
120
|
-
NewRelic::Agent.logger.error
|
120
|
+
NewRelic::Agent.logger.error("Error while installing #{self.name} instrumentation:", err)
|
121
121
|
break
|
122
122
|
end
|
123
123
|
end
|
@@ -138,8 +138,8 @@ module DependencyDetection
|
|
138
138
|
end
|
139
139
|
end
|
140
140
|
|
141
|
-
def depends_on
|
142
|
-
@dependencies << block if
|
141
|
+
def depends_on(&block)
|
142
|
+
@dependencies << block if block
|
143
143
|
end
|
144
144
|
|
145
145
|
def allowed_by_config?
|
@@ -155,9 +155,10 @@ module DependencyDetection
|
|
155
155
|
return false unless ::NewRelic::Agent.config[key] == true
|
156
156
|
|
157
157
|
::NewRelic::Agent.logger.debug("Not installing #{self.name} instrumentation because of configuration #{key}")
|
158
|
-
::NewRelic::Agent.logger.debug \
|
159
|
-
"[DEPRECATED] configuration #{key} for #{self.name} will be removed in the next major release." \
|
160
|
-
"
|
158
|
+
::NewRelic::Agent.logger.debug( \
|
159
|
+
"[DEPRECATED] configuration #{key} for #{self.name} will be removed in the next major release. " \
|
160
|
+
"Use `#{config_key}` with one of `#{VALID_CONFIG_VALUES.map(&:to_s).inspect}`"
|
161
|
+
)
|
161
162
|
|
162
163
|
return true
|
163
164
|
end
|
@@ -178,7 +179,7 @@ module DependencyDetection
|
|
178
179
|
|
179
180
|
# returns only a valid value for instrumentation configuration
|
180
181
|
# If user uses "enabled" it's converted to "auto"
|
181
|
-
def valid_config_value
|
182
|
+
def valid_config_value(retrieved_value)
|
182
183
|
VALID_CONFIG_VALUES.include?(retrieved_value) ? retrieved_value : AUTO_CONFIG_VALUE
|
183
184
|
end
|
184
185
|
|
@@ -203,12 +204,12 @@ module DependencyDetection
|
|
203
204
|
self.config_name = new_config_name
|
204
205
|
end
|
205
206
|
|
206
|
-
def executes
|
207
|
-
@executes << block if
|
207
|
+
def executes(&block)
|
208
|
+
@executes << block if block
|
208
209
|
end
|
209
210
|
|
210
|
-
def conflicts_with_prepend
|
211
|
-
@prepend_conflicts << block if
|
211
|
+
def conflicts_with_prepend(&block)
|
212
|
+
@prepend_conflicts << block if block
|
212
213
|
end
|
213
214
|
|
214
215
|
def use_prepend?
|
@@ -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
|
# The EnvironmentReport is responsible for analyzing the application's
|
@@ -93,20 +93,9 @@ module NewRelic
|
|
93
93
|
@data = self.class.registered_reporters.inject(Hash.new) do |data, (key, logic)|
|
94
94
|
begin
|
95
95
|
value = logic.call
|
96
|
-
|
97
|
-
data[key] = value
|
98
|
-
|
99
|
-
Agent.record_metric("Supportability/EnvironmentReport/success", 0.0)
|
100
|
-
Agent.record_metric("Supportability/EnvironmentReport/success/#{key}", 0.0)
|
101
|
-
else
|
102
|
-
Agent.logger.debug("EnvironmentReport ignoring value for #{key.inspect} which came back falsey: #{value.inspect}")
|
103
|
-
Agent.record_metric("Supportability/EnvironmentReport/empty", 0.0)
|
104
|
-
Agent.record_metric("Supportability/EnvironmentReport/empty/#{key}", 0.0)
|
105
|
-
end
|
96
|
+
value ? record_value(data, key, value) : record_empty_value(key, value)
|
106
97
|
rescue => e
|
107
|
-
|
108
|
-
Agent.record_metric("Supportability/EnvironmentReport/error", 0.0)
|
109
|
-
Agent.record_metric("Supportability/EnvironmentReport/error/#{key}", 0.0)
|
98
|
+
rescue_initialize(key, e)
|
110
99
|
end
|
111
100
|
data
|
112
101
|
end
|
@@ -123,5 +112,26 @@ module NewRelic
|
|
123
112
|
def to_a
|
124
113
|
@data.to_a
|
125
114
|
end
|
115
|
+
|
116
|
+
private
|
117
|
+
|
118
|
+
def record_value(data, key, value)
|
119
|
+
data[key] = value
|
120
|
+
|
121
|
+
Agent.record_metric("Supportability/EnvironmentReport/success", 0.0)
|
122
|
+
Agent.record_metric("Supportability/EnvironmentReport/success/#{key}", 0.0)
|
123
|
+
end
|
124
|
+
|
125
|
+
def record_empty_value(key, value)
|
126
|
+
Agent.logger.debug("EnvironmentReport ignoring value for #{key.inspect} which came back falsey: #{value.inspect}")
|
127
|
+
Agent.record_metric("Supportability/EnvironmentReport/empty", 0.0)
|
128
|
+
Agent.record_metric("Supportability/EnvironmentReport/empty/#{key}", 0.0)
|
129
|
+
end
|
130
|
+
|
131
|
+
def rescue_initialize(key, exception)
|
132
|
+
Agent.logger.debug("EnvironmentReport failed to retrieve value for #{key.inspect}: #{exception}")
|
133
|
+
Agent.record_metric("Supportability/EnvironmentReport/error", 0.0)
|
134
|
+
Agent.record_metric("Supportability/EnvironmentReport/error/#{key}", 0.0)
|
135
|
+
end
|
126
136
|
end
|
127
137
|
end
|
data/lib/new_relic/helper.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 'open3'
|
@@ -16,16 +16,16 @@ module NewRelic
|
|
16
16
|
# Confirm a string is correctly encoded,
|
17
17
|
# If not force the encoding to ASCII-8BIT (binary)
|
18
18
|
def correctly_encoded(string)
|
19
|
-
return string unless string.is_a?
|
19
|
+
return string unless string.is_a?(String)
|
20
20
|
# The .dup here is intentional, since force_encoding mutates the target,
|
21
21
|
# and we don't know who is going to use this string downstream of us.
|
22
22
|
string.valid_encoding? ? string : string.dup.force_encoding(Encoding::ASCII_8BIT)
|
23
23
|
end
|
24
24
|
|
25
25
|
def instance_method_visibility(klass, method_name)
|
26
|
-
if klass.private_instance_methods.map { |s| s.to_sym }.include?
|
26
|
+
if klass.private_instance_methods.map { |s| s.to_sym }.include?(method_name.to_sym)
|
27
27
|
:private
|
28
|
-
elsif klass.protected_instance_methods.map { |s| s.to_sym }.include?
|
28
|
+
elsif klass.protected_instance_methods.map { |s| s.to_sym }.include?(method_name.to_sym)
|
29
29
|
:protected
|
30
30
|
else
|
31
31
|
:public
|
@@ -65,7 +65,7 @@ module NewRelic
|
|
65
65
|
output.chomp
|
66
66
|
end
|
67
67
|
|
68
|
-
# TODO: Open3 defers the actual
|
68
|
+
# TODO: Open3 defers the actual execution of a binary to Process.spawn,
|
69
69
|
# which will raise an Errno::ENOENT exception for a file that
|
70
70
|
# cannot be found. We might want to take the time to evaluate
|
71
71
|
# relying on that Process.spawn behavior instead of checking for
|
@@ -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 LanguageSupport
|
@@ -9,7 +9,7 @@ module NewRelic
|
|
9
9
|
@@forkable = nil
|
10
10
|
def can_fork?
|
11
11
|
# this is expensive to check, so we should only check once
|
12
|
-
return @@forkable if
|
12
|
+
return @@forkable if !@@forkable.nil?
|
13
13
|
@@forkable = Process.respond_to?(:fork)
|
14
14
|
end
|
15
15
|
|
@@ -56,7 +56,7 @@ module NewRelic
|
|
56
56
|
begin
|
57
57
|
result = namespace.const_get(name)
|
58
58
|
|
59
|
-
# const_get looks up the
|
59
|
+
# const_get looks up the inheritance chain, so if it's a class
|
60
60
|
# in the constant make sure we found the one in our namespace.
|
61
61
|
#
|
62
62
|
# Can't help if the constant isn't a class...
|
@@ -72,6 +72,11 @@ module NewRelic
|
|
72
72
|
end
|
73
73
|
end
|
74
74
|
|
75
|
+
def camelize(string)
|
76
|
+
camelized = string.downcase
|
77
|
+
camelized.split(/\-|\_/).map(&:capitalize).join
|
78
|
+
end
|
79
|
+
|
75
80
|
def bundled_gem?(gem_name)
|
76
81
|
defined?(Bundler) && Bundler.rubygems.all_specs.map(&:name).include?(gem_name)
|
77
82
|
rescue => e
|
@@ -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 LatestChanges
|
@@ -30,8 +30,8 @@ EOS
|
|
30
30
|
|
31
31
|
current_item = nil
|
32
32
|
latest.each do |line|
|
33
|
-
if line
|
34
|
-
if line
|
33
|
+
if line =~ /^\s*\*.*/
|
34
|
+
if line =~ /\(#{patch_level}\)/
|
35
35
|
# Found a patch level item, so start tracking the lines!
|
36
36
|
current_item = line
|
37
37
|
else
|
@@ -52,7 +52,7 @@ EOS
|
|
52
52
|
changes = []
|
53
53
|
version_count = 0
|
54
54
|
contents.each_line do |line|
|
55
|
-
if line
|
55
|
+
if line =~ /##\s+v[\d.]+/
|
56
56
|
version_count += 1
|
57
57
|
end
|
58
58
|
break if version_count >= 2
|
@@ -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 'set'
|
6
6
|
require 'new_relic/version'
|
@@ -26,7 +26,7 @@ module NewRelic
|
|
26
26
|
#
|
27
27
|
# If the environment can't be determined, it will be set to nil.
|
28
28
|
#
|
29
|
-
# NewRelic::LocalEnvironment should be accessed through NewRelic::Control#
|
29
|
+
# NewRelic::LocalEnvironment should be accessed through NewRelic::Control#local_env (via the NewRelic::Control singleton).
|
30
30
|
class LocalEnvironment
|
31
31
|
def discovered_dispatcher
|
32
32
|
discover_dispatcher unless @discovered_dispatcher
|
@@ -34,11 +34,11 @@ module NewRelic
|
|
34
34
|
end
|
35
35
|
|
36
36
|
def initialize
|
37
|
-
# Extend self with any
|
38
|
-
# the discover methods to discover new
|
37
|
+
# Extend self with any submodules of LocalEnvironment. These can override
|
38
|
+
# the discover methods to discover new frameworks and dispatchers.
|
39
39
|
NewRelic::LocalEnvironment.constants.each do |const|
|
40
|
-
mod = NewRelic::LocalEnvironment.const_get
|
41
|
-
self.extend
|
40
|
+
mod = NewRelic::LocalEnvironment.const_get(const)
|
41
|
+
self.extend(mod) if mod.instance_of?(Module)
|
42
42
|
end
|
43
43
|
|
44
44
|
@discovered_dispatcher = nil
|
@@ -78,7 +78,7 @@ module NewRelic
|
|
78
78
|
]
|
79
79
|
# TODO: MAJOR VERSION - remove rainbows
|
80
80
|
while dispatchers.any? && @discovered_dispatcher.nil?
|
81
|
-
send
|
81
|
+
send('check_for_' + (dispatchers.shift))
|
82
82
|
end
|
83
83
|
end
|
84
84
|
|
@@ -182,7 +182,7 @@ module NewRelic
|
|
182
182
|
end
|
183
183
|
|
184
184
|
def check_for_litespeed
|
185
|
-
if caller.pop
|
185
|
+
if caller.pop.include?('fcgi-bin/RailsRunner.rb')
|
186
186
|
@discovered_dispatcher = :litespeed
|
187
187
|
end
|
188
188
|
end
|
@@ -197,9 +197,7 @@ module NewRelic
|
|
197
197
|
|
198
198
|
# outputs a human-readable description
|
199
199
|
def to_s
|
200
|
-
|
201
|
-
s << ";dispatcher=#{@discovered_dispatcher}" if @discovered_dispatcher
|
202
|
-
s << "]"
|
200
|
+
%Q(LocalEnvironment[#{";dispatcher=#{@discovered_dispatcher}" if @discovered_dispatcher}])
|
203
201
|
end
|
204
202
|
|
205
203
|
def executable
|