newrelic_rpm 8.15.0 → 9.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.build_ignore +26 -0
- data/CHANGELOG.md +538 -44
- data/CONTRIBUTING.md +1 -1
- data/Gemfile +1 -1
- data/README.md +11 -6
- data/Rakefile +9 -9
- data/Thorfile +1 -1
- data/bin/newrelic +1 -0
- data/bin/newrelic_cmd +1 -0
- data/bin/nrdebug +36 -36
- data/init.rb +1 -1
- data/lib/new_relic/agent/agent.rb +3 -16
- data/lib/new_relic/agent/agent_helpers/connect.rb +5 -10
- data/lib/new_relic/agent/agent_helpers/harvest.rb +4 -4
- data/lib/new_relic/agent/agent_helpers/shutdown.rb +5 -5
- data/lib/new_relic/agent/agent_helpers/special_startup.rb +3 -4
- data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +47 -39
- data/lib/new_relic/agent/agent_helpers/startup.rb +13 -13
- data/lib/new_relic/agent/agent_helpers/transmit.rb +6 -6
- data/lib/new_relic/agent/agent_logger.rb +9 -9
- data/lib/new_relic/agent/attribute_filter.rb +2 -4
- data/lib/new_relic/agent/attribute_pre_filtering.rb +109 -0
- data/lib/new_relic/agent/attribute_processing.rb +2 -2
- data/lib/new_relic/agent/audit_logger.rb +5 -5
- data/lib/new_relic/agent/autostart.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command.rb +2 -2
- data/lib/new_relic/agent/commands/agent_command_router.rb +5 -4
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +8 -8
- data/lib/new_relic/agent/configuration/default_source.rb +428 -586
- data/lib/new_relic/agent/configuration/environment_source.rb +2 -2
- data/lib/new_relic/agent/configuration/high_security_source.rb +3 -5
- data/lib/new_relic/agent/configuration/manager.rb +16 -2
- data/lib/new_relic/agent/configuration/security_policy_source.rb +10 -26
- data/lib/new_relic/agent/configuration/server_source.rb +24 -24
- data/lib/new_relic/agent/configuration/yaml_source.rb +17 -4
- data/lib/new_relic/agent/connect/request_builder.rb +1 -1
- data/lib/new_relic/agent/connect/response_handler.rb +1 -1
- data/lib/new_relic/agent/custom_event_aggregator.rb +4 -4
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
- data/lib/new_relic/agent/database/obfuscator.rb +2 -2
- data/lib/new_relic/agent/database.rb +4 -18
- data/lib/new_relic/agent/datastores/metric_helper.rb +5 -5
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +11 -11
- data/lib/new_relic/agent/datastores/redis.rb +6 -6
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +8 -10
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +10 -10
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +7 -7
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +6 -6
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +7 -7
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +4 -4
- data/lib/new_relic/agent/distributed_tracing.rb +6 -6
- data/lib/new_relic/agent/error_collector.rb +36 -8
- data/lib/new_relic/agent/error_filter.rb +5 -5
- data/lib/new_relic/agent/error_trace_aggregator.rb +5 -4
- data/lib/new_relic/agent/event_loop.rb +3 -3
- data/lib/new_relic/agent/external.rb +1 -1
- data/lib/new_relic/agent/harvester.rb +1 -3
- data/lib/new_relic/agent/heap.rb +2 -1
- data/lib/new_relic/agent/hostname.rb +1 -1
- data/lib/new_relic/agent/http_clients/abstract.rb +9 -21
- data/lib/new_relic/agent/http_clients/async_http_wrappers.rb +83 -0
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +7 -3
- data/lib/new_relic/agent/http_clients/ethon_wrappers.rb +111 -0
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +7 -5
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +4 -0
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +6 -2
- data/lib/new_relic/agent/http_clients/httpx_wrappers.rb +93 -0
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +5 -1
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +8 -5
- data/lib/new_relic/agent/http_clients/uri_util.rb +2 -2
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +6 -19
- data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +42 -0
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +3 -2
- 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 +10 -10
- data/lib/new_relic/agent/instrumentation/active_job.rb +16 -3
- data/lib/new_relic/agent/instrumentation/active_job_subscriber.rb +41 -0
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +3 -3
- data/lib/new_relic/agent/instrumentation/active_record.rb +4 -3
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +38 -36
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +5 -4
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +2 -2
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +3 -2
- data/lib/new_relic/agent/instrumentation/active_storage.rb +4 -0
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +2 -30
- data/lib/new_relic/agent/instrumentation/active_support.rb +21 -6
- data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/chain.rb +69 -0
- data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/instrumentation.rb +13 -0
- data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/prepend.rb +37 -0
- data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger.rb +23 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +4 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger.rb +3 -1
- data/lib/new_relic/agent/instrumentation/active_support_subscriber.rb +41 -0
- data/lib/new_relic/agent/instrumentation/async_http/chain.rb +23 -0
- data/lib/new_relic/agent/instrumentation/async_http/instrumentation.rb +37 -0
- data/lib/new_relic/agent/instrumentation/async_http/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/async_http.rb +26 -0
- data/lib/new_relic/agent/instrumentation/bunny/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +12 -3
- data/lib/new_relic/agent/instrumentation/bunny.rb +1 -1
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/instrumentation.rb +3 -4
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +7 -6
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +9 -5
- data/lib/new_relic/agent/instrumentation/curb.rb +1 -1
- data/lib/new_relic/agent/instrumentation/custom_events.rb +12 -0
- data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +2 -1
- data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +1 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +4 -1
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +2 -1
- data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +8 -4
- data/lib/new_relic/agent/instrumentation/elasticsearch.rb +2 -2
- data/lib/new_relic/agent/instrumentation/ethon/chain.rb +39 -0
- data/lib/new_relic/agent/instrumentation/ethon/instrumentation.rb +105 -0
- data/lib/new_relic/agent/instrumentation/ethon/prepend.rb +35 -0
- data/lib/new_relic/agent/instrumentation/ethon.rb +39 -0
- data/lib/new_relic/agent/instrumentation/excon/middleware.rb +5 -1
- data/lib/new_relic/agent/instrumentation/excon.rb +3 -3
- data/lib/new_relic/agent/instrumentation/fiber/chain.rb +27 -0
- data/lib/new_relic/agent/instrumentation/fiber/instrumentation.rb +23 -0
- data/lib/new_relic/agent/instrumentation/fiber/prepend.rb +25 -0
- data/lib/new_relic/agent/instrumentation/fiber.rb +25 -0
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +8 -4
- data/lib/new_relic/agent/instrumentation/grape.rb +4 -4
- data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +7 -2
- data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +8 -4
- data/lib/new_relic/agent/instrumentation/grpc_client.rb +2 -2
- data/lib/new_relic/agent/instrumentation/grpc_server.rb +2 -2
- data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +4 -0
- data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +4 -0
- data/lib/new_relic/agent/instrumentation/httprb.rb +1 -1
- data/lib/new_relic/agent/instrumentation/httpx/chain.rb +20 -0
- data/lib/new_relic/agent/instrumentation/httpx/instrumentation.rb +51 -0
- data/lib/new_relic/agent/instrumentation/httpx/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/httpx.rb +27 -0
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
- data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +3 -0
- data/lib/new_relic/agent/instrumentation/logger.rb +1 -1
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +3 -1
- data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +14 -5
- data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +3 -1
- data/lib/new_relic/agent/instrumentation/memcache.rb +12 -12
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +3 -3
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +1 -1
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +6 -8
- data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +5 -1
- data/lib/new_relic/agent/instrumentation/net_http.rb +2 -2
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +46 -1
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +7 -3
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +2 -2
- data/lib/new_relic/agent/instrumentation/queue_time.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +7 -1
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +7 -2
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +4 -4
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +14 -1
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +12 -15
- data/lib/new_relic/agent/instrumentation/rake.rb +3 -3
- data/lib/new_relic/agent/instrumentation/redis/constants.rb +1 -1
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +6 -1
- data/lib/new_relic/agent/instrumentation/redis.rb +1 -1
- data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +4 -0
- data/lib/new_relic/agent/instrumentation/resque.rb +1 -1
- data/lib/new_relic/agent/instrumentation/roda/chain.rb +43 -0
- data/lib/new_relic/agent/instrumentation/roda/ignorer.rb +45 -0
- data/lib/new_relic/agent/instrumentation/roda/instrumentation.rb +68 -0
- data/lib/new_relic/agent/instrumentation/roda/prepend.rb +24 -0
- data/lib/new_relic/agent/instrumentation/roda/roda_transaction_namer.rb +29 -0
- data/lib/new_relic/agent/instrumentation/roda.rb +36 -0
- data/lib/new_relic/agent/instrumentation/sequel.rb +8 -9
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +10 -10
- data/lib/new_relic/agent/instrumentation/sidekiq/client.rb +4 -0
- data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +26 -3
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +6 -3
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +10 -5
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +2 -4
- data/lib/new_relic/agent/instrumentation/stripe.rb +28 -0
- data/lib/new_relic/agent/instrumentation/stripe_subscriber.rb +77 -0
- data/lib/new_relic/agent/instrumentation/thread/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +3 -8
- data/lib/new_relic/agent/instrumentation/thread/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +6 -1
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +10 -6
- data/lib/new_relic/agent/javascript_instrumentor.rb +29 -24
- data/lib/new_relic/agent/linking_metadata.rb +2 -2
- data/lib/new_relic/agent/log_event_aggregator.rb +64 -17
- data/lib/new_relic/agent/log_event_attributes.rb +115 -0
- data/lib/new_relic/agent/logging.rb +77 -37
- data/lib/new_relic/agent/messaging.rb +9 -7
- data/lib/new_relic/agent/method_tracer.rb +7 -7
- data/lib/new_relic/agent/method_tracer_helpers.rb +27 -6
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +4 -5
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +1 -1
- data/lib/new_relic/agent/monitors/synthetics_monitor.rb +12 -1
- data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +2 -2
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +0 -1
- data/lib/new_relic/agent/new_relic_service.rb +47 -32
- data/lib/new_relic/agent/obfuscator.rb +1 -1
- data/lib/new_relic/agent/parameter_filtering.rb +6 -6
- data/lib/new_relic/agent/pipe_channel_manager.rb +7 -6
- data/lib/new_relic/agent/pipe_service.rb +5 -3
- data/lib/new_relic/agent/priority_sampled_buffer.rb +1 -1
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +0 -1
- data/lib/new_relic/agent/rules_engine.rb +1 -1
- data/lib/new_relic/agent/sampler.rb +2 -1
- data/lib/new_relic/agent/sampler_collection.rb +1 -1
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +5 -5
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +9 -9
- data/lib/new_relic/agent/samplers/memory_sampler.rb +9 -9
- data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
- data/lib/new_relic/agent/span_event_aggregator.rb +4 -4
- data/lib/new_relic/agent/span_event_primitive.rb +18 -6
- data/lib/new_relic/agent/sql_sampler.rb +2 -2
- data/lib/new_relic/agent/stats.rb +1 -1
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +1 -1
- data/lib/new_relic/agent/system_info.rb +36 -10
- data/lib/new_relic/agent/threading/agent_thread.rb +1 -1
- data/lib/new_relic/agent/threading/backtrace_node.rb +3 -3
- data/lib/new_relic/agent/threading/backtrace_service.rb +3 -7
- data/lib/new_relic/agent/threading/thread_profile.rb +5 -5
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
- data/lib/new_relic/agent/tracer.rb +25 -16
- data/lib/new_relic/agent/transaction/abstract_segment.rb +109 -48
- data/lib/new_relic/agent/transaction/datastore_segment.rb +1 -1
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +7 -6
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +13 -14
- data/lib/new_relic/agent/transaction/external_request_segment.rb +16 -13
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +2 -3
- data/lib/new_relic/agent/transaction/request_attributes.rb +47 -11
- data/lib/new_relic/agent/transaction/segment.rb +1 -1
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/trace.rb +1 -1
- data/lib/new_relic/agent/transaction/trace_context.rb +4 -4
- data/lib/new_relic/agent/transaction/trace_node.rb +8 -7
- data/lib/new_relic/agent/transaction/tracing.rb +10 -4
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction.rb +90 -58
- data/lib/new_relic/agent/transaction_error_primitive.rb +21 -5
- data/lib/new_relic/agent/transaction_event_aggregator.rb +4 -4
- data/lib/new_relic/agent/transaction_event_primitive.rb +22 -3
- data/lib/new_relic/agent/transaction_sampler.rb +3 -3
- data/lib/new_relic/agent/transaction_time_aggregator.rb +7 -3
- data/lib/new_relic/agent/utilization/aws.rb +1 -1
- data/lib/new_relic/agent/utilization/azure.rb +3 -3
- data/lib/new_relic/agent/utilization/gcp.rb +4 -6
- data/lib/new_relic/agent/utilization/pcf.rb +1 -1
- data/lib/new_relic/agent/utilization/vendor.rb +6 -8
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
- data/lib/new_relic/agent/vm/mri_vm.rb +9 -8
- data/lib/new_relic/agent/worker_loop.rb +1 -1
- data/lib/new_relic/agent.rb +133 -36
- data/lib/new_relic/cli/command.rb +4 -3
- data/lib/new_relic/cli/commands/deployments.rb +26 -25
- data/lib/new_relic/cli/commands/install.rb +23 -23
- data/lib/new_relic/collection_helper.rb +2 -2
- data/lib/new_relic/constants.rb +10 -8
- data/lib/new_relic/control/class_methods.rb +4 -10
- data/lib/new_relic/control/frameworks/rails.rb +44 -20
- data/lib/new_relic/control/frameworks/roda.rb +20 -0
- data/lib/new_relic/control/instance_methods.rb +6 -6
- data/lib/new_relic/control/instrumentation.rb +1 -15
- data/lib/new_relic/control/private_instance_methods.rb +1 -1
- data/lib/new_relic/dependency_detection.rb +20 -18
- data/lib/new_relic/environment_report.rb +4 -4
- data/lib/new_relic/helper.rb +2 -1
- data/lib/new_relic/language_support.rb +10 -1
- data/lib/new_relic/latest_changes.rb +6 -6
- data/lib/new_relic/local_environment.rb +0 -10
- data/lib/new_relic/noticed_error.rb +25 -20
- data/lib/new_relic/rack/agent_hooks.rb +1 -1
- data/lib/new_relic/rack/agent_middleware.rb +0 -16
- data/lib/new_relic/rack/browser_monitoring.rb +21 -17
- data/lib/new_relic/recipes/capistrano3.rb +1 -1
- data/lib/new_relic/recipes/capistrano_legacy.rb +6 -6
- data/lib/new_relic/recipes/helpers/send_deployment.rb +5 -5
- data/lib/new_relic/supportability_helper.rb +4 -1
- data/lib/new_relic/traced_thread.rb +2 -3
- data/lib/new_relic/version.rb +2 -2
- data/lib/newrelic_rpm.rb +4 -4
- data/lib/sequel/extensions/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +6 -6
- data/lib/sequel/plugins/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +4 -4
- data/lib/tasks/bump_version.rake +21 -0
- data/lib/tasks/config.rake +13 -12
- data/lib/tasks/coverage_report.rake +4 -4
- data/lib/tasks/helpers/config.html.erb +93 -0
- data/lib/tasks/helpers/format.rb +19 -15
- data/lib/tasks/helpers/newrelicyml.rb +144 -0
- data/lib/tasks/helpers/version_bump.rb +62 -0
- data/lib/tasks/install.rake +4 -4
- data/lib/tasks/instrumentation_generator/instrumentation.thor +16 -19
- data/lib/tasks/instrumentation_generator/templates/Envfile.tt +1 -1
- data/lib/tasks/instrumentation_generator/templates/chain.tt +1 -1
- data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +1 -1
- data/lib/tasks/newrelic.rb +1 -0
- data/lib/tasks/newrelicyml.rake +13 -0
- data/lib/tasks/tests.rake +77 -6
- data/newrelic.yml +393 -274
- data/newrelic_rpm.gemspec +41 -30
- data/test/agent_helper.rb +25 -24
- metadata +172 -35
- data/.gitignore +0 -42
- data/.project +0 -23
- data/.rubocop.yml +0 -1946
- data/.rubocop_todo.yml +0 -62
- data/.simplecov +0 -15
- data/.snyk +0 -11
- data/.yardopts +0 -27
- data/Brewfile +0 -12
- data/DOCKER.md +0 -167
- data/Dockerfile +0 -10
- data/Guardfile +0 -26
- data/config/database.yml +0 -5
- data/config.dot +0 -278
- data/docker-compose.yml +0 -107
- data/lefthook.yml +0 -9
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +0 -83
- data/lib/new_relic/agent/instrumentation/authlogic.rb +0 -33
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +0 -215
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +0 -36
- data/lib/new_relic/agent/instrumentation/sunspot.rb +0 -41
- data/lib/new_relic/agent/range_extensions.rb +0 -27
- data/lib/tasks/helpers/removers.rb +0 -33
- data/lib/tasks/multiverse.rake +0 -6
- data/lib/tasks/multiverse.rb +0 -77
@@ -5,7 +5,11 @@
|
|
5
5
|
module NewRelic::Agent::Instrumentation
|
6
6
|
module HTTPClient
|
7
7
|
module Instrumentation
|
8
|
+
INSTRUMENTATION_NAME = 'HTTPClient'
|
9
|
+
|
8
10
|
def with_tracing(request, connection)
|
11
|
+
NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)
|
12
|
+
|
9
13
|
wrapped_request = NewRelic::Agent::HTTPClients::HTTPClientRequest.new(request)
|
10
14
|
segment = NewRelic::Agent::Tracer.start_external_request_segment(
|
11
15
|
library: wrapped_request.type,
|
@@ -4,7 +4,11 @@
|
|
4
4
|
|
5
5
|
module NewRelic::Agent::Instrumentation
|
6
6
|
module HTTPrb
|
7
|
+
INSTRUMENTATION_NAME = NewRelic::Agent.base_name(name)
|
8
|
+
|
7
9
|
def with_tracing(request)
|
10
|
+
NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)
|
11
|
+
|
8
12
|
wrapped_request = ::NewRelic::Agent::HTTPClients::HTTPRequest.new(request)
|
9
13
|
|
10
14
|
begin
|
@@ -14,7 +14,7 @@ DependencyDetection.defer do
|
|
14
14
|
end
|
15
15
|
|
16
16
|
executes do
|
17
|
-
NewRelic::Agent.logger.info(
|
17
|
+
NewRelic::Agent.logger.info('Installing http.rb Wrappers')
|
18
18
|
require 'new_relic/agent/distributed_tracing/cross_app_tracing'
|
19
19
|
require 'new_relic/agent/http_clients/http_rb_wrappers'
|
20
20
|
end
|
@@ -0,0 +1,20 @@
|
|
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::Agent::Instrumentation
|
6
|
+
module HTTPX
|
7
|
+
module Chain
|
8
|
+
def self.instrument!
|
9
|
+
::HTTPX::Session.class_eval do
|
10
|
+
include NewRelic::Agent::Instrumentation::HTTPX
|
11
|
+
|
12
|
+
alias_method(:send_requests_without_tracing, :send_requests)
|
13
|
+
def send_requests(*requests)
|
14
|
+
send_requests_with_tracing(*requests) { send_requests_without_tracing(*requests) }
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
# This file is distributed under New Relic's license terms.
|
2
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
|
+
|
5
|
+
require 'new_relic/agent/http_clients/httpx_wrappers'
|
6
|
+
|
7
|
+
module NewRelic::Agent::Instrumentation::HTTPX
|
8
|
+
INSTRUMENTATION_NAME = 'HTTPX'
|
9
|
+
NOTICEABLE_ERROR_CLASS = 'HTTPX::Error'
|
10
|
+
|
11
|
+
def send_requests_with_tracing(*requests)
|
12
|
+
NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)
|
13
|
+
requests.each { |r| nr_start_segment(r) }
|
14
|
+
yield
|
15
|
+
end
|
16
|
+
|
17
|
+
def nr_start_segment(request)
|
18
|
+
return unless NewRelic::Agent::Tracer.state.is_execution_traced?
|
19
|
+
|
20
|
+
wrapped_request = NewRelic::Agent::HTTPClients::HTTPXHTTPRequest.new(request)
|
21
|
+
segment = NewRelic::Agent::Tracer.start_external_request_segment(
|
22
|
+
library: wrapped_request.type,
|
23
|
+
uri: wrapped_request.uri,
|
24
|
+
procedure: wrapped_request.method
|
25
|
+
)
|
26
|
+
segment.add_request_headers(wrapped_request)
|
27
|
+
|
28
|
+
request.on(:response) { nr_finish_segment.call(request, segment) }
|
29
|
+
end
|
30
|
+
|
31
|
+
def nr_finish_segment
|
32
|
+
proc do |request, segment|
|
33
|
+
response = @responses[request]
|
34
|
+
|
35
|
+
unless response
|
36
|
+
NewRelic::Agent.logger.debug('Processed an on-response callback for HTTPX but could not find the response!')
|
37
|
+
next
|
38
|
+
end
|
39
|
+
|
40
|
+
wrapped_response = NewRelic::Agent::HTTPClients::HTTPXHTTPResponse.new(response)
|
41
|
+
segment.process_response_headers(wrapped_response)
|
42
|
+
|
43
|
+
if response.is_a?(::HTTPX::ErrorResponse)
|
44
|
+
e = NewRelic::Agent::NoticeableError.new(NOTICEABLE_ERROR_CLASS, "Couldn't connect: #{response}")
|
45
|
+
segment.notice_error(e)
|
46
|
+
end
|
47
|
+
|
48
|
+
::NewRelic::Agent::Transaction::Segment.finish(segment)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,15 @@
|
|
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::Agent::Instrumentation
|
6
|
+
module HTTPX
|
7
|
+
module Prepend
|
8
|
+
include NewRelic::Agent::Instrumentation::HTTPX
|
9
|
+
|
10
|
+
def send_requests(*requests)
|
11
|
+
send_requests_with_tracing(*requests) { super }
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# This file is distributed under New Relic's license terms.
|
2
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
|
+
|
5
|
+
require_relative 'httpx/chain'
|
6
|
+
require_relative 'httpx/instrumentation'
|
7
|
+
require_relative 'httpx/prepend'
|
8
|
+
|
9
|
+
DependencyDetection.defer do
|
10
|
+
named :httpx
|
11
|
+
|
12
|
+
depends_on do
|
13
|
+
defined?(HTTPX) && Gem::Version.new(HTTPX::VERSION) >= Gem::Version.new('1.0.0')
|
14
|
+
end
|
15
|
+
|
16
|
+
executes do
|
17
|
+
NewRelic::Agent.logger.info('Installing httpx instrumentation')
|
18
|
+
end
|
19
|
+
|
20
|
+
executes do
|
21
|
+
if use_prepend?
|
22
|
+
prepend_instrument HTTPX::Session, NewRelic::Agent::Instrumentation::HTTPX::Prepend
|
23
|
+
else
|
24
|
+
chain_instrument NewRelic::Agent::Instrumentation::HTTPX::Chain
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -6,6 +6,8 @@ module NewRelic
|
|
6
6
|
module Agent
|
7
7
|
module Instrumentation
|
8
8
|
module Logger
|
9
|
+
INSTRUMENTATION_NAME = 'Logger'
|
10
|
+
|
9
11
|
def skip_instrumenting?
|
10
12
|
defined?(@skip_instrumenting) && @skip_instrumenting
|
11
13
|
end
|
@@ -51,6 +53,7 @@ module NewRelic
|
|
51
53
|
mark_skip_instrumenting
|
52
54
|
|
53
55
|
unless ::NewRelic::Agent.agent.nil?
|
56
|
+
::NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)
|
54
57
|
::NewRelic::Agent.agent.log_event_aggregator.record(formatted_message, severity)
|
55
58
|
formatted_message = LocalLogDecorator.decorate(formatted_message)
|
56
59
|
end
|
@@ -15,7 +15,7 @@ DependencyDetection.defer do
|
|
15
15
|
end
|
16
16
|
|
17
17
|
executes do
|
18
|
-
NewRelic::Agent.logger.info(
|
18
|
+
NewRelic::Agent.logger.info('Installing Logger instrumentation')
|
19
19
|
|
20
20
|
if use_prepend?
|
21
21
|
prepend_instrument Logger, NewRelic::Agent::Instrumentation::Logger::Prepend
|
@@ -58,7 +58,9 @@ module NewRelic
|
|
58
58
|
end.class_eval do
|
59
59
|
include NewRelic::Agent::Instrumentation::Memcache::Tracer
|
60
60
|
|
61
|
-
# TODO:
|
61
|
+
# TODO: MAJOR VERSION
|
62
|
+
# Dalli - 3.1.0 renamed send_multiget to pipelined_get, but the method is otherwise the same
|
63
|
+
# Once we no longer support Dalli < 3.1.0, remove this conditional logic
|
62
64
|
if Gem::Version.new(::Dalli::VERSION) >= Gem::Version.new('3.1.0')
|
63
65
|
alias_method(:pipelined_get_without_newrelic_trace, :pipelined_get)
|
64
66
|
def pipelined_get(keys)
|
@@ -8,11 +8,14 @@ module NewRelic::Agent::Instrumentation
|
|
8
8
|
SLASH = '/'
|
9
9
|
UNKNOWN = 'unknown'
|
10
10
|
LOCALHOST = 'localhost'
|
11
|
-
MULTIGET_METRIC_NAME =
|
12
|
-
MEMCACHED =
|
11
|
+
MULTIGET_METRIC_NAME = 'get_multi_request'
|
12
|
+
MEMCACHED = 'Memcached'
|
13
|
+
INSTRUMENTATION_NAME = 'Dalli'
|
13
14
|
|
14
15
|
def with_newrelic_tracing(operation, *args)
|
15
|
-
|
16
|
+
NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)
|
17
|
+
|
18
|
+
segment = NewRelic::Agent::Tracer.start_datastore_segment(
|
16
19
|
product: MEMCACHED,
|
17
20
|
operation: operation
|
18
21
|
)
|
@@ -28,6 +31,8 @@ module NewRelic::Agent::Instrumentation
|
|
28
31
|
end
|
29
32
|
|
30
33
|
def server_for_key_with_newrelic_tracing
|
34
|
+
NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)
|
35
|
+
|
31
36
|
yield.tap do |server|
|
32
37
|
begin
|
33
38
|
if txn = ::NewRelic::Agent::Tracer.current_transaction
|
@@ -43,7 +48,9 @@ module NewRelic::Agent::Instrumentation
|
|
43
48
|
end
|
44
49
|
|
45
50
|
def get_multi_with_newrelic_tracing(method_name)
|
46
|
-
|
51
|
+
NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)
|
52
|
+
|
53
|
+
segment = NewRelic::Agent::Tracer.start_segment(
|
47
54
|
name: "Ruby/Memcached/Dalli/#{method_name}"
|
48
55
|
)
|
49
56
|
|
@@ -55,7 +62,9 @@ module NewRelic::Agent::Instrumentation
|
|
55
62
|
end
|
56
63
|
|
57
64
|
def send_multiget_with_newrelic_tracing(keys)
|
58
|
-
|
65
|
+
NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)
|
66
|
+
|
67
|
+
segment = ::NewRelic::Agent::Tracer.start_datastore_segment(
|
59
68
|
product: MEMCACHED,
|
60
69
|
operation: MULTIGET_METRIC_NAME
|
61
70
|
)
|
@@ -84,7 +84,9 @@ module NewRelic::Agent::Instrumentation
|
|
84
84
|
extend Helper
|
85
85
|
include NewRelic::Agent::Instrumentation::Memcache::Tracer
|
86
86
|
|
87
|
-
# TODO:
|
87
|
+
# TODO: MAJOR VERSION
|
88
|
+
# Dalli - 3.1.0 renamed send_multiget to pipelined_get, but the method is otherwise the same
|
89
|
+
# Once we no longer support Dalli < 3.1.0, remove this conditional logic
|
88
90
|
if Gem::Version.new(::Dalli::VERSION) >= Gem::Version.new('3.1.0')
|
89
91
|
def pipelined_get(keys)
|
90
92
|
send_multiget_with_newrelic_tracing(keys) { super }
|
@@ -5,8 +5,8 @@
|
|
5
5
|
# NOTE: there are multiple implementations of the Memcached client in Ruby,
|
6
6
|
# each with slightly different APIs and semantics.
|
7
7
|
# See:
|
8
|
-
#
|
9
|
-
#
|
8
|
+
# https://rubygems.org/gems/Ruby-MemCache (Gem: Ruby-MemCache)
|
9
|
+
# https://github.com/mperham/memcache-client (Gem: memcache-client)
|
10
10
|
# https://github.com/mperham/dalli (Gem: dalli)
|
11
11
|
|
12
12
|
require_relative 'memcache/helper'
|
@@ -23,9 +23,9 @@ DependencyDetection.defer do
|
|
23
23
|
executes do
|
24
24
|
if use_prepend?
|
25
25
|
prepend_module = NewRelic::Agent::Instrumentation::Memcache::Prepend.client_prepender(MemCache)
|
26
|
-
prepend_instrument MemCache, prepend_module,
|
26
|
+
prepend_instrument MemCache, prepend_module, 'MemcacheClient'
|
27
27
|
else
|
28
|
-
chain_instrument_target MemCache, NewRelic::Agent::Instrumentation::Memcache::Chain,
|
28
|
+
chain_instrument_target MemCache, NewRelic::Agent::Instrumentation::Memcache::Chain, 'MemcacheClient'
|
29
29
|
end
|
30
30
|
end
|
31
31
|
end
|
@@ -38,15 +38,15 @@ DependencyDetection.defer do
|
|
38
38
|
executes do
|
39
39
|
if use_prepend?
|
40
40
|
prepend_module = NewRelic::Agent::Instrumentation::Memcache::Prepend.client_prepender(Memcached)
|
41
|
-
prepend_instrument Memcached, prepend_module,
|
41
|
+
prepend_instrument Memcached, prepend_module, 'Memcached'
|
42
42
|
else
|
43
|
-
chain_instrument_target Memcached, NewRelic::Agent::Instrumentation::Memcache::Chain,
|
43
|
+
chain_instrument_target Memcached, NewRelic::Agent::Instrumentation::Memcache::Chain, 'Memcached'
|
44
44
|
end
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
48
48
|
DependencyDetection.defer do
|
49
|
-
|
49
|
+
@name = :dalli
|
50
50
|
configure_with :memcache
|
51
51
|
|
52
52
|
depends_on { defined? Dalli::Client }
|
@@ -55,10 +55,10 @@ DependencyDetection.defer do
|
|
55
55
|
if use_prepend?
|
56
56
|
prepend_module = NewRelic::Agent::Instrumentation::Memcache::Prepend
|
57
57
|
prepend_module.dalli_prependers do |client_class, instrumenting_module|
|
58
|
-
prepend_instrument client_class, instrumenting_module,
|
58
|
+
prepend_instrument client_class, instrumenting_module, 'MemcachedDalli'
|
59
59
|
end
|
60
60
|
else
|
61
|
-
chain_instrument NewRelic::Agent::Instrumentation::Memcache::Dalli
|
61
|
+
chain_instrument NewRelic::Agent::Instrumentation::Memcache::Dalli, 'MemcachedDalli'
|
62
62
|
end
|
63
63
|
end
|
64
64
|
end
|
@@ -67,7 +67,7 @@ end
|
|
67
67
|
# dalli/cas/client. Use a separate dependency block so it can potentially
|
68
68
|
# re-evaluate after they've done that require.
|
69
69
|
DependencyDetection.defer do
|
70
|
-
|
70
|
+
@name = :dalli_cas_client
|
71
71
|
configure_with :memcache
|
72
72
|
|
73
73
|
depends_on { defined? Dalli::Client }
|
@@ -78,10 +78,10 @@ DependencyDetection.defer do
|
|
78
78
|
if use_prepend?
|
79
79
|
prepend_module = NewRelic::Agent::Instrumentation::Memcache::Prepend
|
80
80
|
prepend_module.dalli_cas_prependers do |client_class, instrumenting_module|
|
81
|
-
prepend_instrument client_class, instrumenting_module,
|
81
|
+
prepend_instrument client_class, instrumenting_module, 'MemcachedDalliCAS'
|
82
82
|
end
|
83
83
|
else
|
84
|
-
chain_instrument NewRelic::Agent::Instrumentation::Memcache::DalliCAS
|
84
|
+
chain_instrument NewRelic::Agent::Instrumentation::Memcache::DalliCAS, 'MemcachedDalliCAS'
|
85
85
|
end
|
86
86
|
end
|
87
87
|
end
|
@@ -15,8 +15,8 @@ module NewRelic
|
|
15
15
|
class MiddlewareProxy
|
16
16
|
include MiddlewareTracing
|
17
17
|
|
18
|
-
ANONYMOUS_CLASS =
|
19
|
-
OBJECT_CLASS_NAME =
|
18
|
+
ANONYMOUS_CLASS = 'AnonymousClass'.freeze
|
19
|
+
OBJECT_CLASS_NAME = 'Object'.freeze
|
20
20
|
|
21
21
|
# This class is used to wrap classes that are passed to
|
22
22
|
# Rack::Builder#use without synchronously instantiating those classes.
|
@@ -92,7 +92,7 @@ module NewRelic
|
|
92
92
|
clazz = class_for_target
|
93
93
|
|
94
94
|
name = clazz.name
|
95
|
-
name = clazz.superclass.name if name.nil? || name ==
|
95
|
+
name = clazz.superclass.name if name.nil? || name == ''
|
96
96
|
name = ANONYMOUS_CLASS if name.nil? || name == OBJECT_CLASS_NAME
|
97
97
|
name
|
98
98
|
end
|
@@ -9,7 +9,7 @@ module NewRelic
|
|
9
9
|
module Instrumentation
|
10
10
|
class MongodbCommandSubscriber
|
11
11
|
MONGODB = 'MongoDB'.freeze
|
12
|
-
COLLECTION =
|
12
|
+
COLLECTION = 'collection'.freeze
|
13
13
|
|
14
14
|
def started(event)
|
15
15
|
begin
|
@@ -21,7 +21,7 @@ module NewRelic
|
|
21
21
|
end
|
22
22
|
end
|
23
23
|
|
24
|
-
ERROR_KEYS = %w[
|
24
|
+
ERROR_KEYS = %w[writeErrors writeConcernError writeConcernErrors].freeze
|
25
25
|
|
26
26
|
def error_key_present?(event)
|
27
27
|
if reply = event.reply
|
@@ -43,7 +43,7 @@ module NewRelic
|
|
43
43
|
if error_key = error_key_present?(event)
|
44
44
|
# taking the last error as there can potentially be many
|
45
45
|
attributes = event.reply[error_key][-1]
|
46
|
-
segment.notice_error(Mongo::Error.new(
|
46
|
+
segment.notice_error(Mongo::Error.new('%s (%s)' % [attributes['errmsg'], attributes['code']]))
|
47
47
|
|
48
48
|
# failing commands return a CommandFailed event with an error message
|
49
49
|
# in the form of "% (%s)" for the message and code
|
@@ -106,8 +106,8 @@ module NewRelic
|
|
106
106
|
)
|
107
107
|
end
|
108
108
|
|
109
|
-
UNKNOWN =
|
110
|
-
LOCALHOST =
|
109
|
+
UNKNOWN = 'unknown'.freeze
|
110
|
+
LOCALHOST = 'localhost'.freeze
|
111
111
|
|
112
112
|
def host_from_address(address)
|
113
113
|
if unix_domain_socket?(address.host)
|
@@ -131,10 +131,8 @@ module NewRelic
|
|
131
131
|
UNKNOWN
|
132
132
|
end
|
133
133
|
|
134
|
-
SLASH = "/".freeze
|
135
|
-
|
136
134
|
def unix_domain_socket?(host)
|
137
|
-
host.start_with?(SLASH)
|
135
|
+
host.start_with?(NewRelic::SLASH)
|
138
136
|
end
|
139
137
|
end
|
140
138
|
end
|
@@ -6,7 +6,11 @@ module NewRelic
|
|
6
6
|
module Agent
|
7
7
|
module Instrumentation
|
8
8
|
module NetHTTP
|
9
|
+
INSTRUMENTATION_NAME = NewRelic::Agent.base_name(name)
|
10
|
+
|
9
11
|
def request_with_tracing(request)
|
12
|
+
NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)
|
13
|
+
|
10
14
|
wrapped_request = NewRelic::Agent::HTTPClients::NetHTTPRequest.new(self, request)
|
11
15
|
|
12
16
|
segment = NewRelic::Agent::Tracer.start_external_request_segment(
|
@@ -31,7 +35,7 @@ module NewRelic
|
|
31
35
|
segment.process_response_headers(wrapped_response)
|
32
36
|
response
|
33
37
|
ensure
|
34
|
-
segment
|
38
|
+
segment&.finish
|
35
39
|
end
|
36
40
|
end
|
37
41
|
end
|
@@ -27,11 +27,11 @@ DependencyDetection.defer do
|
|
27
27
|
end
|
28
28
|
|
29
29
|
conflicts_with_prepend do
|
30
|
-
defined?(Rack::MiniProfiler)
|
30
|
+
defined?(Rack::MiniProfiler) && !defined?(Rack::MINI_PROFILER_PREPEND_NET_HTTP_PATCH)
|
31
31
|
end
|
32
32
|
|
33
33
|
conflicts_with_prepend do
|
34
|
-
source_location_for(Net::HTTP,
|
34
|
+
source_location_for(Net::HTTP, 'request') =~ /airbrake|profiler/i
|
35
35
|
end
|
36
36
|
|
37
37
|
executes do
|
@@ -47,6 +47,51 @@ module NewRelic
|
|
47
47
|
end
|
48
48
|
end
|
49
49
|
|
50
|
+
# The agent doesn't use the traditional ActiveSupport::Notifications.subscribe
|
51
|
+
# pattern due to threading issues discovered on initial instrumentation.
|
52
|
+
# Instead we define a #start and #finish method, which Rails responds to.
|
53
|
+
# See: https://github.com/rails/rails/issues/12069
|
54
|
+
def start(name, id, payload)
|
55
|
+
return unless state.is_execution_traced?
|
56
|
+
|
57
|
+
start_segment(name, id, payload)
|
58
|
+
rescue => e
|
59
|
+
log_notification_error(e, name, 'start')
|
60
|
+
end
|
61
|
+
|
62
|
+
def finish(name, id, payload)
|
63
|
+
return unless state.is_execution_traced?
|
64
|
+
|
65
|
+
finish_segment(id, payload)
|
66
|
+
rescue => e
|
67
|
+
log_notification_error(e, name, 'finish')
|
68
|
+
end
|
69
|
+
|
70
|
+
def start_segment(name, id, payload)
|
71
|
+
segment = Tracer.start_segment(name: metric_name(name, payload))
|
72
|
+
add_segment_params(segment, payload)
|
73
|
+
push_segment(id, segment)
|
74
|
+
end
|
75
|
+
|
76
|
+
def finish_segment(id, payload)
|
77
|
+
if segment = pop_segment(id)
|
78
|
+
if exception = exception_object(payload)
|
79
|
+
segment.notice_error(exception)
|
80
|
+
end
|
81
|
+
segment.finish
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
# for subclasses
|
86
|
+
def add_segment_params(segment, payload)
|
87
|
+
# no op
|
88
|
+
end
|
89
|
+
|
90
|
+
# for subclasses
|
91
|
+
def metric_name(name, payload)
|
92
|
+
"Ruby/#{name}"
|
93
|
+
end
|
94
|
+
|
50
95
|
def log_notification_error(error, name, event_type)
|
51
96
|
# These are important enough failures that we want the backtraces
|
52
97
|
# logged at error level, hence the explicit log_exception call.
|
@@ -77,7 +122,7 @@ module NewRelic
|
|
77
122
|
return if defined?(exception_object)
|
78
123
|
return unless defined?(::ActiveSupport::VERSION)
|
79
124
|
|
80
|
-
if ::ActiveSupport::VERSION::STRING <
|
125
|
+
if ::ActiveSupport::VERSION::STRING < '5.0.0'
|
81
126
|
# Earlier versions of Rails did not add the exception itself to the
|
82
127
|
# payload accessible via :exception_object, so we create a stand-in
|
83
128
|
# error object from the given class name and message.
|
@@ -4,11 +4,15 @@
|
|
4
4
|
|
5
5
|
module NewRelic::Agent::Instrumentation
|
6
6
|
module Padrino
|
7
|
+
INSTRUMENTATION_NAME = NewRelic::Agent.base_name(name)
|
8
|
+
|
7
9
|
def invoke_route_with_tracing(*args)
|
10
|
+
NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)
|
11
|
+
|
8
12
|
begin
|
9
|
-
env[
|
13
|
+
env['newrelic.last_route'] = args[0].original_path
|
10
14
|
rescue => e
|
11
|
-
::NewRelic::Agent.logger.debug(
|
15
|
+
::NewRelic::Agent.logger.debug('Failed determining last route in Padrino', e)
|
12
16
|
end
|
13
17
|
|
14
18
|
begin
|
@@ -19,7 +23,7 @@ module NewRelic::Agent::Instrumentation
|
|
19
23
|
)
|
20
24
|
end
|
21
25
|
rescue => e
|
22
|
-
::NewRelic::Agent.logger.debug(
|
26
|
+
::NewRelic::Agent.logger.debug('Failed during invoke_route to set transaction name', e)
|
23
27
|
end
|
24
28
|
|
25
29
|
yield
|
@@ -10,10 +10,10 @@ DependencyDetection.defer do
|
|
10
10
|
end
|
11
11
|
|
12
12
|
executes do
|
13
|
-
NewRelic::Agent.logger.debug(
|
13
|
+
NewRelic::Agent.logger.debug('Installing Passenger event hooks.')
|
14
14
|
|
15
15
|
PhusionPassenger.on_event(:stopping_worker_process) do
|
16
|
-
NewRelic::Agent.logger.debug(
|
16
|
+
NewRelic::Agent.logger.debug('Passenger stopping this process, shutdown the agent.')
|
17
17
|
NewRelic::Agent.instance.shutdown
|
18
18
|
end
|
19
19
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
module NewRelic
|
6
6
|
module Agent
|
7
7
|
module Instrumentation
|
8
|
-
# https://newrelic.com/docs/features/tracking-front-end-time
|
8
|
+
# https://docs.newrelic.com/docs/features/tracking-front-end-time
|
9
9
|
# Record queue time metrics based on any of three headers
|
10
10
|
# which can be set on the request.
|
11
11
|
module QueueTime
|
@@ -6,6 +6,8 @@ module NewRelic
|
|
6
6
|
module Agent
|
7
7
|
module Instrumentation
|
8
8
|
module RackBuilder
|
9
|
+
INSTRUMENTATION_NAME = 'Rack'
|
10
|
+
|
9
11
|
def self.track_deferred_detection(builder_class)
|
10
12
|
class << builder_class
|
11
13
|
attr_accessor :_nr_deferred_detection_ran
|
@@ -16,7 +18,7 @@ module NewRelic
|
|
16
18
|
def deferred_dependency_check
|
17
19
|
return if self.class._nr_deferred_detection_ran
|
18
20
|
|
19
|
-
NewRelic::Agent.logger.info(
|
21
|
+
NewRelic::Agent.logger.info('Doing deferred dependency-detection before Rack startup')
|
20
22
|
DependencyDetection.detect!
|
21
23
|
self.class._nr_deferred_detection_ran = true
|
22
24
|
end
|
@@ -51,6 +53,8 @@ module NewRelic
|
|
51
53
|
def run_with_tracing(app)
|
52
54
|
return yield(app) unless middleware_instrumentation_enabled?
|
53
55
|
|
56
|
+
NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)
|
57
|
+
|
54
58
|
yield(::NewRelic::Agent::Instrumentation::MiddlewareProxy.wrap(app, true))
|
55
59
|
end
|
56
60
|
|
@@ -58,6 +62,8 @@ module NewRelic
|
|
58
62
|
return if middleware_class.nil?
|
59
63
|
return yield(middleware_class) unless middleware_instrumentation_enabled?
|
60
64
|
|
65
|
+
NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)
|
66
|
+
|
61
67
|
yield(::NewRelic::Agent::Instrumentation::MiddlewareProxy.for_class(middleware_class))
|
62
68
|
end
|
63
69
|
end
|
@@ -9,6 +9,8 @@ module NewRelic
|
|
9
9
|
module Instrumentation
|
10
10
|
module Rails3
|
11
11
|
module ActionController
|
12
|
+
INSTRUMENTATION_NAME = NewRelic::Agent.base_name(name)
|
13
|
+
|
12
14
|
# determine the path that is used in the metric name for
|
13
15
|
# the called controller action
|
14
16
|
def newrelic_metric_path(action_name_override = nil)
|
@@ -21,6 +23,8 @@ module NewRelic
|
|
21
23
|
end
|
22
24
|
|
23
25
|
def process_action(*args) # THREAD_LOCAL_ACCESS
|
26
|
+
NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)
|
27
|
+
|
24
28
|
munged_params = NewRelic::Agent::ParameterFiltering.filter_rails_request_parameters(request.filtered_parameters)
|
25
29
|
perform_action_with_newrelic_trace(:category => :controller,
|
26
30
|
:name => self.action_name,
|
@@ -37,7 +41,7 @@ module NewRelic
|
|
37
41
|
extend self
|
38
42
|
def template_metric(identifier, options = {})
|
39
43
|
if options[:file]
|
40
|
-
|
44
|
+
'file'
|
41
45
|
elsif identifier.nil?
|
42
46
|
::NewRelic::Agent::UNKNOWN_METRIC
|
43
47
|
elsif identifier.include?('/') # this is a filepath
|
@@ -112,7 +116,8 @@ DependencyDetection.defer do
|
|
112
116
|
def render_with_newrelic(context, options)
|
113
117
|
# This is needed for rails 3.2 compatibility
|
114
118
|
@details = extract_details(options) if respond_to?(:extract_details, true)
|
115
|
-
|
119
|
+
# this file can't be found in SimpleCov, need to check test coverage
|
120
|
+
identifier = determine_template(options) ? determine_template(options).identifier : nil # rubocop:disable Style/SafeNavigation
|
116
121
|
scope_name = "View/#{NewRelic::Agent::Instrumentation::Rails3::ActionView::NewRelic.template_metric(identifier, options)}/Rendering"
|
117
122
|
trace_execution_scoped(scope_name) do
|
118
123
|
render_without_newrelic(context, options)
|
@@ -16,7 +16,7 @@ DependencyDetection.defer do
|
|
16
16
|
end
|
17
17
|
|
18
18
|
executes do
|
19
|
-
NewRelic::Agent.logger.info(
|
19
|
+
NewRelic::Agent.logger.info('Installing Rails 3+ middleware instrumentation')
|
20
20
|
module ActionDispatch
|
21
21
|
class MiddlewareStack
|
22
22
|
class Middleware
|