newrelic_rpm 8.2.0 → 9.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +5 -2
- data/.rubocop.yml +1919 -0
- data/.rubocop_todo.yml +100 -0
- data/.simplecov +15 -0
- data/.snyk +11 -0
- data/.yardopts +1 -0
- data/Brewfile +12 -0
- data/CHANGELOG.md +3654 -2951
- data/CONTRIBUTING.md +21 -6
- data/DOCKER.md +167 -0
- data/Dockerfile +10 -0
- data/Gemfile +0 -1
- data/Guardfile +9 -8
- data/LICENSE +0 -6
- data/README.md +20 -20
- data/Rakefile +27 -29
- data/THIRD_PARTY_NOTICES.md +14 -199
- data/Thorfile +5 -0
- data/bin/newrelic +3 -2
- data/bin/newrelic_cmd +1 -0
- data/bin/nrdebug +76 -53
- data/config.dot +5 -5
- data/docker-compose.yml +107 -0
- data/init.rb +4 -6
- data/install.rb +2 -2
- data/lefthook.yml +9 -0
- data/lib/new_relic/agent/adaptive_sampler.rb +11 -7
- data/lib/new_relic/agent/agent.rb +94 -924
- data/lib/new_relic/agent/agent_helpers/connect.rb +227 -0
- data/lib/new_relic/agent/agent_helpers/harvest.rb +153 -0
- data/lib/new_relic/agent/agent_helpers/shutdown.rb +72 -0
- data/lib/new_relic/agent/agent_helpers/special_startup.rb +74 -0
- data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +167 -0
- data/lib/new_relic/agent/agent_helpers/startup.rb +202 -0
- data/lib/new_relic/agent/agent_helpers/transmit.rb +76 -0
- data/lib/new_relic/agent/agent_logger.rb +23 -19
- data/lib/new_relic/agent/attribute_filter.rb +64 -47
- data/lib/new_relic/agent/attribute_processing.rb +7 -7
- data/lib/new_relic/agent/attributes.rb +5 -4
- data/lib/new_relic/agent/audit_logger.rb +8 -3
- data/lib/new_relic/agent/autostart.rb +20 -18
- data/lib/new_relic/agent/chained_call.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command.rb +3 -3
- data/lib/new_relic/agent/commands/agent_command_router.rb +12 -11
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +5 -7
- data/lib/new_relic/agent/configuration/default_source.rb +1353 -1355
- data/lib/new_relic/agent/configuration/dotted_hash.rb +6 -5
- data/lib/new_relic/agent/configuration/environment_source.rb +11 -9
- data/lib/new_relic/agent/configuration/event_harvest_config.rb +13 -6
- data/lib/new_relic/agent/configuration/high_security_source.rb +8 -9
- data/lib/new_relic/agent/configuration/manager.rb +82 -68
- 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 +82 -85
- data/lib/new_relic/agent/configuration/server_source.rb +19 -18
- data/lib/new_relic/agent/configuration/yaml_source.rb +16 -13
- data/lib/new_relic/agent/configuration.rb +1 -1
- data/lib/new_relic/agent/connect/request_builder.rb +17 -19
- data/lib/new_relic/agent/connect/response_handler.rb +5 -8
- data/lib/new_relic/agent/custom_event_aggregator.rb +14 -15
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +4 -5
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +14 -13
- data/lib/new_relic/agent/database/obfuscator.rb +2 -2
- data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +3 -3
- data/lib/new_relic/agent/database.rb +37 -48
- data/lib/new_relic/agent/database_adapter.rb +3 -1
- data/lib/new_relic/agent/datastores/metric_helper.rb +17 -18
- data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +7 -6
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +6 -10
- data/lib/new_relic/agent/datastores/mongo.rb +1 -1
- data/lib/new_relic/agent/datastores/nosql_obfuscator.rb +41 -0
- data/lib/new_relic/agent/datastores/redis.rb +5 -7
- data/lib/new_relic/agent/datastores.rb +7 -9
- data/lib/new_relic/agent/deprecator.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +6 -6
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +31 -29
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +22 -21
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +19 -19
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +49 -51
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +5 -6
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +76 -77
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +37 -36
- data/lib/new_relic/agent/distributed_tracing.rb +33 -35
- data/lib/new_relic/agent/encoding_normalizer.rb +4 -2
- data/lib/new_relic/agent/error_collector.rb +27 -23
- data/lib/new_relic/agent/error_event_aggregator.rb +4 -5
- data/lib/new_relic/agent/error_filter.rb +15 -16
- data/lib/new_relic/agent/error_trace_aggregator.rb +4 -3
- data/lib/new_relic/agent/event_aggregator.rb +22 -21
- data/lib/new_relic/agent/event_buffer.rb +7 -8
- data/lib/new_relic/agent/event_listener.rb +1 -2
- data/lib/new_relic/agent/event_loop.rb +22 -20
- data/lib/new_relic/agent/external.rb +11 -12
- data/lib/new_relic/agent/guid_generator.rb +13 -11
- data/lib/new_relic/agent/harvester.rb +4 -5
- data/lib/new_relic/agent/heap.rb +7 -9
- data/lib/new_relic/agent/hostname.rb +20 -13
- data/lib/new_relic/agent/http_clients/abstract.rb +8 -9
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +6 -11
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +8 -9
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +4 -5
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +2 -4
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +2 -4
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +4 -5
- data/lib/new_relic/agent/http_clients/uri_util.rb +1 -3
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +9 -22
- data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +39 -0
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +37 -30
- data/lib/new_relic/agent/instrumentation/action_dispatch.rb +31 -0
- data/lib/new_relic/agent/instrumentation/action_dispatch_subscriber.rb +64 -0
- data/lib/new_relic/agent/instrumentation/action_mailbox.rb +30 -0
- data/lib/new_relic/agent/instrumentation/action_mailbox_subscriber.rb +33 -0
- data/lib/new_relic/agent/instrumentation/action_mailer.rb +30 -0
- data/lib/new_relic/agent/instrumentation/action_mailer_subscriber.rb +85 -0
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +18 -19
- data/lib/new_relic/agent/instrumentation/active_job.rb +33 -13
- data/lib/new_relic/agent/instrumentation/active_job_subscriber.rb +41 -0
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +19 -5
- data/lib/new_relic/agent/instrumentation/active_record.rb +37 -35
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +71 -61
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +49 -46
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +4 -4
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +26 -17
- data/lib/new_relic/agent/instrumentation/active_storage.rb +7 -3
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +8 -33
- data/lib/new_relic/agent/instrumentation/active_support.rb +27 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger/chain.rb +23 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +20 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb +12 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger.rb +24 -0
- data/lib/new_relic/agent/instrumentation/active_support_subscriber.rb +41 -0
- data/lib/new_relic/agent/instrumentation/bunny/chain.rb +11 -11
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +20 -22
- data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +4 -4
- data/lib/new_relic/agent/instrumentation/bunny.rb +4 -5
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/chain.rb +36 -0
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/instrumentation.rb +21 -0
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/prepend.rb +27 -0
- data/lib/new_relic/agent/instrumentation/concurrent_ruby.rb +31 -0
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +67 -58
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +41 -43
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +52 -53
- data/lib/new_relic/agent/instrumentation/curb/prepend.rb +12 -14
- data/lib/new_relic/agent/instrumentation/curb.rb +7 -7
- data/lib/new_relic/agent/instrumentation/custom_events.rb +12 -0
- data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +37 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +6 -9
- data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +4 -9
- data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +1 -2
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +28 -10
- data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +29 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +66 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch.rb +31 -0
- data/lib/new_relic/agent/instrumentation/excon/middleware.rb +6 -6
- data/lib/new_relic/agent/instrumentation/excon.rb +24 -8
- data/lib/new_relic/agent/instrumentation/fiber/chain.rb +20 -0
- data/lib/new_relic/agent/instrumentation/fiber/instrumentation.rb +24 -0
- data/lib/new_relic/agent/instrumentation/fiber/prepend.rb +18 -0
- data/lib/new_relic/agent/instrumentation/fiber.rb +25 -0
- data/lib/new_relic/agent/instrumentation/grape/chain.rb +7 -8
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +12 -12
- data/lib/new_relic/agent/instrumentation/grape/prepend.rb +4 -4
- data/lib/new_relic/agent/instrumentation/grape.rb +12 -13
- 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 +3 -4
- data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +7 -8
- data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +1 -3
- data/lib/new_relic/agent/instrumentation/httpclient.rb +3 -3
- data/lib/new_relic/agent/instrumentation/httprb/chain.rb +3 -3
- data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +11 -11
- data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +2 -2
- data/lib/new_relic/agent/instrumentation/httprb.rb +4 -4
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +4 -5
- data/lib/new_relic/agent/instrumentation/logger/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +27 -20
- data/lib/new_relic/agent/instrumentation/logger/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/logger.rb +7 -6
- data/lib/new_relic/agent/instrumentation/memcache/chain.rb +2 -3
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +26 -18
- data/lib/new_relic/agent/instrumentation/memcache/helper.rb +8 -10
- data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +20 -18
- data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +22 -15
- data/lib/new_relic/agent/instrumentation/memcache.rb +22 -23
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +11 -12
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +5 -7
- data/lib/new_relic/agent/instrumentation/mongo.rb +3 -3
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +21 -18
- data/lib/new_relic/agent/instrumentation/net_http/chain.rb +4 -5
- data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +10 -10
- data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +5 -5
- data/lib/new_relic/agent/instrumentation/net_http.rb +8 -8
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +51 -9
- data/lib/new_relic/agent/instrumentation/padrino/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +4 -3
- data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +2 -2
- data/lib/new_relic/agent/instrumentation/padrino.rb +4 -9
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +6 -6
- data/lib/new_relic/agent/instrumentation/queue_time.rb +5 -6
- data/lib/new_relic/agent/instrumentation/rack/chain.rb +27 -19
- data/lib/new_relic/agent/instrumentation/rack/helpers.rb +3 -2
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +14 -12
- data/lib/new_relic/agent/instrumentation/rack/prepend.rb +13 -7
- data/lib/new_relic/agent/instrumentation/rack.rb +15 -15
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +15 -15
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +4 -4
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +9 -8
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +17 -5
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +8 -5
- data/lib/new_relic/agent/instrumentation/rails_notifications/custom_events.rb +30 -0
- data/lib/new_relic/agent/instrumentation/rake/chain.rb +2 -7
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +14 -16
- data/lib/new_relic/agent/instrumentation/rake/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rake.rb +9 -9
- data/lib/new_relic/agent/instrumentation/redis/chain.rb +25 -14
- data/lib/new_relic/agent/instrumentation/redis/constants.rb +17 -0
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +53 -25
- data/lib/new_relic/agent/instrumentation/redis/middleware.rb +16 -0
- data/lib/new_relic/agent/instrumentation/redis/prepend.rb +10 -5
- data/lib/new_relic/agent/instrumentation/redis.rb +13 -7
- data/lib/new_relic/agent/instrumentation/resque/chain.rb +4 -5
- data/lib/new_relic/agent/instrumentation/resque/helper.rb +2 -2
- data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +4 -5
- data/lib/new_relic/agent/instrumentation/resque/prepend.rb +2 -3
- data/lib/new_relic/agent/instrumentation/resque.rb +17 -17
- data/lib/new_relic/agent/instrumentation/sequel.rb +16 -19
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +2 -2
- data/lib/new_relic/agent/instrumentation/sidekiq/client.rb +20 -0
- data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +30 -0
- data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +37 -0
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +24 -70
- data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +2 -3
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +5 -4
- 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 +26 -17
- data/lib/new_relic/agent/instrumentation/thread/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +28 -0
- data/lib/new_relic/agent/instrumentation/thread/prepend.rb +22 -0
- data/lib/new_relic/agent/instrumentation/thread.rb +20 -0
- data/lib/new_relic/agent/instrumentation/tilt/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +2 -2
- data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/tilt.rb +4 -4
- data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +5 -5
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +13 -15
- data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +2 -2
- 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 +2 -2
- data/lib/new_relic/agent/javascript_instrumentor.rb +38 -37
- data/lib/new_relic/agent/linking_metadata.rb +44 -0
- data/lib/new_relic/agent/local_log_decorator.rb +37 -0
- data/lib/new_relic/agent/log_event_aggregator.rb +235 -0
- data/lib/new_relic/agent/log_once.rb +1 -1
- data/lib/new_relic/agent/log_priority.rb +20 -0
- data/lib/new_relic/agent/logging.rb +21 -17
- data/lib/new_relic/agent/memory_logger.rb +2 -2
- data/lib/new_relic/agent/messaging.rb +61 -63
- data/lib/new_relic/agent/method_tracer.rb +28 -22
- data/lib/new_relic/agent/method_tracer_helpers.rb +88 -11
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +16 -16
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +5 -4
- data/lib/new_relic/agent/monitors/inbound_request_monitor.rb +1 -2
- data/lib/new_relic/agent/monitors/synthetics_monitor.rb +6 -9
- data/lib/new_relic/agent/monitors.rb +6 -7
- data/lib/new_relic/agent/new_relic_service/encoders.rb +6 -6
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +5 -5
- data/lib/new_relic/agent/new_relic_service/marshaller.rb +2 -2
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +4 -4
- data/lib/new_relic/agent/new_relic_service.rb +242 -185
- data/lib/new_relic/agent/{noticible_error.rb → noticeable_error.rb} +2 -5
- data/lib/new_relic/agent/null_logger.rb +7 -3
- data/lib/new_relic/agent/obfuscator.rb +8 -10
- data/lib/new_relic/agent/parameter_filtering.rb +24 -10
- data/lib/new_relic/agent/payload_metric_mapping.rb +9 -10
- data/lib/new_relic/agent/pipe_channel_manager.rb +17 -11
- data/lib/new_relic/agent/pipe_service.rb +7 -4
- data/lib/new_relic/agent/prepend_supportability.rb +2 -2
- data/lib/new_relic/agent/priority_sampled_buffer.rb +8 -11
- data/lib/new_relic/agent/range_extensions.rb +8 -28
- data/lib/new_relic/agent/rules_engine/replacement_rule.rb +11 -11
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +12 -13
- data/lib/new_relic/agent/rules_engine.rb +5 -4
- data/lib/new_relic/agent/sampler.rb +3 -4
- data/lib/new_relic/agent/sampler_collection.rb +3 -4
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +2 -1
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +6 -6
- data/lib/new_relic/agent/samplers/memory_sampler.rb +24 -13
- data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/vm_sampler.rb +21 -19
- data/lib/new_relic/agent/span_event_aggregator.rb +10 -10
- data/lib/new_relic/agent/span_event_primitive.rb +62 -56
- data/lib/new_relic/agent/sql_sampler.rb +17 -17
- data/lib/new_relic/agent/stats.rb +78 -41
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +9 -11
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +12 -13
- data/lib/new_relic/agent/stats_engine.rb +7 -7
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +7 -8
- data/lib/new_relic/agent/system_info.rb +85 -65
- data/lib/new_relic/agent/threading/agent_thread.rb +18 -14
- data/lib/new_relic/agent/threading/backtrace_node.rb +12 -13
- data/lib/new_relic/agent/threading/backtrace_service.rb +10 -9
- data/lib/new_relic/agent/threading/thread_profile.rb +22 -22
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
- data/lib/new_relic/agent/tracer.rb +82 -56
- data/lib/new_relic/agent/transaction/abstract_segment.rb +100 -37
- data/lib/new_relic/agent/transaction/datastore_segment.rb +19 -18
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +62 -56
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +43 -44
- data/lib/new_relic/agent/transaction/external_request_segment.rb +41 -34
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +30 -29
- data/lib/new_relic/agent/transaction/request_attributes.rb +35 -35
- data/lib/new_relic/agent/transaction/segment.rb +17 -10
- data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +1 -3
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/trace.rb +15 -11
- data/lib/new_relic/agent/transaction/trace_builder.rb +10 -10
- data/lib/new_relic/agent/transaction/trace_context.rb +35 -35
- data/lib/new_relic/agent/transaction/trace_node.rb +25 -24
- data/lib/new_relic/agent/transaction/tracing.rb +14 -11
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +5 -5
- data/lib/new_relic/agent/transaction.rb +169 -125
- data/lib/new_relic/agent/transaction_error_primitive.rb +27 -25
- data/lib/new_relic/agent/transaction_event_aggregator.rb +12 -12
- data/lib/new_relic/agent/transaction_event_primitive.rb +32 -33
- data/lib/new_relic/agent/transaction_event_recorder.rb +16 -15
- data/lib/new_relic/agent/transaction_metrics.rb +10 -9
- data/lib/new_relic/agent/transaction_sampler.rb +5 -6
- data/lib/new_relic/agent/transaction_time_aggregator.rb +21 -20
- data/lib/new_relic/agent/utilization/aws.rb +33 -3
- data/lib/new_relic/agent/utilization/azure.rb +3 -3
- data/lib/new_relic/agent/utilization/gcp.rb +7 -7
- data/lib/new_relic/agent/utilization/pcf.rb +5 -4
- data/lib/new_relic/agent/utilization/vendor.rb +43 -28
- data/lib/new_relic/agent/utilization_data.rb +7 -5
- data/lib/new_relic/agent/vm/jruby_vm.rb +1 -1
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +2 -2
- data/lib/new_relic/agent/vm/mri_vm.rb +40 -15
- data/lib/new_relic/agent/vm/snapshot.rb +4 -4
- data/lib/new_relic/agent/vm.rb +1 -1
- data/lib/new_relic/agent/worker_loop.rb +5 -7
- data/lib/new_relic/agent.rb +62 -81
- data/lib/new_relic/cli/command.rb +20 -22
- data/lib/new_relic/cli/commands/deployments.rb +91 -41
- data/lib/new_relic/cli/commands/install.rb +21 -24
- data/lib/new_relic/coerce.rb +15 -13
- data/lib/new_relic/collection_helper.rb +50 -48
- data/lib/new_relic/constants.rb +2 -1
- data/lib/new_relic/control/class_methods.rb +3 -3
- data/lib/new_relic/control/frameworks/external.rb +2 -2
- data/lib/new_relic/control/frameworks/rails.rb +13 -9
- data/lib/new_relic/control/frameworks/rails3.rb +3 -4
- 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 +3 -3
- data/lib/new_relic/control/frameworks/sinatra.rb +7 -1
- data/lib/new_relic/control/frameworks.rb +1 -1
- data/lib/new_relic/control/instance_methods.rb +26 -45
- data/lib/new_relic/control/instrumentation.rb +39 -11
- data/lib/new_relic/control/private_instance_methods.rb +48 -0
- data/lib/new_relic/control/server_methods.rb +3 -4
- data/lib/new_relic/control.rb +1 -2
- data/lib/new_relic/delayed_job_injection.rb +1 -1
- data/lib/new_relic/dependency_detection.rb +29 -28
- data/lib/new_relic/environment_report.rb +40 -32
- data/lib/new_relic/helper.rb +48 -7
- data/lib/new_relic/language_support.rb +29 -5
- data/lib/new_relic/latest_changes.rb +7 -6
- data/lib/new_relic/local_environment.rb +22 -26
- data/lib/new_relic/metric_data.rb +31 -26
- data/lib/new_relic/metric_spec.rb +8 -6
- data/lib/new_relic/noticed_error.rb +17 -21
- data/lib/new_relic/rack/agent_hooks.rb +1 -1
- data/lib/new_relic/rack/agent_middleware.rb +5 -3
- data/lib/new_relic/rack/browser_monitoring.rb +133 -123
- data/lib/new_relic/rack.rb +1 -1
- data/lib/new_relic/recipes/capistrano3.rb +3 -61
- data/lib/new_relic/recipes/capistrano_legacy.rb +23 -26
- data/lib/new_relic/recipes/helpers/send_deployment.rb +70 -0
- data/lib/new_relic/recipes.rb +1 -1
- data/lib/new_relic/supportability_helper.rb +8 -9
- data/lib/new_relic/traced_thread.rb +39 -0
- data/lib/new_relic/version.rb +6 -17
- data/lib/newrelic_rpm.rb +14 -3
- data/lib/sequel/extensions/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +15 -18
- data/lib/sequel/plugins/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +8 -14
- data/lib/tasks/all.rb +2 -2
- data/lib/tasks/config.rake +21 -117
- data/lib/tasks/coverage_report.rake +28 -0
- data/lib/tasks/helpers/format.rb +123 -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 +121 -0
- data/lib/tasks/instrumentation_generator/templates/Envfile.tt +9 -0
- data/lib/tasks/instrumentation_generator/templates/chain.tt +22 -0
- data/lib/tasks/instrumentation_generator/templates/chain_method.tt +8 -0
- data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +29 -0
- data/lib/tasks/instrumentation_generator/templates/instrumentation.tt +13 -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 -32
- data/lib/tasks/newrelic.rb +1 -1
- data/lib/tasks/tests.rake +10 -15
- data/newrelic.yml +544 -452
- data/newrelic_rpm.gemspec +35 -31
- data/recipes/newrelic.rb +2 -2
- data/test/agent_helper.rb +196 -180
- metadata +130 -102
- data/ROADMAP.md +0 -24
- data/bin/mongrel_rpm +0 -33
- data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +0 -44
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +0 -75
- data/lib/new_relic/agent/instrumentation/authlogic.rb +0 -25
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +0 -204
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +0 -26
- data/lib/new_relic/agent/instrumentation/sunspot.rb +0 -33
- /data/lib/tasks/{config.html.erb → helpers/config.html.erb} +0 -0
- /data/lib/tasks/{config.text.erb → helpers/config.text.erb} +0 -0
@@ -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 'socket'
|
6
6
|
require 'net/https'
|
@@ -9,6 +9,7 @@ require 'logger'
|
|
9
9
|
require 'zlib'
|
10
10
|
require 'stringio'
|
11
11
|
require 'new_relic/constants'
|
12
|
+
require 'new_relic/traced_thread'
|
12
13
|
require 'new_relic/coerce'
|
13
14
|
require 'new_relic/agent/autostart'
|
14
15
|
require 'new_relic/agent/harvester'
|
@@ -25,6 +26,7 @@ require 'new_relic/agent/monitors'
|
|
25
26
|
require 'new_relic/agent/transaction_event_recorder'
|
26
27
|
require 'new_relic/agent/custom_event_aggregator'
|
27
28
|
require 'new_relic/agent/span_event_aggregator'
|
29
|
+
require 'new_relic/agent/log_event_aggregator'
|
28
30
|
require 'new_relic/agent/sampler_collection'
|
29
31
|
require 'new_relic/agent/javascript_instrumentor'
|
30
32
|
require 'new_relic/agent/vm/monotonic_gc_profiler'
|
@@ -35,9 +37,16 @@ require 'new_relic/agent/adaptive_sampler'
|
|
35
37
|
require 'new_relic/agent/connect/request_builder'
|
36
38
|
require 'new_relic/agent/connect/response_handler'
|
37
39
|
|
40
|
+
require 'new_relic/agent/agent_helpers/connect'
|
41
|
+
require 'new_relic/agent/agent_helpers/harvest'
|
42
|
+
require 'new_relic/agent/agent_helpers/start_worker_thread'
|
43
|
+
require 'new_relic/agent/agent_helpers/startup'
|
44
|
+
require 'new_relic/agent/agent_helpers/special_startup'
|
45
|
+
require 'new_relic/agent/agent_helpers/shutdown'
|
46
|
+
require 'new_relic/agent/agent_helpers/transmit'
|
47
|
+
|
38
48
|
module NewRelic
|
39
49
|
module Agent
|
40
|
-
|
41
50
|
# The Agent is a singleton that is instantiated when the plugin is
|
42
51
|
# activated. It collects performance data from ruby applications
|
43
52
|
# in realtime as the application runs, and periodically sends that
|
@@ -47,43 +56,59 @@ module NewRelic
|
|
47
56
|
::NewRelic::Agent.config
|
48
57
|
end
|
49
58
|
|
59
|
+
include NewRelic::Agent::AgentHelpers::Connect
|
60
|
+
include NewRelic::Agent::AgentHelpers::Harvest
|
61
|
+
include NewRelic::Agent::AgentHelpers::StartWorkerThread
|
62
|
+
include NewRelic::Agent::AgentHelpers::SpecialStartup
|
63
|
+
include NewRelic::Agent::AgentHelpers::Startup
|
64
|
+
include NewRelic::Agent::AgentHelpers::Shutdown
|
65
|
+
include NewRelic::Agent::AgentHelpers::Transmit
|
66
|
+
|
50
67
|
def initialize
|
68
|
+
init_basics
|
69
|
+
init_components
|
70
|
+
init_event_handlers
|
71
|
+
setup_attribute_filter
|
72
|
+
end
|
73
|
+
|
74
|
+
private
|
75
|
+
|
76
|
+
def init_basics
|
51
77
|
@started = false
|
52
78
|
@event_loop = nil
|
53
79
|
@worker_thread = nil
|
54
|
-
|
55
|
-
@
|
56
|
-
|
57
|
-
@
|
58
|
-
@stats_engine = StatsEngine.new
|
59
|
-
@transaction_sampler = TransactionSampler.new
|
60
|
-
@sql_sampler = SqlSampler.new
|
61
|
-
@agent_command_router = Commands::AgentCommandRouter.new @events
|
62
|
-
@monitors = Monitors.new @events
|
63
|
-
@error_collector = ErrorCollector.new @events
|
64
|
-
@transaction_rules = RulesEngine.new
|
65
|
-
@harvest_samplers = SamplerCollection.new @events
|
66
|
-
@monotonic_gc_profiler = VM::MonotonicGCProfiler.new
|
67
|
-
@javascript_instrumentor = JavascriptInstrumentor.new @events
|
68
|
-
@adaptive_sampler = AdaptiveSampler.new(Agent.config[:sampling_target],
|
69
|
-
Agent.config[:sampling_target_period_in_seconds])
|
70
|
-
|
71
|
-
@harvester = Harvester.new @events
|
72
|
-
@after_fork_lock = Mutex.new
|
73
|
-
|
74
|
-
@transaction_event_recorder = TransactionEventRecorder.new @events
|
75
|
-
@custom_event_aggregator = CustomEventAggregator.new @events
|
76
|
-
@span_event_aggregator = SpanEventAggregator.new @events
|
77
|
-
|
78
|
-
@connect_state = :pending
|
79
|
-
@connect_attempts = 0
|
80
|
-
@waited_on_connect = nil
|
81
|
-
@connected_pid = nil
|
82
|
-
|
80
|
+
@connect_state = :pending
|
81
|
+
@connect_attempts = 0
|
82
|
+
@waited_on_connect = nil
|
83
|
+
@connected_pid = nil
|
83
84
|
@wait_on_connect_mutex = Mutex.new
|
85
|
+
@after_fork_lock = Mutex.new
|
84
86
|
@wait_on_connect_condition = ConditionVariable.new
|
87
|
+
end
|
85
88
|
|
86
|
-
|
89
|
+
def init_components
|
90
|
+
@service = NewRelicService.new
|
91
|
+
@events = EventListener.new
|
92
|
+
@stats_engine = StatsEngine.new
|
93
|
+
@transaction_sampler = TransactionSampler.new
|
94
|
+
@sql_sampler = SqlSampler.new
|
95
|
+
@transaction_rules = RulesEngine.new
|
96
|
+
@monotonic_gc_profiler = VM::MonotonicGCProfiler.new
|
97
|
+
@adaptive_sampler = AdaptiveSampler.new(Agent.config[:sampling_target],
|
98
|
+
Agent.config[:sampling_target_period_in_seconds])
|
99
|
+
end
|
100
|
+
|
101
|
+
def init_event_handlers
|
102
|
+
@agent_command_router = Commands::AgentCommandRouter.new(@events)
|
103
|
+
@monitors = Monitors.new(@events)
|
104
|
+
@error_collector = ErrorCollector.new(@events)
|
105
|
+
@harvest_samplers = SamplerCollection.new(@events)
|
106
|
+
@javascript_instrumentor = JavaScriptInstrumentor.new(@events)
|
107
|
+
@harvester = Harvester.new(@events)
|
108
|
+
@transaction_event_recorder = TransactionEventRecorder.new(@events)
|
109
|
+
@custom_event_aggregator = CustomEventAggregator.new(@events)
|
110
|
+
@span_event_aggregator = SpanEventAggregator.new(@events)
|
111
|
+
@log_event_aggregator = LogEventAggregator.new(@events)
|
87
112
|
end
|
88
113
|
|
89
114
|
def setup_attribute_filter
|
@@ -94,6 +119,8 @@ module NewRelic
|
|
94
119
|
end
|
95
120
|
end
|
96
121
|
|
122
|
+
public
|
123
|
+
|
97
124
|
def refresh_attribute_filter
|
98
125
|
@attribute_filter = AttributeFilter.new(Agent.config)
|
99
126
|
end
|
@@ -110,7 +137,6 @@ module NewRelic
|
|
110
137
|
# Holds all the methods defined on NewRelic::Agent::Agent
|
111
138
|
# instances
|
112
139
|
module InstanceMethods
|
113
|
-
|
114
140
|
# the statistics engine that holds all the timeslice data
|
115
141
|
attr_reader :stats_engine
|
116
142
|
# the transaction sampler that handles recording transactions
|
@@ -142,12 +168,13 @@ module NewRelic
|
|
142
168
|
# collector on connect. The former are applied during txns,
|
143
169
|
# the latter during harvest.
|
144
170
|
attr_accessor :transaction_rules
|
145
|
-
#
|
171
|
+
# Responsible for restarting the harvest thread
|
146
172
|
attr_reader :harvester
|
147
173
|
# GC::Profiler.total_time is not monotonic so we wrap it.
|
148
174
|
attr_reader :monotonic_gc_profiler
|
149
175
|
attr_reader :custom_event_aggregator
|
150
176
|
attr_reader :span_event_aggregator
|
177
|
+
attr_reader :log_event_aggregator
|
151
178
|
attr_reader :transaction_event_recorder
|
152
179
|
attr_reader :attribute_filter
|
153
180
|
attr_reader :adaptive_sampler
|
@@ -169,7 +196,7 @@ module NewRelic
|
|
169
196
|
# It assumes the parent process initialized the agent, but does
|
170
197
|
# not assume the agent started.
|
171
198
|
#
|
172
|
-
# The call is idempotent, but not
|
199
|
+
# The call is idempotent, but not reentrant.
|
173
200
|
#
|
174
201
|
# * It clears any metrics carried over from the parent process
|
175
202
|
# * Restarts the sampler thread if necessary
|
@@ -184,29 +211,35 @@ module NewRelic
|
|
184
211
|
# * <tt>:keep_retrying => false</tt> if we try to initiate a new
|
185
212
|
# connection, this tells me to only try it once so this method returns
|
186
213
|
# quickly if there is some kind of latency with the server.
|
187
|
-
def after_fork(options={})
|
214
|
+
def after_fork(options = {})
|
215
|
+
return unless needs_after_fork_work?
|
216
|
+
|
217
|
+
::NewRelic::Agent.logger.debug("Starting the worker thread in #{Process.pid} (parent #{Process.ppid}) after forking.")
|
218
|
+
|
219
|
+
channel_id = options[:report_to_channel]
|
220
|
+
install_pipe_service(channel_id) if channel_id
|
221
|
+
|
222
|
+
# Clear out locks and stats left over from parent process
|
223
|
+
reset_objects_with_locks
|
224
|
+
drop_buffered_data
|
225
|
+
|
226
|
+
setup_and_start_agent(options)
|
227
|
+
end
|
228
|
+
|
229
|
+
def needs_after_fork_work?
|
188
230
|
needs_restart = false
|
189
231
|
@after_fork_lock.synchronize do
|
190
232
|
needs_restart = @harvester.needs_restart?
|
191
233
|
@harvester.mark_started
|
192
234
|
end
|
193
235
|
|
194
|
-
return if !needs_restart ||
|
236
|
+
return false if !needs_restart ||
|
195
237
|
!Agent.config[:agent_enabled] ||
|
196
238
|
!Agent.config[:monitor_mode] ||
|
197
239
|
disconnected? ||
|
198
240
|
!control.security_settings_valid?
|
199
241
|
|
200
|
-
|
201
|
-
|
202
|
-
channel_id = options[:report_to_channel]
|
203
|
-
install_pipe_service(channel_id) if channel_id
|
204
|
-
|
205
|
-
# Clear out locks and stats left over from parent process
|
206
|
-
reset_objects_with_locks
|
207
|
-
drop_buffered_data
|
208
|
-
|
209
|
-
setup_and_start_agent(options)
|
242
|
+
true
|
210
243
|
end
|
211
244
|
|
212
245
|
def install_pipe_service(channel_id)
|
@@ -220,48 +253,11 @@ module NewRelic
|
|
220
253
|
end
|
221
254
|
end
|
222
255
|
|
223
|
-
# True if we have initialized and completed 'start'
|
224
|
-
def started?
|
225
|
-
@started
|
226
|
-
end
|
227
|
-
|
228
|
-
# Attempt a graceful shutdown of the agent, flushing any remaining
|
229
|
-
# data.
|
230
|
-
def shutdown
|
231
|
-
return unless started?
|
232
|
-
::NewRelic::Agent.logger.info "Starting Agent shutdown"
|
233
|
-
|
234
|
-
stop_event_loop
|
235
|
-
trap_signals_for_litespeed
|
236
|
-
untraced_graceful_disconnect
|
237
|
-
revert_to_default_configuration
|
238
|
-
|
239
|
-
@started = nil
|
240
|
-
Control.reset
|
241
|
-
end
|
242
|
-
|
243
256
|
def revert_to_default_configuration
|
244
257
|
Agent.config.remove_config_type(:manual)
|
245
258
|
Agent.config.remove_config_type(:server)
|
246
259
|
end
|
247
260
|
|
248
|
-
# If the @worker_thread encounters an error during the attempt to connect to the collector
|
249
|
-
# then the connect attempts enter an exponential backoff retry loop. To avoid potential
|
250
|
-
# race conditions with shutting down while also attempting to reconnect, we join the
|
251
|
-
# @worker_thread with a timeout threshold. This allows potentially connecting and flushing
|
252
|
-
# pending data to the server, but without waiting indefinitely for a reconnect to succeed.
|
253
|
-
# The use-case where this typically arises is in cronjob scheduled rake tasks where there's
|
254
|
-
# also some network stability/latency issues happening.
|
255
|
-
def stop_event_loop
|
256
|
-
@event_loop.stop if @event_loop
|
257
|
-
# Wait the end of the event loop thread.
|
258
|
-
if @worker_thread
|
259
|
-
unless @worker_thread.join(3)
|
260
|
-
::NewRelic::Agent.logger.debug "Event loop thread did not stop within 3 seconds"
|
261
|
-
end
|
262
|
-
end
|
263
|
-
end
|
264
|
-
|
265
261
|
def trap_signals_for_litespeed
|
266
262
|
# if litespeed, then ignore all future SIGUSR1 - it's
|
267
263
|
# litespeed trying to shut us down
|
@@ -271,20 +267,10 @@ module NewRelic
|
|
271
267
|
end
|
272
268
|
end
|
273
269
|
|
274
|
-
def untraced_graceful_disconnect
|
275
|
-
begin
|
276
|
-
NewRelic::Agent.disable_all_tracing do
|
277
|
-
graceful_disconnect
|
278
|
-
end
|
279
|
-
rescue => e
|
280
|
-
::NewRelic::Agent.logger.error e
|
281
|
-
end
|
282
|
-
end
|
283
|
-
|
284
270
|
# Sets a thread local variable as to whether we should or
|
285
271
|
# should not record sql in the current thread. Returns the
|
286
272
|
# previous value, if there is one
|
287
|
-
def set_record_sql(should_record) #THREAD_LOCAL_ACCESS
|
273
|
+
def set_record_sql(should_record) # THREAD_LOCAL_ACCESS
|
288
274
|
state = Tracer.state
|
289
275
|
prev = state.record_sql
|
290
276
|
state.record_sql = should_record
|
@@ -295,264 +281,16 @@ module NewRelic
|
|
295
281
|
# thread. This uses a stack which allows us to disable tracing
|
296
282
|
# children of a transaction without affecting the tracing of
|
297
283
|
# the whole transaction
|
298
|
-
def push_trace_execution_flag(should_trace=false) #THREAD_LOCAL_ACCESS
|
284
|
+
def push_trace_execution_flag(should_trace = false) # THREAD_LOCAL_ACCESS
|
299
285
|
Tracer.state.push_traced(should_trace)
|
300
286
|
end
|
301
287
|
|
302
288
|
# Pop the current trace execution status. Restore trace execution status
|
303
289
|
# to what it was before we pushed the current flag.
|
304
|
-
def pop_trace_execution_flag #THREAD_LOCAL_ACCESS
|
290
|
+
def pop_trace_execution_flag # THREAD_LOCAL_ACCESS
|
305
291
|
Tracer.state.pop_traced
|
306
292
|
end
|
307
293
|
|
308
|
-
# Herein lies the corpse of the former 'start' method. May
|
309
|
-
# its unmatched flog score rest in pieces.
|
310
|
-
module Start
|
311
|
-
# Check whether we have already started, which is an error condition
|
312
|
-
def already_started?
|
313
|
-
if started?
|
314
|
-
::NewRelic::Agent.logger.error("Agent Started Already!")
|
315
|
-
true
|
316
|
-
end
|
317
|
-
end
|
318
|
-
|
319
|
-
# The agent is disabled when it is not force enabled by the
|
320
|
-
# 'agent_enabled' option (e.g. in a manual start), or
|
321
|
-
# enabled normally through the configuration file
|
322
|
-
def disabled?
|
323
|
-
!Agent.config[:agent_enabled]
|
324
|
-
end
|
325
|
-
|
326
|
-
# Log startup information that we almost always want to know
|
327
|
-
def log_startup
|
328
|
-
log_environment
|
329
|
-
log_dispatcher
|
330
|
-
log_app_name
|
331
|
-
end
|
332
|
-
|
333
|
-
# Log the environment the app thinks it's running in.
|
334
|
-
# Useful in debugging, as this is the key for config YAML lookups.
|
335
|
-
def log_environment
|
336
|
-
::NewRelic::Agent.logger.info "Environment: #{NewRelic::Control.instance.env}"
|
337
|
-
end
|
338
|
-
|
339
|
-
# Logs the dispatcher to the log file to assist with
|
340
|
-
# debugging. When no debugger is present, logs this fact to
|
341
|
-
# assist with proper dispatcher detection
|
342
|
-
def log_dispatcher
|
343
|
-
dispatcher_name = Agent.config[:dispatcher].to_s
|
344
|
-
|
345
|
-
if dispatcher_name.empty?
|
346
|
-
::NewRelic::Agent.logger.info 'No known dispatcher detected.'
|
347
|
-
else
|
348
|
-
::NewRelic::Agent.logger.info "Dispatcher: #{dispatcher_name}"
|
349
|
-
end
|
350
|
-
end
|
351
|
-
|
352
|
-
def log_app_name
|
353
|
-
::NewRelic::Agent.logger.info "Application: #{Agent.config[:app_name].join(", ")}"
|
354
|
-
end
|
355
|
-
|
356
|
-
def log_ignore_url_regexes
|
357
|
-
regexes = NewRelic::Agent.config[:'rules.ignore_url_regexes']
|
358
|
-
|
359
|
-
unless regexes.empty?
|
360
|
-
::NewRelic::Agent.logger.info "Ignoring URLs that match the following regexes: #{regexes.map(&:inspect).join(", ")}."
|
361
|
-
end
|
362
|
-
end
|
363
|
-
|
364
|
-
# Logs the configured application names
|
365
|
-
def app_name_configured?
|
366
|
-
names = Agent.config[:app_name]
|
367
|
-
return names.respond_to?(:any?) && names.any?
|
368
|
-
end
|
369
|
-
|
370
|
-
# Connecting in the foreground blocks further startup of the
|
371
|
-
# agent until we have a connection - useful in cases where
|
372
|
-
# you're trying to log a very-short-running process and want
|
373
|
-
# to get statistics from before a server connection
|
374
|
-
# (typically 20 seconds) exists
|
375
|
-
def connect_in_foreground
|
376
|
-
NewRelic::Agent.disable_all_tracing { connect(:keep_retrying => false) }
|
377
|
-
end
|
378
|
-
|
379
|
-
# This matters when the following three criteria are met:
|
380
|
-
#
|
381
|
-
# 1. A Sinatra 'classic' application is being run
|
382
|
-
# 2. The app is being run by executing the main file directly, rather
|
383
|
-
# than via a config.ru file.
|
384
|
-
# 3. newrelic_rpm is required *after* sinatra
|
385
|
-
#
|
386
|
-
# In this case, the entire application runs from an at_exit handler in
|
387
|
-
# Sinatra, and if we were to install ours, it would be executed before
|
388
|
-
# the one in Sinatra, meaning that we'd shutdown the agent too early
|
389
|
-
# and never collect any data.
|
390
|
-
def sinatra_classic_app?
|
391
|
-
(
|
392
|
-
defined?(Sinatra::Application) &&
|
393
|
-
Sinatra::Application.respond_to?(:run) &&
|
394
|
-
Sinatra::Application.run?
|
395
|
-
)
|
396
|
-
end
|
397
|
-
|
398
|
-
def should_install_exit_handler?
|
399
|
-
return false unless Agent.config[:send_data_on_exit]
|
400
|
-
!sinatra_classic_app? || Agent.config[:force_install_exit_handler]
|
401
|
-
end
|
402
|
-
|
403
|
-
def install_exit_handler
|
404
|
-
return unless should_install_exit_handler?
|
405
|
-
NewRelic::Agent.logger.debug("Installing at_exit handler")
|
406
|
-
at_exit { shutdown }
|
407
|
-
end
|
408
|
-
|
409
|
-
# Classy logging of the agent version and the current pid,
|
410
|
-
# so we can disambiguate processes in the log file and make
|
411
|
-
# sure they're running a reasonable version
|
412
|
-
def log_version_and_pid
|
413
|
-
::NewRelic::Agent.logger.debug "New Relic Ruby Agent #{NewRelic::VERSION::STRING} Initialized: pid = #{$$}"
|
414
|
-
end
|
415
|
-
|
416
|
-
# Warn the user if they have configured their agent not to
|
417
|
-
# send data, that way we can see this clearly in the log file
|
418
|
-
def monitoring?
|
419
|
-
if Agent.config[:monitor_mode]
|
420
|
-
true
|
421
|
-
else
|
422
|
-
::NewRelic::Agent.logger.warn('Agent configured not to send data in this environment.')
|
423
|
-
false
|
424
|
-
end
|
425
|
-
end
|
426
|
-
|
427
|
-
# Tell the user when the license key is missing so they can
|
428
|
-
# fix it by adding it to the file
|
429
|
-
def has_license_key?
|
430
|
-
if Agent.config[:license_key] && Agent.config[:license_key].length > 0
|
431
|
-
true
|
432
|
-
else
|
433
|
-
::NewRelic::Agent.logger.warn("No license key found. " +
|
434
|
-
"This often means your newrelic.yml file was not found, or it lacks a section for the running environment, '#{NewRelic::Control.instance.env}'. You may also want to try linting your newrelic.yml to ensure it is valid YML.")
|
435
|
-
false
|
436
|
-
end
|
437
|
-
end
|
438
|
-
|
439
|
-
# A correct license key exists and is of the proper length
|
440
|
-
def has_correct_license_key?
|
441
|
-
has_license_key? && correct_license_length
|
442
|
-
end
|
443
|
-
|
444
|
-
# A license key is an arbitrary 40 character string,
|
445
|
-
# usually looks something like a SHA1 hash
|
446
|
-
def correct_license_length
|
447
|
-
key = Agent.config[:license_key]
|
448
|
-
|
449
|
-
if key.length == 40
|
450
|
-
true
|
451
|
-
else
|
452
|
-
::NewRelic::Agent.logger.error("Invalid license key: #{key}")
|
453
|
-
false
|
454
|
-
end
|
455
|
-
end
|
456
|
-
|
457
|
-
# If we're using a dispatcher that forks before serving
|
458
|
-
# requests, we need to wait until the children are forked
|
459
|
-
# before connecting, otherwise the parent process sends useless data
|
460
|
-
def using_forking_dispatcher?
|
461
|
-
if [:puma, :passenger, :rainbows, :unicorn].include? Agent.config[:dispatcher]
|
462
|
-
::NewRelic::Agent.logger.info "Deferring startup of agent reporting thread because #{Agent.config[:dispatcher]} may fork."
|
463
|
-
true
|
464
|
-
else
|
465
|
-
false
|
466
|
-
end
|
467
|
-
end
|
468
|
-
|
469
|
-
# Return true if we're using resque and it hasn't had a chance to (potentially)
|
470
|
-
# daemonize itself. This avoids hanging when there's a Thread started
|
471
|
-
# before Resque calls Process.daemon (Jira RUBY-857)
|
472
|
-
def defer_for_resque?
|
473
|
-
NewRelic::Agent.config[:dispatcher] == :resque &&
|
474
|
-
NewRelic::Agent::Instrumentation::Resque::Helper.resque_fork_per_job? &&
|
475
|
-
!PipeChannelManager.listener.started?
|
476
|
-
end
|
477
|
-
|
478
|
-
def in_resque_child_process?
|
479
|
-
defined?(@service) && @service.is_a?(PipeService)
|
480
|
-
end
|
481
|
-
|
482
|
-
# Sanity-check the agent configuration and start the agent,
|
483
|
-
# setting up the worker thread and the exit handler to shut
|
484
|
-
# down the agent
|
485
|
-
def check_config_and_start_agent
|
486
|
-
return unless monitoring? && has_correct_license_key?
|
487
|
-
return if using_forking_dispatcher?
|
488
|
-
setup_and_start_agent
|
489
|
-
end
|
490
|
-
|
491
|
-
# This is the shared method between the main agent startup and the
|
492
|
-
# after_fork call restarting the thread in deferred dispatchers.
|
493
|
-
#
|
494
|
-
# Treatment of @started and env report is important to get right.
|
495
|
-
def setup_and_start_agent(options={})
|
496
|
-
@started = true
|
497
|
-
@harvester.mark_started
|
498
|
-
|
499
|
-
unless in_resque_child_process?
|
500
|
-
install_exit_handler
|
501
|
-
environment_for_connect
|
502
|
-
@harvest_samplers.load_samplers unless Agent.config[:disable_samplers]
|
503
|
-
end
|
504
|
-
|
505
|
-
connect_in_foreground if Agent.config[:sync_startup]
|
506
|
-
start_worker_thread(options)
|
507
|
-
end
|
508
|
-
end
|
509
|
-
|
510
|
-
include Start
|
511
|
-
|
512
|
-
def defer_for_delayed_job?
|
513
|
-
NewRelic::Agent.config[:dispatcher] == :delayed_job &&
|
514
|
-
!NewRelic::DelayedJobInjection.worker_name
|
515
|
-
end
|
516
|
-
|
517
|
-
# Check to see if the agent should start, returning +true+ if it should.
|
518
|
-
def agent_should_start?
|
519
|
-
return false if already_started? || disabled?
|
520
|
-
|
521
|
-
if defer_for_delayed_job?
|
522
|
-
::NewRelic::Agent.logger.debug "Deferring startup for DelayedJob"
|
523
|
-
return false
|
524
|
-
end
|
525
|
-
|
526
|
-
if defer_for_resque?
|
527
|
-
::NewRelic::Agent.logger.debug "Deferring startup for Resque in case it daemonizes"
|
528
|
-
return false
|
529
|
-
end
|
530
|
-
|
531
|
-
unless app_name_configured?
|
532
|
-
NewRelic::Agent.logger.error "No application name configured.",
|
533
|
-
"The Agent cannot start without at least one. Please check your ",
|
534
|
-
"newrelic.yml and ensure that it is valid and has at least one ",
|
535
|
-
"value set for app_name in the #{NewRelic::Control.instance.env} ",
|
536
|
-
"environment."
|
537
|
-
return false
|
538
|
-
end
|
539
|
-
|
540
|
-
return true
|
541
|
-
end
|
542
|
-
|
543
|
-
# Logs a bunch of data and starts the agent, if needed
|
544
|
-
def start
|
545
|
-
return unless agent_should_start?
|
546
|
-
|
547
|
-
log_startup
|
548
|
-
check_config_and_start_agent
|
549
|
-
log_version_and_pid
|
550
|
-
|
551
|
-
events.subscribe(:initial_configuration_complete) do
|
552
|
-
log_ignore_url_regexes
|
553
|
-
end
|
554
|
-
end
|
555
|
-
|
556
294
|
# Clear out the metric data, errors, and transaction traces, etc.
|
557
295
|
def drop_buffered_data
|
558
296
|
@stats_engine.reset!
|
@@ -561,6 +299,7 @@ module NewRelic
|
|
561
299
|
@transaction_event_recorder.drop_buffered_data
|
562
300
|
@custom_event_aggregator.reset!
|
563
301
|
@span_event_aggregator.reset!
|
302
|
+
@log_event_aggregator.reset!
|
564
303
|
@sql_sampler.reset!
|
565
304
|
|
566
305
|
if Agent.config[:clear_transaction_state_after_fork]
|
@@ -577,330 +316,34 @@ module NewRelic
|
|
577
316
|
|
578
317
|
def flush_pipe_data
|
579
318
|
if connected? && @service.is_a?(PipeService)
|
580
|
-
|
581
|
-
transmit_analytic_event_data
|
582
|
-
transmit_custom_event_data
|
583
|
-
transmit_error_event_data
|
584
|
-
transmit_span_event_data
|
319
|
+
transmit_data_types
|
585
320
|
end
|
586
321
|
end
|
587
322
|
|
588
323
|
private
|
589
324
|
|
590
|
-
# All of this module used to be contained in the
|
591
|
-
# start_worker_thread method - this is an artifact of
|
592
|
-
# refactoring and can be moved, renamed, etc at will
|
593
|
-
module StartWorkerThread
|
594
|
-
def create_event_loop
|
595
|
-
EventLoop.new
|
596
|
-
end
|
597
|
-
|
598
|
-
LOG_ONCE_KEYS_RESET_PERIOD = 60.0
|
599
|
-
|
600
|
-
# Certain event types may sometimes need to be on the same interval as metrics,
|
601
|
-
# so we will check config assigned in EventHarvestConfig to determine the interval
|
602
|
-
# on which to report them
|
603
|
-
def interval_for event_type
|
604
|
-
interval = Agent.config[:"event_report_period.#{event_type}"]
|
605
|
-
:"#{interval}_second_harvest"
|
606
|
-
end
|
607
|
-
|
608
|
-
ANALYTIC_EVENT_DATA = "analytic_event_data".freeze
|
609
|
-
CUSTOM_EVENT_DATA = "custom_event_data".freeze
|
610
|
-
ERROR_EVENT_DATA = "error_event_data".freeze
|
611
|
-
SPAN_EVENT_DATA = "span_event_data".freeze
|
612
|
-
|
613
|
-
def create_and_run_event_loop
|
614
|
-
data_harvest = :"#{Agent.config[:data_report_period]}_second_harvest"
|
615
|
-
event_harvest = :"#{Agent.config[:event_report_period]}_second_harvest"
|
616
|
-
|
617
|
-
@event_loop = create_event_loop
|
618
|
-
@event_loop.on(data_harvest) do
|
619
|
-
transmit_data
|
620
|
-
end
|
621
|
-
|
622
|
-
@event_loop.on(interval_for ANALYTIC_EVENT_DATA) do
|
623
|
-
transmit_analytic_event_data
|
624
|
-
end
|
625
|
-
@event_loop.on(interval_for CUSTOM_EVENT_DATA) do
|
626
|
-
transmit_custom_event_data
|
627
|
-
end
|
628
|
-
@event_loop.on(interval_for ERROR_EVENT_DATA) do
|
629
|
-
transmit_error_event_data
|
630
|
-
end
|
631
|
-
@event_loop.on(interval_for SPAN_EVENT_DATA) do
|
632
|
-
transmit_span_event_data
|
633
|
-
end
|
634
|
-
@event_loop.on(:reset_log_once_keys) do
|
635
|
-
::NewRelic::Agent.logger.clear_already_logged
|
636
|
-
end
|
637
|
-
@event_loop.fire_every(Agent.config[:data_report_period], data_harvest)
|
638
|
-
@event_loop.fire_every(Agent.config[:event_report_period], event_harvest)
|
639
|
-
@event_loop.fire_every(LOG_ONCE_KEYS_RESET_PERIOD, :reset_log_once_keys)
|
640
|
-
|
641
|
-
@event_loop.run
|
642
|
-
end
|
643
|
-
|
644
|
-
# Handles the case where the server tells us to restart -
|
645
|
-
# this clears the data, clears connection attempts, and
|
646
|
-
# waits a while to reconnect.
|
647
|
-
def handle_force_restart(error)
|
648
|
-
::NewRelic::Agent.logger.debug error.message
|
649
|
-
drop_buffered_data
|
650
|
-
@service.force_restart if @service
|
651
|
-
@connect_state = :pending
|
652
|
-
sleep 30
|
653
|
-
end
|
654
|
-
|
655
|
-
# when a disconnect is requested, stop the current thread, which
|
656
|
-
# is the worker thread that gathers data and talks to the
|
657
|
-
# server.
|
658
|
-
def handle_force_disconnect(error)
|
659
|
-
::NewRelic::Agent.logger.warn "Agent received a ForceDisconnectException from the server, disconnecting. (#{error.message})"
|
660
|
-
disconnect
|
661
|
-
end
|
662
|
-
|
663
|
-
# Handles an unknown error in the worker thread by logging
|
664
|
-
# it and disconnecting the agent, since we are now in an
|
665
|
-
# unknown state.
|
666
|
-
def handle_other_error(error)
|
667
|
-
::NewRelic::Agent.logger.error "Unhandled error in worker thread, disconnecting."
|
668
|
-
# These errors are fatal (that is, they will prevent the agent from
|
669
|
-
# reporting entirely), so we really want backtraces when they happen
|
670
|
-
::NewRelic::Agent.logger.log_exception(:error, error)
|
671
|
-
disconnect
|
672
|
-
end
|
673
|
-
|
674
|
-
# a wrapper method to handle all the errors that can happen
|
675
|
-
# in the connection and worker thread system. This
|
676
|
-
# guarantees a no-throw from the background thread.
|
677
|
-
def catch_errors
|
678
|
-
yield
|
679
|
-
rescue NewRelic::Agent::ForceRestartException => e
|
680
|
-
handle_force_restart(e)
|
681
|
-
retry
|
682
|
-
rescue NewRelic::Agent::ForceDisconnectException => e
|
683
|
-
handle_force_disconnect(e)
|
684
|
-
rescue => e
|
685
|
-
handle_other_error(e)
|
686
|
-
end
|
687
|
-
|
688
|
-
# This is the method that is run in a new thread in order to
|
689
|
-
# background the harvesting and sending of data during the
|
690
|
-
# normal operation of the agent.
|
691
|
-
#
|
692
|
-
# Takes connection options that determine how we should
|
693
|
-
# connect to the server, and loops endlessly - typically we
|
694
|
-
# never return from this method unless we're shutting down
|
695
|
-
# the agent
|
696
|
-
def deferred_work!(connection_options)
|
697
|
-
catch_errors do
|
698
|
-
NewRelic::Agent.disable_all_tracing do
|
699
|
-
connect(connection_options)
|
700
|
-
if connected?
|
701
|
-
create_and_run_event_loop
|
702
|
-
# never reaches here unless there is a problem or
|
703
|
-
# the agent is exiting
|
704
|
-
else
|
705
|
-
::NewRelic::Agent.logger.debug "No connection. Worker thread ending."
|
706
|
-
end
|
707
|
-
end
|
708
|
-
end
|
709
|
-
end
|
710
|
-
end
|
711
|
-
include StartWorkerThread
|
712
|
-
|
713
|
-
# Try to launch the worker thread and connect to the server.
|
714
|
-
#
|
715
|
-
# See #connect for a description of connection_options.
|
716
|
-
def start_worker_thread(connection_options = {})
|
717
|
-
if disable = NewRelic::Agent.config[:disable_harvest_thread]
|
718
|
-
NewRelic::Agent.logger.info "Not starting Ruby Agent worker thread because :disable_harvest_thread is #{disable}"
|
719
|
-
return
|
720
|
-
end
|
721
|
-
|
722
|
-
::NewRelic::Agent.logger.debug "Creating Ruby Agent worker thread."
|
723
|
-
@worker_thread = Threading::AgentThread.create('Worker Loop') do
|
724
|
-
deferred_work!(connection_options)
|
725
|
-
end
|
726
|
-
end
|
727
|
-
|
728
325
|
# A shorthand for NewRelic::Control.instance
|
729
326
|
def control
|
730
327
|
NewRelic::Control.instance
|
731
328
|
end
|
732
329
|
|
733
|
-
# This module is an artifact of a refactoring of the connect
|
734
|
-
# method - all of its methods are used in that context, so it
|
735
|
-
# can be refactored at will. It should be fully tested
|
736
|
-
module Connect
|
737
|
-
# number of attempts we've made to contact the server
|
738
|
-
attr_accessor :connect_attempts
|
739
|
-
|
740
|
-
# Disconnect just sets the connect state to disconnected, preventing
|
741
|
-
# further retries.
|
742
|
-
def disconnect
|
743
|
-
@connect_state = :disconnected
|
744
|
-
true
|
745
|
-
end
|
746
|
-
|
747
|
-
def connected?
|
748
|
-
@connect_state == :connected
|
749
|
-
end
|
750
|
-
|
751
|
-
def disconnected?
|
752
|
-
@connect_state == :disconnected
|
753
|
-
end
|
754
|
-
|
755
|
-
# Don't connect if we're already connected, or if we tried to connect
|
756
|
-
# and were rejected with prejudice because of a license issue, unless
|
757
|
-
# we're forced to by force_reconnect.
|
758
|
-
def should_connect?(force=false)
|
759
|
-
force || (!connected? && !disconnected?)
|
760
|
-
end
|
761
|
-
|
762
|
-
# Per the spec at
|
763
|
-
# /agents/agent-specs/Collector-Response-Handling.md, retry
|
764
|
-
# connections after a specific backoff sequence to prevent
|
765
|
-
# hammering the server.
|
766
|
-
def connect_retry_period
|
767
|
-
NewRelic::CONNECT_RETRY_PERIODS[connect_attempts] || NewRelic::MAX_RETRY_PERIOD
|
768
|
-
end
|
769
|
-
|
770
|
-
def note_connect_failure
|
771
|
-
self.connect_attempts += 1
|
772
|
-
end
|
773
|
-
|
774
|
-
# When we have a problem connecting to the server, we need
|
775
|
-
# to tell the user what happened, since this is not an error
|
776
|
-
# we can handle gracefully.
|
777
|
-
def log_error(error)
|
778
|
-
::NewRelic::Agent.logger.error "Error establishing connection with New Relic Service at #{control.server}:", error
|
779
|
-
end
|
780
|
-
|
781
|
-
# When the server sends us an error with the license key, we
|
782
|
-
# want to tell the user that something went wrong, and let
|
783
|
-
# them know where to go to get a valid license key
|
784
|
-
#
|
785
|
-
# After this runs, it disconnects the agent so that it will
|
786
|
-
# no longer try to connect to the server, saving the
|
787
|
-
# application and the server load
|
788
|
-
def handle_license_error(error)
|
789
|
-
::NewRelic::Agent.logger.error( \
|
790
|
-
error.message, \
|
791
|
-
"Visit NewRelic.com to obtain a valid license key, or to upgrade your account.")
|
792
|
-
disconnect
|
793
|
-
end
|
794
|
-
|
795
|
-
def handle_unrecoverable_agent_error(error)
|
796
|
-
::NewRelic::Agent.logger.error(error.message)
|
797
|
-
disconnect
|
798
|
-
shutdown
|
799
|
-
end
|
800
|
-
|
801
|
-
# Checks whether we should send environment info, and if so,
|
802
|
-
# returns the snapshot from the local environment.
|
803
|
-
# Generating the EnvironmentReport has the potential to trigger
|
804
|
-
# require calls in Rails environments, so this method should only
|
805
|
-
# be called synchronously from on the main thread.
|
806
|
-
def environment_for_connect
|
807
|
-
@environment_report ||= Agent.config[:send_environment_info] ? Array(EnvironmentReport.new) : []
|
808
|
-
end
|
809
|
-
|
810
|
-
# Constructs and memoizes an event_harvest_config hash to be used in
|
811
|
-
# the payload sent during connect (and reconnect)
|
812
|
-
def event_harvest_config
|
813
|
-
@event_harvest_config ||= Configuration::EventHarvestConfig.from_config(Agent.config)
|
814
|
-
end
|
815
|
-
|
816
|
-
# Builds the payload to send to the connect service,
|
817
|
-
# connects, then configures the agent using the response from
|
818
|
-
# the connect service
|
819
|
-
def connect_to_server
|
820
|
-
request_builder = ::NewRelic::Agent::Connect::RequestBuilder.new \
|
821
|
-
@service,
|
822
|
-
Agent.config,
|
823
|
-
event_harvest_config,
|
824
|
-
environment_for_connect
|
825
|
-
connect_response = @service.connect request_builder.connect_payload
|
826
|
-
|
827
|
-
response_handler = ::NewRelic::Agent::Connect::ResponseHandler.new(self, Agent.config)
|
828
|
-
response_handler.configure_agent(connect_response)
|
829
|
-
|
830
|
-
log_connection connect_response if connect_response
|
831
|
-
connect_response
|
832
|
-
end
|
833
|
-
|
834
|
-
# Logs when we connect to the server, for debugging purposes
|
835
|
-
# - makes sure we know if an agent has not connected
|
836
|
-
def log_connection(config_data)
|
837
|
-
::NewRelic::Agent.logger.debug "Connected to NewRelic Service at #{@service.collector.name}"
|
838
|
-
::NewRelic::Agent.logger.debug "Agent Run = #{@service.agent_id}."
|
839
|
-
::NewRelic::Agent.logger.debug "Connection data = #{config_data.inspect}"
|
840
|
-
if config_data['messages'] && config_data['messages'].any?
|
841
|
-
log_collector_messages(config_data['messages'])
|
842
|
-
end
|
843
|
-
end
|
844
|
-
|
845
|
-
def log_collector_messages(messages)
|
846
|
-
messages.each do |message|
|
847
|
-
::NewRelic::Agent.logger.send(message['level'].downcase, message['message'])
|
848
|
-
end
|
849
|
-
end
|
850
|
-
|
851
|
-
# apdex_f is always 4 times the apdex_t
|
852
|
-
def apdex_f
|
853
|
-
(4 * Agent.config[:apdex_t]).to_f
|
854
|
-
end
|
855
|
-
|
856
|
-
class WaitOnConnectTimeout < StandardError
|
857
|
-
end
|
858
|
-
|
859
|
-
# Used for testing to let us know we've actually started to wait
|
860
|
-
def waited_on_connect?
|
861
|
-
@waited_on_connect
|
862
|
-
end
|
863
|
-
|
864
|
-
def signal_connected
|
865
|
-
@wait_on_connect_mutex.synchronize do
|
866
|
-
@wait_on_connect_condition.signal
|
867
|
-
end
|
868
|
-
end
|
869
|
-
|
870
|
-
def wait_on_connect(timeout)
|
871
|
-
return if connected?
|
872
|
-
|
873
|
-
@waited_on_connect = true
|
874
|
-
NewRelic::Agent.logger.debug("Waiting on connect to complete.")
|
875
|
-
|
876
|
-
@wait_on_connect_mutex.synchronize do
|
877
|
-
@wait_on_connect_condition.wait(@wait_on_connect_mutex, timeout)
|
878
|
-
end
|
879
|
-
|
880
|
-
unless connected?
|
881
|
-
raise WaitOnConnectTimeout, "Agent was unable to connect in #{timeout} seconds."
|
882
|
-
end
|
883
|
-
end
|
884
|
-
|
885
|
-
end
|
886
|
-
include Connect
|
887
|
-
|
888
330
|
def container_for_endpoint(endpoint)
|
889
331
|
case endpoint
|
890
|
-
when :metric_data
|
332
|
+
when :metric_data then @stats_engine
|
891
333
|
when :transaction_sample_data then @transaction_sampler
|
892
|
-
when :error_data
|
893
|
-
when :error_event_data
|
894
|
-
when :analytic_event_data
|
895
|
-
when :custom_event_data
|
896
|
-
when :span_event_data
|
897
|
-
when :sql_trace_data
|
334
|
+
when :error_data then @error_collector.error_trace_aggregator
|
335
|
+
when :error_event_data then @error_collector.error_event_aggregator
|
336
|
+
when :analytic_event_data then transaction_event_aggregator
|
337
|
+
when :custom_event_data then @custom_event_aggregator
|
338
|
+
when :span_event_data then span_event_aggregator
|
339
|
+
when :sql_trace_data then @sql_sampler
|
340
|
+
when :log_event_data then @log_event_aggregator
|
898
341
|
end
|
899
342
|
end
|
900
343
|
|
901
344
|
def merge_data_for_endpoint(endpoint, data)
|
902
345
|
if data && !data.empty?
|
903
|
-
container = container_for_endpoint
|
346
|
+
container = container_for_endpoint(endpoint)
|
904
347
|
if container.respond_to?(:has_metadata?) && container.has_metadata?
|
905
348
|
container_for_endpoint(endpoint).merge!(data, false)
|
906
349
|
else
|
@@ -913,284 +356,11 @@ module NewRelic
|
|
913
356
|
|
914
357
|
public :merge_data_for_endpoint
|
915
358
|
|
916
|
-
# Establish a connection to New Relic servers.
|
917
|
-
#
|
918
|
-
# By default, if a connection has already been established, this method
|
919
|
-
# will be a no-op.
|
920
|
-
#
|
921
|
-
# @param [Hash] options
|
922
|
-
# @option options [Boolean] :keep_retrying (true)
|
923
|
-
# If true, this method will block until a connection is successfully
|
924
|
-
# established, continuing to retry upon failure. If false, this method
|
925
|
-
# will return after either successfully connecting, or after failing
|
926
|
-
# once.
|
927
|
-
#
|
928
|
-
# @option options [Boolean] :force_reconnect (false)
|
929
|
-
# If true, this method will force establishment of a new connection
|
930
|
-
# with New Relic, even if there is already an existing connection.
|
931
|
-
# This is useful primarily when re-establishing a new connection after
|
932
|
-
# forking off from a parent process.
|
933
|
-
#
|
934
|
-
def connect(options={})
|
935
|
-
defaults = {
|
936
|
-
:keep_retrying => Agent.config[:keep_retrying],
|
937
|
-
:force_reconnect => Agent.config[:force_reconnect]
|
938
|
-
}
|
939
|
-
opts = defaults.merge(options)
|
940
|
-
|
941
|
-
return unless should_connect?(opts[:force_reconnect])
|
942
|
-
|
943
|
-
::NewRelic::Agent.logger.debug "Connecting Process to New Relic: #$0"
|
944
|
-
connect_to_server
|
945
|
-
@connected_pid = $$
|
946
|
-
@connect_state = :connected
|
947
|
-
signal_connected
|
948
|
-
rescue NewRelic::Agent::ForceDisconnectException => e
|
949
|
-
handle_force_disconnect(e)
|
950
|
-
rescue NewRelic::Agent::LicenseException => e
|
951
|
-
handle_license_error(e)
|
952
|
-
rescue NewRelic::Agent::UnrecoverableAgentException => e
|
953
|
-
handle_unrecoverable_agent_error(e)
|
954
|
-
rescue StandardError, Timeout::Error, NewRelic::Agent::ServerConnectionException => e
|
955
|
-
# Allow a killed (aborting) thread to continue exiting during shutdown.
|
956
|
-
# See: https://github.com/newrelic/newrelic-ruby-agent/issues/340
|
957
|
-
raise if Thread.current.status == 'aborting'
|
958
|
-
|
959
|
-
log_error(e)
|
960
|
-
if opts[:keep_retrying]
|
961
|
-
note_connect_failure
|
962
|
-
::NewRelic::Agent.logger.info "Will re-attempt in #{connect_retry_period} seconds"
|
963
|
-
sleep connect_retry_period
|
964
|
-
retry
|
965
|
-
end
|
966
|
-
rescue Exception => e
|
967
|
-
::NewRelic::Agent.logger.error "Exception of unexpected type during Agent#connect():", e
|
968
|
-
|
969
|
-
raise
|
970
|
-
end
|
971
|
-
|
972
359
|
# Delegates to the control class to determine the root
|
973
360
|
# directory of this project
|
974
361
|
def determine_home_directory
|
975
362
|
control.root
|
976
363
|
end
|
977
|
-
|
978
|
-
# Harvests data from the given container, sends it to the named endpoint
|
979
|
-
# on the service, and automatically merges back in upon a recoverable
|
980
|
-
# failure.
|
981
|
-
#
|
982
|
-
# The given container should respond to:
|
983
|
-
#
|
984
|
-
# #harvest!
|
985
|
-
# returns a payload that contains enumerable collection of data items and
|
986
|
-
# optional metadata to be sent to the collector.
|
987
|
-
#
|
988
|
-
# #reset!
|
989
|
-
# drop any stored data and reset to a clean state.
|
990
|
-
#
|
991
|
-
# #merge!(payload)
|
992
|
-
# merge the given payload back into the internal buffer of the
|
993
|
-
# container, so that it may be harvested again later.
|
994
|
-
#
|
995
|
-
def harvest_and_send_from_container(container, endpoint)
|
996
|
-
payload = harvest_from_container(container, endpoint)
|
997
|
-
sample_count = harvest_size container, payload
|
998
|
-
if sample_count > 0
|
999
|
-
NewRelic::Agent.logger.debug("Sending #{sample_count} items to #{endpoint}")
|
1000
|
-
send_data_to_endpoint(endpoint, payload, container)
|
1001
|
-
end
|
1002
|
-
end
|
1003
|
-
|
1004
|
-
def harvest_size container, items
|
1005
|
-
if container.respond_to?(:has_metadata?) && container.has_metadata? && !items.empty?
|
1006
|
-
items.last.size
|
1007
|
-
else
|
1008
|
-
items.size
|
1009
|
-
end
|
1010
|
-
end
|
1011
|
-
|
1012
|
-
def harvest_from_container(container, endpoint)
|
1013
|
-
items = []
|
1014
|
-
begin
|
1015
|
-
items = container.harvest!
|
1016
|
-
rescue => e
|
1017
|
-
NewRelic::Agent.logger.error("Failed to harvest #{endpoint} data, resetting. Error: ", e)
|
1018
|
-
container.reset!
|
1019
|
-
end
|
1020
|
-
items
|
1021
|
-
end
|
1022
|
-
|
1023
|
-
def send_data_to_endpoint(endpoint, payload, container)
|
1024
|
-
begin
|
1025
|
-
@service.send(endpoint, payload)
|
1026
|
-
rescue ForceRestartException, ForceDisconnectException
|
1027
|
-
raise
|
1028
|
-
rescue SerializationError => e
|
1029
|
-
NewRelic::Agent.logger.warn("Failed to serialize data for #{endpoint}, discarding. Error: ", e)
|
1030
|
-
rescue UnrecoverableServerException => e
|
1031
|
-
NewRelic::Agent.logger.warn("#{endpoint} data was rejected by remote service, discarding. Error: ", e)
|
1032
|
-
rescue ServerConnectionException => e
|
1033
|
-
log_remote_unavailable(endpoint, e)
|
1034
|
-
container.merge!(payload)
|
1035
|
-
rescue => e
|
1036
|
-
NewRelic::Agent.logger.info("Unable to send #{endpoint} data, will try again later. Error: ", e)
|
1037
|
-
container.merge!(payload)
|
1038
|
-
end
|
1039
|
-
end
|
1040
|
-
|
1041
|
-
def harvest_and_send_timeslice_data
|
1042
|
-
TransactionTimeAggregator.harvest!
|
1043
|
-
harvest_and_send_from_container(@stats_engine, :metric_data)
|
1044
|
-
end
|
1045
|
-
|
1046
|
-
def harvest_and_send_slowest_sql
|
1047
|
-
harvest_and_send_from_container(@sql_sampler, :sql_trace_data)
|
1048
|
-
end
|
1049
|
-
|
1050
|
-
# This handles getting the transaction traces and then sending
|
1051
|
-
# them across the wire. This includes gathering SQL
|
1052
|
-
# explanations, stripping out stack traces, and normalizing
|
1053
|
-
# SQL. note that we explain only the sql statements whose
|
1054
|
-
# nodes' execution times exceed our threshold (to avoid
|
1055
|
-
# unnecessary overhead of running explains on fast queries.)
|
1056
|
-
def harvest_and_send_transaction_traces
|
1057
|
-
harvest_and_send_from_container(@transaction_sampler, :transaction_sample_data)
|
1058
|
-
end
|
1059
|
-
|
1060
|
-
def harvest_and_send_for_agent_commands
|
1061
|
-
harvest_and_send_from_container(@agent_command_router, :profile_data)
|
1062
|
-
end
|
1063
|
-
|
1064
|
-
def harvest_and_send_errors
|
1065
|
-
harvest_and_send_from_container(@error_collector.error_trace_aggregator, :error_data)
|
1066
|
-
end
|
1067
|
-
|
1068
|
-
def harvest_and_send_analytic_event_data
|
1069
|
-
harvest_and_send_from_container(transaction_event_aggregator, :analytic_event_data)
|
1070
|
-
harvest_and_send_from_container(synthetics_event_aggregator, :analytic_event_data)
|
1071
|
-
end
|
1072
|
-
|
1073
|
-
def harvest_and_send_custom_event_data
|
1074
|
-
harvest_and_send_from_container(@custom_event_aggregator, :custom_event_data)
|
1075
|
-
end
|
1076
|
-
|
1077
|
-
def harvest_and_send_error_event_data
|
1078
|
-
harvest_and_send_from_container @error_collector.error_event_aggregator, :error_event_data
|
1079
|
-
end
|
1080
|
-
|
1081
|
-
def harvest_and_send_span_event_data
|
1082
|
-
harvest_and_send_from_container(span_event_aggregator, :span_event_data)
|
1083
|
-
end
|
1084
|
-
|
1085
|
-
def check_for_and_handle_agent_commands
|
1086
|
-
begin
|
1087
|
-
@agent_command_router.check_for_and_handle_agent_commands
|
1088
|
-
rescue ForceRestartException, ForceDisconnectException
|
1089
|
-
raise
|
1090
|
-
rescue UnrecoverableServerException => e
|
1091
|
-
NewRelic::Agent.logger.warn("get_agent_commands message was rejected by remote service, discarding. Error: ", e)
|
1092
|
-
rescue ServerConnectionException => e
|
1093
|
-
log_remote_unavailable(:get_agent_commands, e)
|
1094
|
-
rescue => e
|
1095
|
-
NewRelic::Agent.logger.info("Error during check_for_and_handle_agent_commands, will retry later: ", e)
|
1096
|
-
end
|
1097
|
-
end
|
1098
|
-
|
1099
|
-
def log_remote_unavailable(endpoint, e)
|
1100
|
-
NewRelic::Agent.logger.debug("Unable to send #{endpoint} data, will try again later. Error: ", e)
|
1101
|
-
NewRelic::Agent.record_metric("Supportability/remote_unavailable", 0.0)
|
1102
|
-
NewRelic::Agent.record_metric("Supportability/remote_unavailable/#{endpoint.to_s}", 0.0)
|
1103
|
-
end
|
1104
|
-
|
1105
|
-
TRANSACTION_EVENT = "TransactionEvent".freeze
|
1106
|
-
def transmit_analytic_event_data
|
1107
|
-
transmit_single_data_type(:harvest_and_send_analytic_event_data, TRANSACTION_EVENT)
|
1108
|
-
end
|
1109
|
-
|
1110
|
-
CUSTOM_EVENT = "CustomEvent".freeze
|
1111
|
-
def transmit_custom_event_data
|
1112
|
-
transmit_single_data_type(:harvest_and_send_custom_event_data, CUSTOM_EVENT)
|
1113
|
-
end
|
1114
|
-
|
1115
|
-
ERROR_EVENT = "ErrorEvent".freeze
|
1116
|
-
def transmit_error_event_data
|
1117
|
-
transmit_single_data_type(:harvest_and_send_error_event_data, ERROR_EVENT)
|
1118
|
-
end
|
1119
|
-
|
1120
|
-
SPAN_EVENT = "SpanEvent".freeze
|
1121
|
-
def transmit_span_event_data
|
1122
|
-
transmit_single_data_type(:harvest_and_send_span_event_data, SPAN_EVENT)
|
1123
|
-
end
|
1124
|
-
|
1125
|
-
def transmit_single_data_type(harvest_method, supportability_name)
|
1126
|
-
now = Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
1127
|
-
|
1128
|
-
msg = "Sending #{supportability_name} data to New Relic Service"
|
1129
|
-
::NewRelic::Agent.logger.debug msg
|
1130
|
-
|
1131
|
-
@service.session do # use http keep-alive
|
1132
|
-
self.send(harvest_method)
|
1133
|
-
end
|
1134
|
-
ensure
|
1135
|
-
duration = Process.clock_gettime(Process::CLOCK_MONOTONIC) - now
|
1136
|
-
NewRelic::Agent.record_metric("Supportability/#{supportability_name}Harvest", duration)
|
1137
|
-
end
|
1138
|
-
|
1139
|
-
def transmit_data
|
1140
|
-
now = Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
1141
|
-
::NewRelic::Agent.logger.debug "Sending data to New Relic Service"
|
1142
|
-
|
1143
|
-
@events.notify(:before_harvest)
|
1144
|
-
@service.session do # use http keep-alive
|
1145
|
-
harvest_and_send_errors
|
1146
|
-
harvest_and_send_error_event_data
|
1147
|
-
harvest_and_send_transaction_traces
|
1148
|
-
harvest_and_send_slowest_sql
|
1149
|
-
harvest_and_send_timeslice_data
|
1150
|
-
harvest_and_send_span_event_data
|
1151
|
-
|
1152
|
-
check_for_and_handle_agent_commands
|
1153
|
-
harvest_and_send_for_agent_commands
|
1154
|
-
end
|
1155
|
-
ensure
|
1156
|
-
NewRelic::Agent::Database.close_connections
|
1157
|
-
duration = Process.clock_gettime(Process::CLOCK_MONOTONIC) - now
|
1158
|
-
NewRelic::Agent.record_metric('Supportability/Harvest', duration)
|
1159
|
-
end
|
1160
|
-
|
1161
|
-
# This method contacts the server to send remaining data and
|
1162
|
-
# let the server know that the agent is shutting down - this
|
1163
|
-
# allows us to do things like accurately set the end of the
|
1164
|
-
# lifetime of the process
|
1165
|
-
#
|
1166
|
-
# If this process comes from a parent process, it will not
|
1167
|
-
# disconnect, so that the parent process can continue to send data
|
1168
|
-
def graceful_disconnect
|
1169
|
-
if connected?
|
1170
|
-
begin
|
1171
|
-
@service.request_timeout = 10
|
1172
|
-
|
1173
|
-
@events.notify(:before_shutdown)
|
1174
|
-
transmit_data
|
1175
|
-
transmit_analytic_event_data
|
1176
|
-
transmit_custom_event_data
|
1177
|
-
transmit_error_event_data
|
1178
|
-
transmit_span_event_data
|
1179
|
-
|
1180
|
-
if @connected_pid == $$ && !@service.kind_of?(NewRelic::Agent::NewRelicService)
|
1181
|
-
::NewRelic::Agent.logger.debug "Sending New Relic service agent run shutdown message"
|
1182
|
-
@service.shutdown
|
1183
|
-
else
|
1184
|
-
::NewRelic::Agent.logger.debug "This agent connected from parent process #{@connected_pid}--not sending shutdown"
|
1185
|
-
end
|
1186
|
-
::NewRelic::Agent.logger.debug "Graceful disconnect complete"
|
1187
|
-
rescue Timeout::Error, StandardError => e
|
1188
|
-
::NewRelic::Agent.logger.debug "Error when disconnecting #{e.class.name}: #{e.message}"
|
1189
|
-
end
|
1190
|
-
else
|
1191
|
-
::NewRelic::Agent.logger.debug "Bypassing graceful disconnect - agent not connected"
|
1192
|
-
end
|
1193
|
-
end
|
1194
364
|
end
|
1195
365
|
|
1196
366
|
extend ClassMethods
|