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
data/bin/nrdebug
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
|
-
# encoding: utf-8
|
4
3
|
# This file is distributed under New Relic's license terms.
|
5
4
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
5
|
+
# frozen_string_literal: true
|
6
6
|
|
7
7
|
require 'tempfile'
|
8
8
|
require 'rbconfig'
|
@@ -96,11 +96,11 @@ class LinuxProcessDataProvider < ProcessDataProvider
|
|
96
96
|
end
|
97
97
|
|
98
98
|
def procline
|
99
|
-
File.read(proc_path('cmdline')).
|
99
|
+
File.read(proc_path('cmdline')).tr("\000", " ")
|
100
100
|
end
|
101
101
|
|
102
102
|
def environment
|
103
|
-
File.read(proc_path('environ')).
|
103
|
+
File.read(proc_path('environ')).tr("\000", "\n")
|
104
104
|
end
|
105
105
|
end
|
106
106
|
|
@@ -133,8 +133,29 @@ class RubyProcess
|
|
133
133
|
backtrace_file = Tempfile.new('nrdebug_ruby_bt')
|
134
134
|
File.chmod(0666, backtrace_file.path)
|
135
135
|
|
136
|
-
|
137
|
-
|
136
|
+
body = gdb_script_body(backtrace_file)
|
137
|
+
|
138
|
+
script_file = write_script_file(body)
|
139
|
+
|
140
|
+
gdb_stderr = Tempfile.new('nrdebug_gdb_stderr')
|
141
|
+
|
142
|
+
gdb_cmd = "gdb -batch -x #{script_file.path} 2>#{gdb_stderr.path}"
|
143
|
+
gdb_output = ShellWrapper.execute(gdb_cmd)
|
144
|
+
ruby_backtrace = File.read(backtrace_file.path)
|
145
|
+
|
146
|
+
script_file.close!
|
147
|
+
backtrace_file.close!
|
148
|
+
gdb_stderr.close!
|
149
|
+
|
150
|
+
[gdb_output, ruby_backtrace]
|
151
|
+
end
|
152
|
+
|
153
|
+
private
|
154
|
+
|
155
|
+
def gdb_script_body(backtrace_file)
|
156
|
+
backtrace_gathering_code = 'Thread.list.each { |t| bt = t.backtrace rescue nil; ' \
|
157
|
+
'puts \"#{t.inspect}\n#{bt && bt.join(\"\n\")}\n\n\" }'
|
158
|
+
<<-END
|
138
159
|
attach #{pid}
|
139
160
|
t a a bt
|
140
161
|
call (void)close(1)
|
@@ -147,23 +168,14 @@ class RubyProcess
|
|
147
168
|
call (void)fflush(0)
|
148
169
|
quit
|
149
170
|
END
|
150
|
-
|
171
|
+
end
|
151
172
|
|
173
|
+
def write_script_file(body)
|
174
|
+
Logger.log("Using gdb script:\n#{body}")
|
152
175
|
script_file = Tempfile.new('nrdebug_gdb_script')
|
153
|
-
script_file.write(
|
176
|
+
script_file.write(body)
|
154
177
|
script_file.close
|
155
|
-
|
156
|
-
gdb_stderr = Tempfile.new('nrdebug_gdb_stderr')
|
157
|
-
|
158
|
-
gdb_cmd = "gdb -batch -x #{script_file.path} 2>#{gdb_stderr.path}"
|
159
|
-
gdb_output = ShellWrapper.execute(gdb_cmd)
|
160
|
-
ruby_backtrace = File.read(backtrace_file.path)
|
161
|
-
|
162
|
-
script_file.close!
|
163
|
-
backtrace_file.close!
|
164
|
-
gdb_stderr.close!
|
165
|
-
|
166
|
-
[gdb_output, ruby_backtrace]
|
178
|
+
script_file
|
167
179
|
end
|
168
180
|
end
|
169
181
|
|
@@ -178,10 +190,10 @@ class ProcessReport
|
|
178
190
|
def open
|
179
191
|
if @path
|
180
192
|
File.open(@path, "w") do |f|
|
181
|
-
yield
|
193
|
+
yield(f)
|
182
194
|
end
|
183
195
|
else
|
184
|
-
yield
|
196
|
+
yield($stdout)
|
185
197
|
end
|
186
198
|
end
|
187
199
|
|
@@ -200,18 +212,11 @@ class ProcessReport
|
|
200
212
|
|
201
213
|
def generate
|
202
214
|
open do |f|
|
203
|
-
|
204
|
-
section(f, "PID") { @target.pid }
|
205
|
-
section(f, "Command") { @target.procline }
|
206
|
-
section(f, "RSS") { @target.rss }
|
207
|
-
section(f, "CPU") { @target.cpu }
|
208
|
-
section(f, "Parent PID") { @target.ppid }
|
209
|
-
section(f, "OS") { ShellWrapper.execute('uname -a') }
|
210
|
-
section(f, "Environment") { @target.environment }
|
215
|
+
add_environment_sections(f)
|
211
216
|
|
212
217
|
section(f) do
|
213
218
|
c_backtraces, ruby_backtraces = @target.gather_backtraces
|
214
|
-
if c_backtraces
|
219
|
+
if c_backtraces =~ /could not attach/i
|
215
220
|
fail("Failed to attach to target process. Please try again with sudo.")
|
216
221
|
end
|
217
222
|
section(f, "C Backtraces") { c_backtraces }
|
@@ -225,23 +230,38 @@ class ProcessReport
|
|
225
230
|
end
|
226
231
|
end
|
227
232
|
end
|
233
|
+
|
234
|
+
private
|
235
|
+
|
236
|
+
def add_environment_sections(handle)
|
237
|
+
section(handle, "Time") { Time.now }
|
238
|
+
section(handle, "PID") { @target.pid }
|
239
|
+
section(handle, "Command") { @target.procline }
|
240
|
+
section(handle, "RSS") { @target.rss }
|
241
|
+
section(handle, "CPU") { @target.cpu }
|
242
|
+
section(handle, "Parent PID") { @target.ppid }
|
243
|
+
section(handle, "OS") { ShellWrapper.execute('uname -a') }
|
244
|
+
section(handle, "Environment") { @target.environment }
|
245
|
+
end
|
228
246
|
end
|
229
247
|
|
230
248
|
def prompt_for_confirmation(target_pid, target_cmd)
|
231
|
-
puts
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
249
|
+
puts <<-PROMPT
|
250
|
+
Are you sure you want to attach to PID #{target_pid} ('#{target_cmd}')}?
|
251
|
+
|
252
|
+
************************** !WARNING! **************************
|
253
|
+
Extracting debug information from this process may cause it to CRASH OR HANG.
|
254
|
+
|
255
|
+
It is highly recommended that you only run this script against processes that
|
256
|
+
are already unresponsive.
|
257
|
+
|
258
|
+
Additionally, the output may contain sensitive information from the program's
|
259
|
+
command line arguments, environment, or open file list. Please examine the
|
260
|
+
output before sharing it.
|
261
|
+
************************** !WARNING! **************************
|
262
|
+
|
263
|
+
To continue, type 'continue':
|
264
|
+
PROMPT
|
245
265
|
|
246
266
|
until $stdin.gets.strip == 'continue'
|
247
267
|
puts "Please type 'continue' to continue, or ctrl-c to abort."
|
@@ -256,7 +276,8 @@ fail("Could not find gdb, please ensure it is installed and in your PATH") if gd
|
|
256
276
|
|
257
277
|
target = RubyProcess.new(target_pid)
|
258
278
|
if !target.attachable?
|
259
|
-
fail("You do not appear to have permissions to attach to the target process.\nPlease check the process owner
|
279
|
+
fail("You do not appear to have permissions to attach to the target process.\nPlease check the process owner " \
|
280
|
+
'and try again with sudo if necessary')
|
260
281
|
end
|
261
282
|
if !target.alive?
|
262
283
|
fail("Could not find process with PID #{target_pid}")
|
data/config.dot
CHANGED
@@ -90,7 +90,7 @@ digraph AgentEnabled {
|
|
90
90
|
"Agent#log_seed_token"
|
91
91
|
"Agent#log_error"
|
92
92
|
"Agent#monitoring?"
|
93
|
-
"Agent#
|
93
|
+
"Agent#check_transaction_sampler_status"
|
94
94
|
"Agent#check_sql_sampler_status"
|
95
95
|
"Agent#config_transaction_tracer"
|
96
96
|
"Agent#set_sql_recording!"
|
@@ -134,8 +134,8 @@ digraph AgentEnabled {
|
|
134
134
|
|
135
135
|
"MetricFrame.update_apdex"
|
136
136
|
|
137
|
-
"
|
138
|
-
"
|
137
|
+
"TransactionInfo#force_persist_sample?"
|
138
|
+
"TransactionInfo#include_guid?"
|
139
139
|
|
140
140
|
"TransactionSampleBuilder#initialize"
|
141
141
|
"TransactionSampleBuilder#set_transaction_info"
|
@@ -257,8 +257,8 @@ digraph AgentEnabled {
|
|
257
257
|
|
258
258
|
"MetricFrame.update_apdex" -> "[apdex_t]"
|
259
259
|
|
260
|
-
"
|
261
|
-
"
|
260
|
+
"TransactionInfo#force_persist_sample?" -> "[apdex_t]"
|
261
|
+
"TransactionInfo#include_guid?" -> "[apdex_t]"
|
262
262
|
|
263
263
|
"TransactionSampleBuilder#initialize" -> "[transaction_tracer.limit_segments]"
|
264
264
|
"TransactionSampleBuilder#set_transaction_info" -> "[capture_params]"
|
data/init.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
|
# This is the initialization for the New Relic Ruby Agent when used as
|
6
6
|
# a plugin
|
@@ -14,7 +14,7 @@ require 'new_relic/control'
|
|
14
14
|
|
15
15
|
# Initializer for the NewRelic Ruby Agent
|
16
16
|
|
17
|
-
# After
|
17
|
+
# After version 2.0 of Rails we can access the configuration directly.
|
18
18
|
# We need it to add dev mode routes after initialization finished.
|
19
19
|
|
20
20
|
begin
|
@@ -24,7 +24,7 @@ begin
|
|
24
24
|
Rails.configuration
|
25
25
|
end
|
26
26
|
|
27
|
-
NewRelic::Control.instance.init_plugin
|
27
|
+
NewRelic::Control.instance.init_plugin(:config => current_config)
|
28
28
|
rescue => e
|
29
|
-
::NewRelic::Agent.logger.error
|
29
|
+
::NewRelic::Agent.logger.error("Error initializing New Relic plugin. Agent is disabled.", e)
|
30
30
|
end
|
data/install.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
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
|
-
if __FILE__ == $0 || $0
|
5
|
+
if __FILE__ == $0 || $0.include?('script/plugin') || File.basename($0) == 'rake'
|
6
6
|
$LOAD_PATH << File.expand_path(File.join(File.dirname(__FILE__), 'lib'))
|
7
7
|
require 'new_relic/cli/command'
|
8
8
|
begin
|
@@ -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
|
module Agent
|
7
7
|
class AdaptiveSampler
|
8
|
-
def initialize
|
8
|
+
def initialize(target_samples = 10, period_duration = 60)
|
9
9
|
@target = target_samples
|
10
10
|
@seen = 0
|
11
11
|
@seen_last = 0
|
@@ -84,7 +84,7 @@ module NewRelic
|
|
84
84
|
end
|
85
85
|
end
|
86
86
|
if target_changed
|
87
|
-
NewRelic::Agent.logger.debug
|
87
|
+
NewRelic::Agent.logger.debug("Sampling target set to: #{target}")
|
88
88
|
end
|
89
89
|
end
|
90
90
|
end
|
@@ -99,7 +99,7 @@ module NewRelic
|
|
99
99
|
end
|
100
100
|
end
|
101
101
|
if period_changed
|
102
|
-
NewRelic::Agent.logger.debug
|
102
|
+
NewRelic::Agent.logger.debug("Sampling period set to: #{period_duration}")
|
103
103
|
end
|
104
104
|
end
|
105
105
|
end
|
@@ -0,0 +1,34 @@
|
|
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
|
+
module NewRelic
|
6
|
+
module Agent
|
7
|
+
module Shutdown
|
8
|
+
# Attempt a graceful shutdown of the agent, flushing any remaining
|
9
|
+
# data.
|
10
|
+
def shutdown
|
11
|
+
return unless started?
|
12
|
+
::NewRelic::Agent.logger.info("Starting Agent shutdown")
|
13
|
+
|
14
|
+
stop_event_loop
|
15
|
+
trap_signals_for_litespeed
|
16
|
+
untraced_graceful_disconnect
|
17
|
+
revert_to_default_configuration
|
18
|
+
|
19
|
+
@started = nil
|
20
|
+
Control.reset
|
21
|
+
end
|
22
|
+
|
23
|
+
def untraced_graceful_disconnect
|
24
|
+
begin
|
25
|
+
NewRelic::Agent.disable_all_tracing do
|
26
|
+
graceful_disconnect
|
27
|
+
end
|
28
|
+
rescue => e
|
29
|
+
::NewRelic::Agent.logger.error(e)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,70 @@
|
|
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
|
+
module NewRelic
|
6
|
+
module Agent
|
7
|
+
module SpecialStartup
|
8
|
+
# If we're using a dispatcher that forks before serving
|
9
|
+
# requests, we need to wait until the children are forked
|
10
|
+
# before connecting, otherwise the parent process sends useless data
|
11
|
+
def using_forking_dispatcher?
|
12
|
+
# TODO: MAJOR VERSION - remove :rainbows
|
13
|
+
if [:puma, :passenger, :rainbows, :unicorn].include?(Agent.config[:dispatcher])
|
14
|
+
::NewRelic::Agent.logger.info("Deferring startup of agent reporting thread because #{Agent.config[:dispatcher]} may fork.")
|
15
|
+
true
|
16
|
+
else
|
17
|
+
false
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
# Return true if we're using resque and it hasn't had a chance to (potentially)
|
22
|
+
# daemonize itself. This avoids hanging when there's a Thread started
|
23
|
+
# before Resque calls Process.daemon (Jira RUBY-857)
|
24
|
+
def defer_for_resque?
|
25
|
+
NewRelic::Agent.config[:dispatcher] == :resque &&
|
26
|
+
NewRelic::Agent::Instrumentation::Resque::Helper.resque_fork_per_job? &&
|
27
|
+
!PipeChannelManager.listener.started?
|
28
|
+
end
|
29
|
+
|
30
|
+
def in_resque_child_process?
|
31
|
+
defined?(@service) && @service.is_a?(PipeService)
|
32
|
+
end
|
33
|
+
|
34
|
+
def defer_for_delayed_job?
|
35
|
+
NewRelic::Agent.config[:dispatcher] == :delayed_job &&
|
36
|
+
!NewRelic::DelayedJobInjection.worker_name
|
37
|
+
end
|
38
|
+
|
39
|
+
# This matters when the following three criteria are met:
|
40
|
+
#
|
41
|
+
# 1. A Sinatra 'classic' application is being run
|
42
|
+
# 2. The app is being run by executing the main file directly, rather
|
43
|
+
# than via a config.ru file.
|
44
|
+
# 3. newrelic_rpm is required *after* sinatra
|
45
|
+
#
|
46
|
+
# In this case, the entire application runs from an at_exit handler in
|
47
|
+
# Sinatra, and if we were to install ours, it would be executed before
|
48
|
+
# the one in Sinatra, meaning that we'd shutdown the agent too early
|
49
|
+
# and never collect any data.
|
50
|
+
def sinatra_classic_app?
|
51
|
+
(
|
52
|
+
defined?(Sinatra::Application) &&
|
53
|
+
Sinatra::Application.respond_to?(:run) &&
|
54
|
+
Sinatra::Application.run?
|
55
|
+
)
|
56
|
+
end
|
57
|
+
|
58
|
+
def should_install_exit_handler?
|
59
|
+
return false unless Agent.config[:send_data_on_exit]
|
60
|
+
!sinatra_classic_app? || Agent.config[:force_install_exit_handler]
|
61
|
+
end
|
62
|
+
|
63
|
+
def install_exit_handler
|
64
|
+
return unless should_install_exit_handler?
|
65
|
+
NewRelic::Agent.logger.debug("Installing at_exit handler")
|
66
|
+
at_exit { shutdown }
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
@@ -0,0 +1,163 @@
|
|
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
|
+
module NewRelic
|
6
|
+
module Agent
|
7
|
+
module StartWorkerThread
|
8
|
+
LOG_ONCE_KEYS_RESET_PERIOD = 60.0
|
9
|
+
|
10
|
+
TRANSACTION_EVENT_DATA = "transaction_event_data".freeze
|
11
|
+
CUSTOM_EVENT_DATA = "custom_event_data".freeze
|
12
|
+
ERROR_EVENT_DATA = "error_event_data".freeze
|
13
|
+
SPAN_EVENT_DATA = "span_event_data".freeze
|
14
|
+
LOG_EVENT_DATA = "log_event_data".freeze
|
15
|
+
|
16
|
+
# Try to launch the worker thread and connect to the server.
|
17
|
+
#
|
18
|
+
# See #connect for a description of connection_options.
|
19
|
+
def start_worker_thread(connection_options = {})
|
20
|
+
if disable = NewRelic::Agent.config[:disable_harvest_thread]
|
21
|
+
NewRelic::Agent.logger.info("Not starting Ruby Agent worker thread because :disable_harvest_thread is #{disable}")
|
22
|
+
return
|
23
|
+
end
|
24
|
+
|
25
|
+
::NewRelic::Agent.logger.debug("Creating Ruby Agent worker thread.")
|
26
|
+
@worker_thread = Threading::AgentThread.create('Worker Loop') do
|
27
|
+
deferred_work!(connection_options)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def create_event_loop
|
32
|
+
EventLoop.new
|
33
|
+
end
|
34
|
+
|
35
|
+
# If the @worker_thread encounters an error during the attempt to connect to the collector
|
36
|
+
# then the connect attempts enter an exponential backoff retry loop. To avoid potential
|
37
|
+
# race conditions with shutting down while also attempting to reconnect, we join the
|
38
|
+
# @worker_thread with a timeout threshold. This allows potentially connecting and flushing
|
39
|
+
# pending data to the server, but without waiting indefinitely for a reconnect to succeed.
|
40
|
+
# The use-case where this typically arises is in cronjob scheduled rake tasks where there's
|
41
|
+
# also some network stability/latency issues happening.
|
42
|
+
def stop_event_loop
|
43
|
+
@event_loop.stop if @event_loop
|
44
|
+
# Wait the end of the event loop thread.
|
45
|
+
if @worker_thread
|
46
|
+
unless @worker_thread.join(3)
|
47
|
+
::NewRelic::Agent.logger.debug("Event loop thread did not stop within 3 seconds")
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
# Certain event types may sometimes need to be on the same interval as metrics,
|
53
|
+
# so we will check config assigned in EventHarvestConfig to determine the interval
|
54
|
+
# on which to report them
|
55
|
+
def interval_for(event_type)
|
56
|
+
interval = Agent.config[:"event_report_period.#{event_type}"]
|
57
|
+
:"#{interval}_second_harvest"
|
58
|
+
end
|
59
|
+
|
60
|
+
def create_and_run_event_loop
|
61
|
+
data_harvest = :"#{Agent.config[:data_report_period]}_second_harvest"
|
62
|
+
event_harvest = :"#{Agent.config[:event_report_period]}_second_harvest"
|
63
|
+
|
64
|
+
@event_loop = create_event_loop
|
65
|
+
@event_loop.on(data_harvest) do
|
66
|
+
transmit_data
|
67
|
+
end
|
68
|
+
|
69
|
+
@event_loop.on(interval_for(TRANSACTION_EVENT_DATA)) do
|
70
|
+
transmit_analytic_event_data
|
71
|
+
end
|
72
|
+
@event_loop.on(interval_for(CUSTOM_EVENT_DATA)) do
|
73
|
+
transmit_custom_event_data
|
74
|
+
end
|
75
|
+
@event_loop.on(interval_for(ERROR_EVENT_DATA)) do
|
76
|
+
transmit_error_event_data
|
77
|
+
end
|
78
|
+
@event_loop.on(interval_for(SPAN_EVENT_DATA)) do
|
79
|
+
transmit_span_event_data
|
80
|
+
end
|
81
|
+
@event_loop.on(interval_for(LOG_EVENT_DATA)) do
|
82
|
+
transmit_log_event_data
|
83
|
+
end
|
84
|
+
|
85
|
+
@event_loop.on(:reset_log_once_keys) do
|
86
|
+
::NewRelic::Agent.logger.clear_already_logged
|
87
|
+
end
|
88
|
+
@event_loop.fire_every(Agent.config[:data_report_period], data_harvest)
|
89
|
+
@event_loop.fire_every(Agent.config[:event_report_period], event_harvest)
|
90
|
+
@event_loop.fire_every(LOG_ONCE_KEYS_RESET_PERIOD, :reset_log_once_keys)
|
91
|
+
|
92
|
+
@event_loop.run
|
93
|
+
end
|
94
|
+
|
95
|
+
# Handles the case where the server tells us to restart -
|
96
|
+
# this clears the data, clears connection attempts, and
|
97
|
+
# waits a while to reconnect.
|
98
|
+
def handle_force_restart(error)
|
99
|
+
::NewRelic::Agent.logger.debug(error.message)
|
100
|
+
drop_buffered_data
|
101
|
+
@service.force_restart if @service
|
102
|
+
@connect_state = :pending
|
103
|
+
sleep(30)
|
104
|
+
end
|
105
|
+
|
106
|
+
# when a disconnect is requested, stop the current thread, which
|
107
|
+
# is the worker thread that gathers data and talks to the
|
108
|
+
# server.
|
109
|
+
def handle_force_disconnect(error)
|
110
|
+
::NewRelic::Agent.logger.warn("Agent received a ForceDisconnectException from the server, disconnecting. (#{error.message})")
|
111
|
+
disconnect
|
112
|
+
end
|
113
|
+
|
114
|
+
# Handles an unknown error in the worker thread by logging
|
115
|
+
# it and disconnecting the agent, since we are now in an
|
116
|
+
# unknown state.
|
117
|
+
def handle_other_error(error)
|
118
|
+
::NewRelic::Agent.logger.error("Unhandled error in worker thread, disconnecting.")
|
119
|
+
# These errors are fatal (that is, they will prevent the agent from
|
120
|
+
# reporting entirely), so we really want backtraces when they happen
|
121
|
+
::NewRelic::Agent.logger.log_exception(:error, error)
|
122
|
+
disconnect
|
123
|
+
end
|
124
|
+
|
125
|
+
# a wrapper method to handle all the errors that can happen
|
126
|
+
# in the connection and worker thread system. This
|
127
|
+
# guarantees a no-throw from the background thread.
|
128
|
+
def catch_errors
|
129
|
+
yield
|
130
|
+
rescue NewRelic::Agent::ForceRestartException => e
|
131
|
+
handle_force_restart(e)
|
132
|
+
retry
|
133
|
+
rescue NewRelic::Agent::ForceDisconnectException => e
|
134
|
+
handle_force_disconnect(e)
|
135
|
+
rescue => e
|
136
|
+
handle_other_error(e)
|
137
|
+
end
|
138
|
+
|
139
|
+
# This is the method that is run in a new thread in order to
|
140
|
+
# background the harvesting and sending of data during the
|
141
|
+
# normal operation of the agent.
|
142
|
+
#
|
143
|
+
# Takes connection options that determine how we should
|
144
|
+
# connect to the server, and loops endlessly - typically we
|
145
|
+
# never return from this method unless we're shutting down
|
146
|
+
# the agent
|
147
|
+
def deferred_work!(connection_options)
|
148
|
+
catch_errors do
|
149
|
+
NewRelic::Agent.disable_all_tracing do
|
150
|
+
connect(connection_options)
|
151
|
+
if connected?
|
152
|
+
create_and_run_event_loop
|
153
|
+
# never reaches here unless there is a problem or
|
154
|
+
# the agent is exiting
|
155
|
+
else
|
156
|
+
::NewRelic::Agent.logger.debug("No connection. Worker thread ending.")
|
157
|
+
end
|
158
|
+
end
|
159
|
+
end
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|
163
|
+
end
|