newrelic_rpm 6.15.0 → 8.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +7 -1
- data/.rubocop.yml +1817 -0
- data/.rubocop_todo.yml +59 -0
- data/.simplecov +15 -0
- data/.snyk +11 -0
- data/.yardopts +1 -0
- data/Brewfile +12 -0
- data/CHANGELOG.md +754 -40
- data/CONTRIBUTING.md +32 -5
- data/DOCKER.md +167 -0
- data/Dockerfile +10 -0
- data/Gemfile +0 -1
- data/Guardfile +9 -8
- data/LICENSE +0 -6
- data/README.md +21 -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 +13 -9
- data/lib/new_relic/agent/agent/shutdown.rb +35 -0
- data/lib/new_relic/agent/agent/special_startup.rb +72 -0
- data/lib/new_relic/agent/agent/start_worker_thread.rb +163 -0
- data/lib/new_relic/agent/agent/startup.rb +197 -0
- data/lib/new_relic/agent/agent.rb +178 -555
- data/lib/new_relic/agent/agent_logger.rb +23 -19
- data/lib/new_relic/agent/attribute_filter.rb +66 -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 -19
- 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 +9 -7
- data/lib/new_relic/agent/configuration/default_source.rb +1728 -1194
- 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 +40 -17
- data/lib/new_relic/agent/configuration/high_security_source.rb +9 -8
- data/lib/new_relic/agent/configuration/manager.rb +82 -69
- 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 +90 -77
- data/lib/new_relic/agent/configuration/server_source.rb +21 -19
- data/lib/new_relic/agent/configuration/yaml_source.rb +31 -7
- data/lib/new_relic/agent/configuration.rb +1 -1
- data/lib/new_relic/agent/connect/request_builder.rb +18 -18
- data/lib/new_relic/agent/connect/response_handler.rb +5 -8
- data/lib/new_relic/agent/custom_event_aggregator.rb +14 -14
- 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 +53 -47
- 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 +6 -11
- data/lib/new_relic/agent/datastores/nosql_obfuscator.rb +41 -0
- data/lib/new_relic/agent/datastores/redis.rb +5 -11
- data/lib/new_relic/agent/datastores.rb +11 -13
- data/lib/new_relic/agent/deprecator.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +10 -10
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +39 -32
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +22 -22
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +19 -19
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +50 -52
- 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 +39 -38
- data/lib/new_relic/agent/distributed_tracing.rb +32 -100
- data/lib/new_relic/agent/encoding_normalizer.rb +4 -2
- data/lib/new_relic/agent/error_collector.rb +73 -54
- data/lib/new_relic/agent/error_event_aggregator.rb +4 -5
- data/lib/new_relic/agent/error_filter.rb +174 -0
- 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 +25 -23
- data/lib/new_relic/agent/external.rb +11 -44
- data/lib/new_relic/agent/guid_generator.rb +4 -11
- data/lib/new_relic/agent/harvester.rb +4 -5
- data/lib/new_relic/agent/heap.rb +6 -8
- data/lib/new_relic/agent/hostname.rb +20 -13
- data/lib/new_relic/agent/http_clients/abstract.rb +10 -11
- 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 +8 -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 +8 -8
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +38 -31
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +12 -13
- data/lib/new_relic/agent/instrumentation/active_job.rb +14 -7
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +20 -6
- data/lib/new_relic/agent/instrumentation/active_record.rb +29 -27
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +71 -61
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +31 -44
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +4 -4
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +27 -20
- data/lib/new_relic/agent/instrumentation/active_storage.rb +2 -2
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +18 -15
- 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/acts_as_solr.rb +18 -10
- data/lib/new_relic/agent/instrumentation/authlogic.rb +10 -2
- data/lib/new_relic/agent/instrumentation/bunny/chain.rb +45 -0
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +150 -0
- data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +35 -0
- data/lib/new_relic/agent/instrumentation/bunny.rb +11 -154
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +68 -58
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +91 -0
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +221 -0
- data/lib/new_relic/agent/instrumentation/curb/prepend.rb +61 -0
- data/lib/new_relic/agent/instrumentation/curb.rb +11 -243
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +65 -54
- data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +35 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +48 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +33 -0
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +29 -53
- 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 +5 -5
- data/lib/new_relic/agent/instrumentation/excon.rb +22 -24
- data/lib/new_relic/agent/instrumentation/grape/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +100 -0
- data/lib/new_relic/agent/instrumentation/grape/prepend.rb +17 -0
- data/lib/new_relic/agent/instrumentation/grape.rb +11 -112
- 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 +24 -0
- data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +37 -0
- data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/httpclient.rb +10 -32
- data/lib/new_relic/agent/instrumentation/httprb/chain.rb +22 -0
- data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +30 -0
- data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/httprb.rb +29 -0
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +4 -5
- data/lib/new_relic/agent/instrumentation/logger/chain.rb +21 -0
- data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +66 -0
- data/lib/new_relic/agent/instrumentation/logger/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/logger.rb +26 -0
- data/lib/new_relic/agent/instrumentation/memcache/chain.rb +15 -0
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +57 -128
- data/lib/new_relic/agent/instrumentation/memcache/helper.rb +59 -0
- data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +90 -0
- data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +101 -0
- data/lib/new_relic/agent/instrumentation/memcache.rb +56 -72
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +13 -12
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +5 -7
- data/lib/new_relic/agent/instrumentation/mongo.rb +5 -136
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +21 -18
- data/lib/new_relic/agent/instrumentation/net_http/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/{net_prepend.rb → net_http/instrumentation.rb} +13 -13
- data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +21 -0
- data/lib/new_relic/agent/instrumentation/net_http.rb +44 -0
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +10 -9
- data/lib/new_relic/agent/instrumentation/padrino/chain.rb +38 -0
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +28 -0
- data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +20 -0
- data/lib/new_relic/agent/instrumentation/padrino.rb +20 -58
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/queue_time.rb +8 -9
- data/lib/new_relic/agent/instrumentation/rack/chain.rb +66 -0
- data/lib/new_relic/agent/instrumentation/rack/helpers.rb +33 -0
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +75 -0
- data/lib/new_relic/agent/instrumentation/rack/prepend.rb +43 -0
- data/lib/new_relic/agent/instrumentation/rack.rb +30 -140
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +16 -52
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +5 -4
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +3 -3
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +3 -2
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +13 -3
- data/lib/new_relic/agent/instrumentation/rake/chain.rb +20 -0
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +149 -0
- data/lib/new_relic/agent/instrumentation/rake/prepend.rb +14 -0
- data/lib/new_relic/agent/instrumentation/rake.rb +16 -157
- data/lib/new_relic/agent/instrumentation/redis/chain.rb +45 -0
- data/lib/new_relic/agent/instrumentation/redis/constants.rb +17 -0
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +72 -0
- data/lib/new_relic/agent/instrumentation/redis/middleware.rb +16 -0
- data/lib/new_relic/agent/instrumentation/redis/prepend.rb +29 -0
- data/lib/new_relic/agent/instrumentation/redis.rb +18 -107
- data/lib/new_relic/agent/instrumentation/resque/chain.rb +21 -0
- data/lib/new_relic/agent/instrumentation/resque/helper.rb +19 -0
- data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +34 -0
- data/lib/new_relic/agent/instrumentation/resque/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/resque.rb +28 -39
- data/lib/new_relic/agent/instrumentation/sequel.rb +14 -16
- 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 +23 -64
- data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +55 -0
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +30 -36
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +125 -0
- data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +33 -0
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +2 -2
- data/lib/new_relic/agent/instrumentation/sinatra.rb +34 -163
- data/lib/new_relic/agent/instrumentation/sunspot.rb +11 -3
- 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 +24 -0
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +41 -0
- data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/tilt.rb +25 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +22 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +80 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +14 -0
- data/lib/new_relic/agent/instrumentation/typhoeus.rb +12 -91
- 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 +47 -41
- 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 +24 -21
- data/lib/new_relic/agent/memory_logger.rb +2 -2
- data/lib/new_relic/agent/messaging.rb +65 -81
- data/lib/new_relic/agent/method_tracer.rb +154 -149
- data/lib/new_relic/agent/method_tracer_helpers.rb +85 -3
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +25 -17
- 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 +5 -4
- data/lib/new_relic/agent/new_relic_service.rb +248 -196
- 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 +27 -17
- data/lib/new_relic/agent/pipe_service.rb +8 -5
- 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 +13 -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 +3 -2
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +12 -9
- 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 +12 -12
- data/lib/new_relic/agent/span_event_primitive.rb +62 -56
- data/lib/new_relic/agent/sql_sampler.rb +18 -18
- 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 +8 -8
- 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 +14 -14
- data/lib/new_relic/agent/threading/thread_profile.rb +23 -23
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
- data/lib/new_relic/agent/tracer.rb +76 -85
- data/lib/new_relic/agent/transaction/abstract_segment.rb +103 -40
- data/lib/new_relic/agent/transaction/datastore_segment.rb +21 -17
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +63 -56
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +43 -44
- data/lib/new_relic/agent/transaction/external_request_segment.rb +44 -34
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +31 -36
- data/lib/new_relic/agent/transaction/request_attributes.rb +35 -35
- data/lib/new_relic/agent/transaction/segment.rb +14 -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 +4 -4
- data/lib/new_relic/agent/transaction.rb +164 -145
- 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 +26 -25
- 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 +5 -5
- data/lib/new_relic/agent/vm.rb +1 -1
- data/lib/new_relic/agent/worker_loop.rb +10 -12
- data/lib/new_relic/agent.rb +64 -75
- data/lib/new_relic/cli/command.rb +20 -22
- data/lib/new_relic/cli/commands/deployments.rb +92 -42
- data/lib/new_relic/cli/commands/install.rb +12 -15
- data/lib/new_relic/coerce.rb +15 -13
- data/lib/new_relic/collection_helper.rb +50 -48
- data/lib/new_relic/constants.rb +1 -4
- 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 +23 -17
- 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 +23 -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 +126 -19
- 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 +24 -18
- 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 +22 -30
- 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 +69 -0
- data/lib/new_relic/recipes.rb +1 -1
- data/lib/new_relic/supportability_helper.rb +9 -10
- data/lib/new_relic/traced_thread.rb +35 -0
- data/lib/new_relic/version.rb +6 -17
- data/lib/newrelic_rpm.rb +11 -35
- data/lib/sequel/extensions/newrelic_instrumentation.rb +12 -15
- data/lib/sequel/plugins/newrelic_instrumentation.rb +4 -10
- data/lib/tasks/all.rb +3 -3
- data/lib/tasks/config.rake +22 -117
- data/lib/tasks/coverage_report.rake +28 -0
- data/lib/tasks/helpers/config.html.erb +21 -0
- data/lib/tasks/{config.text.erb → helpers/config.text.erb} +0 -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 +124 -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 +648 -3
- data/newrelic_rpm.gemspec +25 -25
- data/recipes/newrelic.rb +2 -2
- data/test/agent_helper.rb +219 -178
- metadata +164 -122
- data/ROADMAP.md +0 -24
- data/bin/mongrel_rpm +0 -33
- data/cert/cacert.pem +0 -1177
- data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +0 -44
- data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +0 -53
- data/lib/new_relic/agent/instrumentation/excon/connection.rb +0 -49
- data/lib/new_relic/agent/instrumentation/http.rb +0 -49
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +0 -44
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +0 -33
- data/lib/new_relic/agent/instrumentation/net.rb +0 -70
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +0 -125
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +0 -46
- data/lib/new_relic/agent/supported_versions.rb +0 -275
- data/lib/new_relic/control/frameworks/merb.rb +0 -29
- data/lib/tasks/config.html.erb +0 -32
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
|
data/lefthook.yml
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
# Lefthook (https://github.com/evilmartians/lefthook) is a git hooks manager
|
2
|
+
# Install it on your machine by running `gem install lefthook`
|
3
|
+
pre-commit:
|
4
|
+
parallel: true
|
5
|
+
commands:
|
6
|
+
rubocop:
|
7
|
+
files: git diff --name-only --staged
|
8
|
+
glob: "*.rb"
|
9
|
+
run: rubocop --force-exclusion {files}
|
@@ -1,19 +1,18 @@
|
|
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
|
-
|
9
|
-
def initialize target_samples = 10, period_duration = 60
|
8
|
+
def initialize(target_samples = 10, period_duration = 60)
|
10
9
|
@target = target_samples
|
11
10
|
@seen = 0
|
12
11
|
@seen_last = 0
|
13
12
|
@sampled_count = 0
|
14
13
|
@period_duration = period_duration
|
15
14
|
@first_period = true
|
16
|
-
@period_start =
|
15
|
+
@period_start = Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
17
16
|
@lock = Mutex.new
|
18
17
|
register_config_callbacks
|
19
18
|
end
|
@@ -29,7 +28,8 @@ module NewRelic
|
|
29
28
|
elsif @sampled_count < @target
|
30
29
|
rand(@seen_last) < @target
|
31
30
|
else
|
32
|
-
|
31
|
+
# you've met the target and need to exponentially back off
|
32
|
+
rand(@seen) < exponential_backoff
|
33
33
|
end
|
34
34
|
|
35
35
|
@sampled_count += 1 if sampled
|
@@ -39,6 +39,10 @@ module NewRelic
|
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
|
+
def exponential_backoff
|
43
|
+
@target**(@target.to_f / @sampled_count) - @target**0.5
|
44
|
+
end
|
45
|
+
|
42
46
|
def stats
|
43
47
|
@lock.synchronize do
|
44
48
|
{
|
@@ -53,11 +57,11 @@ module NewRelic
|
|
53
57
|
private
|
54
58
|
|
55
59
|
def reset_if_period_expired!
|
56
|
-
now =
|
60
|
+
now = Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
57
61
|
return unless @period_start + @period_duration <= now
|
58
62
|
|
59
63
|
elapsed_periods = Integer((now - @period_start) / @period_duration)
|
60
|
-
@period_start
|
64
|
+
@period_start += elapsed_periods * @period_duration
|
61
65
|
|
62
66
|
@first_period = false
|
63
67
|
@seen_last = elapsed_periods > 1 ? 0 : @seen
|
@@ -80,7 +84,7 @@ module NewRelic
|
|
80
84
|
end
|
81
85
|
end
|
82
86
|
if target_changed
|
83
|
-
NewRelic::Agent.logger.debug
|
87
|
+
NewRelic::Agent.logger.debug("Sampling target set to: #{target}")
|
84
88
|
end
|
85
89
|
end
|
86
90
|
end
|
@@ -95,7 +99,7 @@ module NewRelic
|
|
95
99
|
end
|
96
100
|
end
|
97
101
|
if period_changed
|
98
|
-
NewRelic::Agent.logger.debug
|
102
|
+
NewRelic::Agent.logger.debug("Sampling period set to: #{period_duration}")
|
99
103
|
end
|
100
104
|
end
|
101
105
|
end
|
@@ -0,0 +1,35 @@
|
|
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
|
+
|
13
|
+
::NewRelic::Agent.logger.info("Starting Agent shutdown")
|
14
|
+
|
15
|
+
stop_event_loop
|
16
|
+
trap_signals_for_litespeed
|
17
|
+
untraced_graceful_disconnect
|
18
|
+
revert_to_default_configuration
|
19
|
+
|
20
|
+
@started = nil
|
21
|
+
Control.reset
|
22
|
+
end
|
23
|
+
|
24
|
+
def untraced_graceful_disconnect
|
25
|
+
begin
|
26
|
+
NewRelic::Agent.disable_all_tracing do
|
27
|
+
graceful_disconnect
|
28
|
+
end
|
29
|
+
rescue => e
|
30
|
+
::NewRelic::Agent.logger.error(e)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,72 @@
|
|
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
|
+
|
61
|
+
!sinatra_classic_app? || Agent.config[:force_install_exit_handler]
|
62
|
+
end
|
63
|
+
|
64
|
+
def install_exit_handler
|
65
|
+
return unless should_install_exit_handler?
|
66
|
+
|
67
|
+
NewRelic::Agent.logger.debug("Installing at_exit handler")
|
68
|
+
at_exit { shutdown }
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
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
|
@@ -0,0 +1,197 @@
|
|
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 Startup
|
8
|
+
# True if we have initialized and completed 'start'
|
9
|
+
def started?
|
10
|
+
@started
|
11
|
+
end
|
12
|
+
|
13
|
+
# Check whether we have already started, which is an error condition
|
14
|
+
def already_started?
|
15
|
+
if started?
|
16
|
+
::NewRelic::Agent.logger.error("Agent Started Already!")
|
17
|
+
true
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
# Logs a bunch of data and starts the agent, if needed
|
22
|
+
def start
|
23
|
+
return unless agent_should_start?
|
24
|
+
|
25
|
+
log_startup
|
26
|
+
check_config_and_start_agent
|
27
|
+
log_version_and_pid
|
28
|
+
|
29
|
+
events.subscribe(:initial_configuration_complete) do
|
30
|
+
log_ignore_url_regexes
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
# Sanity-check the agent configuration and start the agent,
|
35
|
+
# setting up the worker thread and the exit handler to shut
|
36
|
+
# down the agent
|
37
|
+
def check_config_and_start_agent
|
38
|
+
return unless monitoring? && has_correct_license_key?
|
39
|
+
return if using_forking_dispatcher?
|
40
|
+
|
41
|
+
setup_and_start_agent
|
42
|
+
end
|
43
|
+
|
44
|
+
# This is the shared method between the main agent startup and the
|
45
|
+
# after_fork call restarting the thread in deferred dispatchers.
|
46
|
+
#
|
47
|
+
# Treatment of @started and env report is important to get right.
|
48
|
+
def setup_and_start_agent(options = {})
|
49
|
+
@started = true
|
50
|
+
@harvester.mark_started
|
51
|
+
|
52
|
+
unless in_resque_child_process?
|
53
|
+
install_exit_handler
|
54
|
+
environment_for_connect
|
55
|
+
@harvest_samplers.load_samplers unless Agent.config[:disable_samplers]
|
56
|
+
end
|
57
|
+
|
58
|
+
connect_in_foreground if Agent.config[:sync_startup]
|
59
|
+
start_worker_thread(options)
|
60
|
+
end
|
61
|
+
|
62
|
+
# Log startup information that we almost always want to know
|
63
|
+
def log_startup
|
64
|
+
log_environment
|
65
|
+
log_dispatcher
|
66
|
+
log_app_name
|
67
|
+
end
|
68
|
+
|
69
|
+
# Log the environment the app thinks it's running in.
|
70
|
+
# Useful in debugging, as this is the key for config YAML lookups.
|
71
|
+
def log_environment
|
72
|
+
::NewRelic::Agent.logger.info("Environment: #{NewRelic::Control.instance.env}")
|
73
|
+
end
|
74
|
+
|
75
|
+
# Logs the dispatcher to the log file to assist with
|
76
|
+
# debugging. When no debugger is present, logs this fact to
|
77
|
+
# assist with proper dispatcher detection
|
78
|
+
def log_dispatcher
|
79
|
+
dispatcher_name = Agent.config[:dispatcher].to_s
|
80
|
+
|
81
|
+
if dispatcher_name.empty?
|
82
|
+
::NewRelic::Agent.logger.info('No known dispatcher detected.')
|
83
|
+
else
|
84
|
+
::NewRelic::Agent.logger.info("Dispatcher: #{dispatcher_name}")
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
def log_app_name
|
89
|
+
::NewRelic::Agent.logger.info("Application: #{Agent.config[:app_name].join(", ")}")
|
90
|
+
end
|
91
|
+
|
92
|
+
def log_ignore_url_regexes
|
93
|
+
regexes = NewRelic::Agent.config[:'rules.ignore_url_regexes']
|
94
|
+
|
95
|
+
unless regexes.empty?
|
96
|
+
::NewRelic::Agent.logger.info("Ignoring URLs that match the following regexes: #{regexes.map(&:inspect).join(", ")}.")
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
# Classy logging of the agent version and the current pid,
|
101
|
+
# so we can disambiguate processes in the log file and make
|
102
|
+
# sure they're running a reasonable version
|
103
|
+
def log_version_and_pid
|
104
|
+
::NewRelic::Agent.logger.debug("New Relic Ruby Agent #{NewRelic::VERSION::STRING} Initialized: pid = #{$$}")
|
105
|
+
end
|
106
|
+
|
107
|
+
# Logs the configured application names
|
108
|
+
def app_name_configured?
|
109
|
+
names = Agent.config[:app_name]
|
110
|
+
return names.respond_to?(:any?) && names.any?
|
111
|
+
end
|
112
|
+
|
113
|
+
# Connecting in the foreground blocks further startup of the
|
114
|
+
# agent until we have a connection - useful in cases where
|
115
|
+
# you're trying to log a very-short-running process and want
|
116
|
+
# to get statistics from before a server connection
|
117
|
+
# (typically 20 seconds) exists
|
118
|
+
def connect_in_foreground
|
119
|
+
NewRelic::Agent.disable_all_tracing { connect(:keep_retrying => false) }
|
120
|
+
end
|
121
|
+
|
122
|
+
# Warn the user if they have configured their agent not to
|
123
|
+
# send data, that way we can see this clearly in the log file
|
124
|
+
def monitoring?
|
125
|
+
if Agent.config[:monitor_mode]
|
126
|
+
true
|
127
|
+
else
|
128
|
+
::NewRelic::Agent.logger.warn('Agent configured not to send data in this environment.')
|
129
|
+
false
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
# Tell the user when the license key is missing so they can
|
134
|
+
# fix it by adding it to the file
|
135
|
+
def has_license_key?
|
136
|
+
if Agent.config[:license_key] && Agent.config[:license_key].length > 0
|
137
|
+
true
|
138
|
+
else
|
139
|
+
::NewRelic::Agent.logger.warn("No license key found. " +
|
140
|
+
"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.")
|
141
|
+
false
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
# A correct license key exists and is of the proper length
|
146
|
+
def has_correct_license_key?
|
147
|
+
has_license_key? && correct_license_length
|
148
|
+
end
|
149
|
+
|
150
|
+
# A license key is an arbitrary 40 character string,
|
151
|
+
# usually looks something like a SHA1 hash
|
152
|
+
def correct_license_length
|
153
|
+
key = Agent.config[:license_key]
|
154
|
+
|
155
|
+
if key.length == 40
|
156
|
+
true
|
157
|
+
else
|
158
|
+
::NewRelic::Agent.logger.error("Invalid license key: #{key}")
|
159
|
+
false
|
160
|
+
end
|
161
|
+
end
|
162
|
+
|
163
|
+
# Check to see if the agent should start, returning +true+ if it should.
|
164
|
+
def agent_should_start?
|
165
|
+
return false if already_started? || disabled?
|
166
|
+
|
167
|
+
if defer_for_delayed_job?
|
168
|
+
::NewRelic::Agent.logger.debug("Deferring startup for DelayedJob")
|
169
|
+
return false
|
170
|
+
end
|
171
|
+
|
172
|
+
if defer_for_resque?
|
173
|
+
::NewRelic::Agent.logger.debug("Deferring startup for Resque in case it daemonizes")
|
174
|
+
return false
|
175
|
+
end
|
176
|
+
|
177
|
+
unless app_name_configured?
|
178
|
+
NewRelic::Agent.logger.error("No application name configured.",
|
179
|
+
"The Agent cannot start without at least one. Please check your ",
|
180
|
+
"newrelic.yml and ensure that it is valid and has at least one ",
|
181
|
+
"value set for app_name in the #{NewRelic::Control.instance.env} ",
|
182
|
+
"environment.")
|
183
|
+
return false
|
184
|
+
end
|
185
|
+
|
186
|
+
return true
|
187
|
+
end
|
188
|
+
|
189
|
+
# The agent is disabled when it is not force enabled by the
|
190
|
+
# 'agent_enabled' option (e.g. in a manual start), or
|
191
|
+
# enabled normally through the configuration file
|
192
|
+
def disabled?
|
193
|
+
!Agent.config[:agent_enabled]
|
194
|
+
end
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|