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
|
module NewRelic
|
6
6
|
module Agent
|
@@ -12,7 +12,7 @@ module NewRelic
|
|
12
12
|
end
|
13
13
|
|
14
14
|
def self.subscribed?
|
15
|
-
find_all_subscribers.find{|s| s.instance_variable_get(:@delegate).class == self }
|
15
|
+
find_all_subscribers.find { |s| s.instance_variable_get(:@delegate).class == self }
|
16
16
|
end
|
17
17
|
|
18
18
|
def self.find_all_subscribers
|
@@ -26,11 +26,11 @@ module NewRelic
|
|
26
26
|
instance_variable_names.each do |name|
|
27
27
|
if notifier.instance_variable_defined?(name)
|
28
28
|
subscribers = notifier.instance_variable_get(name)
|
29
|
-
if subscribers.is_a?
|
29
|
+
if subscribers.is_a?(Array)
|
30
30
|
# Rails 5 @subscribers, and Rails 6 @other_subscribers is a
|
31
31
|
# plain array of subscriber objects
|
32
32
|
all_subscribers += subscribers
|
33
|
-
elsif subscribers.is_a?
|
33
|
+
elsif subscribers.is_a?(Hash)
|
34
34
|
# Rails 6 @string_subscribers is a Hash mapping the pattern
|
35
35
|
# string of a subscriber to an array of subscriber objects
|
36
36
|
subscribers.values.each { |array| all_subscribers += array }
|
@@ -47,6 +47,47 @@ module NewRelic
|
|
47
47
|
end
|
48
48
|
end
|
49
49
|
|
50
|
+
def start(name, id, payload)
|
51
|
+
return unless state.is_execution_traced?
|
52
|
+
|
53
|
+
start_segment(name, id, payload)
|
54
|
+
rescue => e
|
55
|
+
log_notification_error(e, name, 'start')
|
56
|
+
end
|
57
|
+
|
58
|
+
def finish(name, id, payload)
|
59
|
+
return unless state.is_execution_traced?
|
60
|
+
|
61
|
+
finish_segment(id, payload)
|
62
|
+
rescue => e
|
63
|
+
log_notification_error(e, name, 'finish')
|
64
|
+
end
|
65
|
+
|
66
|
+
def start_segment(name, id, payload)
|
67
|
+
segment = Tracer.start_segment(name: metric_name(name, payload))
|
68
|
+
add_segment_params(segment, payload)
|
69
|
+
push_segment(id, segment)
|
70
|
+
end
|
71
|
+
|
72
|
+
def finish_segment(id, payload)
|
73
|
+
if segment = pop_segment(id)
|
74
|
+
if exception = exception_object(payload)
|
75
|
+
segment.notice_error(exception)
|
76
|
+
end
|
77
|
+
segment.finish
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
# for subclasses
|
82
|
+
def add_segment_params(segment, payload)
|
83
|
+
# no op
|
84
|
+
end
|
85
|
+
|
86
|
+
# for subclasses
|
87
|
+
def metric_name(name, payload)
|
88
|
+
"Ruby/#{name}"
|
89
|
+
end
|
90
|
+
|
50
91
|
def log_notification_error(error, name, event_type)
|
51
92
|
# These are important enough failures that we want the backtraces
|
52
93
|
# logged at error level, hence the explicit log_exception call.
|
@@ -55,7 +96,7 @@ module NewRelic
|
|
55
96
|
end
|
56
97
|
|
57
98
|
def push_segment(id, segment)
|
58
|
-
segment_stack[id].push
|
99
|
+
segment_stack[id].push(segment)
|
59
100
|
end
|
60
101
|
|
61
102
|
def pop_segment(id)
|
@@ -64,7 +105,7 @@ module NewRelic
|
|
64
105
|
end
|
65
106
|
|
66
107
|
def segment_stack
|
67
|
-
Thread.current[@queue_key] ||= Hash.new {|h,id| h[id] = [] }
|
108
|
+
Thread.current[@queue_key] ||= Hash.new { |h, id| h[id] = [] }
|
68
109
|
end
|
69
110
|
|
70
111
|
def state
|
@@ -76,16 +117,18 @@ module NewRelic
|
|
76
117
|
# defensive.
|
77
118
|
return if defined?(exception_object)
|
78
119
|
return unless defined?(::ActiveSupport::VERSION)
|
120
|
+
|
79
121
|
if ::ActiveSupport::VERSION::STRING < "5.0.0"
|
80
122
|
# Earlier versions of Rails did not add the exception itself to the
|
81
|
-
# payload
|
123
|
+
# payload accessible via :exception_object, so we create a stand-in
|
82
124
|
# error object from the given class name and message.
|
83
125
|
# NOTE: no backtrace available this way, but we can notice the error
|
84
126
|
# well enough to send the necessary info the UI requires to present it.
|
85
127
|
def exception_object(payload)
|
86
128
|
exception_class, message = payload[:exception]
|
87
129
|
return nil unless exception_class
|
88
|
-
|
130
|
+
|
131
|
+
NewRelic::Agent::NoticeableError.new(exception_class, message)
|
89
132
|
end
|
90
133
|
else
|
91
134
|
def exception_object(payload)
|
@@ -94,7 +137,6 @@ module NewRelic
|
|
94
137
|
end
|
95
138
|
end
|
96
139
|
end
|
97
|
-
|
98
140
|
end
|
99
141
|
end
|
100
142
|
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
module NewRelic::Agent::Instrumentation
|
6
6
|
module Padrino
|
@@ -15,7 +15,8 @@ module NewRelic::Agent::Instrumentation
|
|
15
15
|
txn_name = ::NewRelic::Agent::Instrumentation::Sinatra::TransactionNamer.transaction_name_for_route(env, request)
|
16
16
|
unless txn_name.nil?
|
17
17
|
::NewRelic::Agent::Transaction.set_default_transaction_name(
|
18
|
-
"#{self.class.name}/#{txn_name}", :sinatra
|
18
|
+
"#{self.class.name}/#{txn_name}", :sinatra
|
19
|
+
)
|
19
20
|
end
|
20
21
|
rescue => e
|
21
22
|
::NewRelic::Agent.logger.debug("Failed during invoke_route to set transaction name", e)
|
@@ -24,4 +25,4 @@ module NewRelic::Agent::Instrumentation
|
|
24
25
|
yield
|
25
26
|
end
|
26
27
|
end
|
27
|
-
end
|
28
|
+
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
module NewRelic::Agent::Instrumentation
|
6
6
|
module PadrinoTracer
|
@@ -17,4 +17,4 @@ module NewRelic::Agent::Instrumentation
|
|
17
17
|
end
|
18
18
|
end
|
19
19
|
end
|
20
|
-
end
|
20
|
+
end
|
@@ -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
|
# Our Padrino instrumentation relies heavily on the fact that Padrino is
|
6
6
|
# built on Sinatra. Although it wires up a lot of its own routing logic,
|
@@ -19,19 +19,14 @@ DependencyDetection.defer do
|
|
19
19
|
@name = :padrino
|
20
20
|
configure_with :sinatra
|
21
21
|
|
22
|
-
depends_on { defined?(
|
22
|
+
depends_on { defined?(Padrino) && defined?(Padrino::Routing::InstanceMethods) }
|
23
23
|
|
24
24
|
executes do
|
25
|
-
|
25
|
+
NewRelic::Agent.logger.info('Installing Padrino instrumentation')
|
26
26
|
if use_prepend?
|
27
|
-
prepend_instrument
|
27
|
+
prepend_instrument Padrino::Application, NewRelic::Agent::Instrumentation::PadrinoTracer::Prepend
|
28
28
|
else
|
29
29
|
chain_instrument NewRelic::Agent::Instrumentation::PadrinoTracer::Chain
|
30
30
|
end
|
31
31
|
end
|
32
32
|
end
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
@@ -1,23 +1,23 @@
|
|
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
|
DependencyDetection.defer do
|
6
6
|
@name = :passenger
|
7
7
|
|
8
8
|
depends_on do
|
9
|
-
defined?(
|
9
|
+
defined?(PhusionPassenger)
|
10
10
|
end
|
11
11
|
|
12
12
|
executes do
|
13
|
-
|
13
|
+
NewRelic::Agent.logger.debug("Installing Passenger event hooks.")
|
14
14
|
|
15
|
-
|
16
|
-
|
15
|
+
PhusionPassenger.on_event(:stopping_worker_process) do
|
16
|
+
NewRelic::Agent.logger.debug("Passenger stopping this process, shutdown the agent.")
|
17
17
|
NewRelic::Agent.instance.shutdown
|
18
18
|
end
|
19
19
|
|
20
|
-
|
20
|
+
PhusionPassenger.on_event(:starting_worker_process) do |forked|
|
21
21
|
# We want to reset the stats from the stats engine in case any carried
|
22
22
|
# over into the spawned process. Don't clear them in case any were
|
23
23
|
# cached. We do this even in conservative spawning.
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
module NewRelic
|
6
6
|
module Agent
|
@@ -9,10 +9,9 @@ module NewRelic
|
|
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
|
12
|
-
REQUEST_START_HEADER
|
13
|
-
QUEUE_START_HEADER
|
12
|
+
REQUEST_START_HEADER = 'HTTP_X_REQUEST_START'.freeze
|
13
|
+
QUEUE_START_HEADER = 'HTTP_X_QUEUE_START'.freeze
|
14
14
|
MIDDLEWARE_START_HEADER = 'HTTP_X_MIDDLEWARE_START'.freeze
|
15
|
-
ALL_QUEUE_METRIC = 'WebFrontend/QueueTime'.freeze
|
16
15
|
# any timestamps before this are thrown out and the parser
|
17
16
|
# will try again with a larger unit (2000/1/1 UTC)
|
18
17
|
EARLIEST_ACCEPTABLE_TIME = Time.at(946684800).to_f
|
@@ -27,7 +26,7 @@ module NewRelic
|
|
27
26
|
|
28
27
|
module_function
|
29
28
|
|
30
|
-
def parse_frontend_timestamp(headers, now=Process.clock_gettime(Process::CLOCK_REALTIME))
|
29
|
+
def parse_frontend_timestamp(headers, now = Process.clock_gettime(Process::CLOCK_REALTIME))
|
31
30
|
earliest = nil
|
32
31
|
|
33
32
|
CANDIDATE_HEADERS.each do |header|
|
@@ -52,7 +51,7 @@ module NewRelic
|
|
52
51
|
when /^\s*([\d+\.]+)\s*$/ then $1
|
53
52
|
# following regexp intentionally unanchored to handle
|
54
53
|
# (ie ignore) leading server names
|
55
|
-
when /t=([\d+\.]+)/
|
54
|
+
when /t=([\d+\.]+)/ then $1
|
56
55
|
end
|
57
56
|
end
|
58
57
|
|
@@ -1,40 +1,48 @@
|
|
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::Agent::Instrumentation
|
6
6
|
module Rack
|
7
7
|
module Chain
|
8
|
-
def self.instrument!
|
9
|
-
NewRelic::Agent::Instrumentation::RackBuilder.track_deferred_detection
|
8
|
+
def self.instrument!(builder_class)
|
9
|
+
NewRelic::Agent::Instrumentation::RackBuilder.track_deferred_detection(builder_class)
|
10
10
|
|
11
11
|
builder_class.class_eval do
|
12
12
|
include ::NewRelic::Agent::Instrumentation::RackBuilder
|
13
|
-
|
13
|
+
|
14
14
|
def to_app_with_newrelic_deferred_dependency_detection
|
15
15
|
with_deferred_dependency_detection { to_app_without_newrelic }
|
16
16
|
end
|
17
17
|
|
18
|
-
alias_method
|
19
|
-
alias_method
|
20
|
-
|
18
|
+
alias_method(:to_app_without_newrelic, :to_app)
|
19
|
+
alias_method(:to_app, :to_app_with_newrelic_deferred_dependency_detection)
|
20
|
+
|
21
21
|
if ::NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled?
|
22
|
-
::NewRelic::Agent.logger.info
|
22
|
+
::NewRelic::Agent.logger.info("Installing #{builder_class} middleware instrumentation")
|
23
23
|
|
24
|
-
def run_with_newrelic(app, *args)
|
25
|
-
|
24
|
+
def run_with_newrelic(app = nil, *args, &block)
|
25
|
+
app_or_block = app || block
|
26
|
+
run_with_tracing(app_or_block) do |wrapped|
|
27
|
+
# Rack::Builder#run for Rack v3+ supports a block, and does not
|
28
|
+
# support args. Whether a block or an app is provided, that
|
29
|
+
# callable object will be wrapped into a MiddlewareProxy
|
30
|
+
# instance. That proxy instance must then be passed to
|
31
|
+
# run_without_newrelic as the app argument.
|
32
|
+
block ? run_without_newrelic(wrapped, &nil) : run_without_newrelic(wrapped, *args)
|
33
|
+
end
|
26
34
|
end
|
27
|
-
|
28
|
-
alias_method
|
29
|
-
alias_method
|
30
|
-
|
35
|
+
|
36
|
+
alias_method(:run_without_newrelic, :run)
|
37
|
+
alias_method(:run, :run_with_newrelic)
|
38
|
+
|
31
39
|
def use_with_newrelic(middleware_class, *args, &block)
|
32
40
|
use_with_tracing(middleware_class) { |wrapped_class| use_without_newrelic(wrapped_class, *args, &block) }
|
33
41
|
end
|
34
42
|
ruby2_keywords(:use_with_newrelic) if respond_to?(:ruby2_keywords, true)
|
35
43
|
|
36
|
-
alias_method
|
37
|
-
alias_method
|
44
|
+
alias_method(:use_without_newrelic, :use)
|
45
|
+
alias_method(:use, :use_with_newrelic)
|
38
46
|
end
|
39
47
|
end
|
40
48
|
end
|
@@ -42,10 +50,10 @@ module NewRelic::Agent::Instrumentation
|
|
42
50
|
|
43
51
|
module URLMap
|
44
52
|
module Chain
|
45
|
-
def self.instrument!
|
53
|
+
def self.instrument!(url_map_class)
|
46
54
|
url_map_class.class_eval do
|
47
|
-
alias_method
|
48
|
-
|
55
|
+
alias_method(:initialize_without_newrelic, :initialize)
|
56
|
+
|
49
57
|
def initialize(map = {})
|
50
58
|
traced_map = ::NewRelic::Agent::Instrumentation::RackURLMap.generate_traced_map(map)
|
51
59
|
initialize_without_newrelic(traced_map)
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
module NewRelic::Agent::Instrumentation
|
6
6
|
module RackHelpers
|
@@ -20,6 +20,8 @@ module NewRelic::Agent::Instrumentation
|
|
20
20
|
return false unless defined? ::Puma::Const::PUMA_VERSION
|
21
21
|
|
22
22
|
version = Gem::Version.new(::Puma::Const::PUMA_VERSION)
|
23
|
+
# TODO: MAJOR VERSION - update min_version to 3.9.0
|
24
|
+
# min_version = Gem::Version.new('3.9.0')
|
23
25
|
min_version = Gem::Version.new('2.12.0')
|
24
26
|
version >= min_version
|
25
27
|
end
|
@@ -29,4 +31,3 @@ module NewRelic::Agent::Instrumentation
|
|
29
31
|
end
|
30
32
|
end
|
31
33
|
end
|
32
|
-
|
@@ -1,13 +1,12 @@
|
|
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
|
module Instrumentation
|
8
8
|
module RackBuilder
|
9
|
-
|
10
|
-
def self.track_deferred_detection builder_class
|
9
|
+
def self.track_deferred_detection(builder_class)
|
11
10
|
class << builder_class
|
12
11
|
attr_accessor :_nr_deferred_detection_ran
|
13
12
|
end
|
@@ -16,19 +15,20 @@ module NewRelic
|
|
16
15
|
|
17
16
|
def deferred_dependency_check
|
18
17
|
return if self.class._nr_deferred_detection_ran
|
19
|
-
|
20
|
-
NewRelic::Agent.logger.info
|
18
|
+
|
19
|
+
NewRelic::Agent.logger.info("Doing deferred dependency-detection before Rack startup")
|
21
20
|
DependencyDetection.detect!
|
22
21
|
self.class._nr_deferred_detection_ran = true
|
23
22
|
end
|
24
23
|
|
25
24
|
def check_for_late_instrumentation(app)
|
26
25
|
return if defined?(@checked_for_late_instrumentation) && @checked_for_late_instrumentation
|
26
|
+
|
27
27
|
@checked_for_late_instrumentation = true
|
28
28
|
if middleware_instrumentation_enabled?
|
29
29
|
if ::NewRelic::Agent::Instrumentation::MiddlewareProxy.needs_wrapping?(app)
|
30
30
|
::NewRelic::Agent.logger.info("We weren't able to instrument all of your Rack middlewares.",
|
31
|
-
|
31
|
+
"To correct this, ensure you 'require \"newrelic_rpm\"' before setting up your middleware stack.")
|
32
32
|
end
|
33
33
|
end
|
34
34
|
end
|
@@ -41,22 +41,24 @@ module NewRelic
|
|
41
41
|
# this point.
|
42
42
|
def with_deferred_dependency_detection
|
43
43
|
deferred_dependency_check
|
44
|
-
yield.tap{ |result| check_for_late_instrumentation(result) }
|
44
|
+
yield.tap { |result| check_for_late_instrumentation(result) }
|
45
45
|
end
|
46
46
|
|
47
47
|
def middleware_instrumentation_enabled?
|
48
48
|
::NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled?
|
49
49
|
end
|
50
50
|
|
51
|
-
def run_with_tracing
|
51
|
+
def run_with_tracing(app)
|
52
52
|
return yield(app) unless middleware_instrumentation_enabled?
|
53
|
-
|
53
|
+
|
54
|
+
yield(::NewRelic::Agent::Instrumentation::MiddlewareProxy.wrap(app, true))
|
54
55
|
end
|
55
56
|
|
56
|
-
def use_with_tracing
|
57
|
+
def use_with_tracing(middleware_class)
|
57
58
|
return if middleware_class.nil?
|
58
59
|
return yield(middleware_class) unless middleware_instrumentation_enabled?
|
59
|
-
|
60
|
+
|
61
|
+
yield(::NewRelic::Agent::Instrumentation::MiddlewareProxy.for_class(middleware_class))
|
60
62
|
end
|
61
63
|
end
|
62
64
|
|
@@ -70,4 +72,4 @@ module NewRelic
|
|
70
72
|
end
|
71
73
|
end
|
72
74
|
end
|
73
|
-
end
|
75
|
+
end
|
@@ -1,14 +1,13 @@
|
|
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::Agent::Instrumentation
|
6
6
|
module Rack
|
7
|
-
|
8
7
|
module URLMap
|
9
8
|
module Prepend
|
10
9
|
def initialize(map = {})
|
11
|
-
super
|
10
|
+
super(::NewRelic::Agent::Instrumentation::RackURLMap.generate_traced_map(map))
|
12
11
|
end
|
13
12
|
end
|
14
13
|
end
|
@@ -16,16 +15,23 @@ module NewRelic::Agent::Instrumentation
|
|
16
15
|
module Prepend
|
17
16
|
include ::NewRelic::Agent::Instrumentation::RackBuilder
|
18
17
|
|
19
|
-
def self.prepended
|
20
|
-
NewRelic::Agent::Instrumentation::RackBuilder.track_deferred_detection
|
18
|
+
def self.prepended(builder_class)
|
19
|
+
NewRelic::Agent::Instrumentation::RackBuilder.track_deferred_detection(builder_class)
|
21
20
|
end
|
22
21
|
|
23
22
|
def to_app
|
24
23
|
with_deferred_dependency_detection { super }
|
25
24
|
end
|
26
25
|
|
27
|
-
def run(app, *args)
|
28
|
-
|
26
|
+
def run(app = nil, *args, &block)
|
27
|
+
app_or_block = app || block
|
28
|
+
run_with_tracing(app_or_block) do |wrapped|
|
29
|
+
# Rack::Builder#run for Rack v3+ supports a block, and does not
|
30
|
+
# support args. Whether a block or an app is provided, that callable
|
31
|
+
# object will be wrapped into a MiddlewareProxy instance. That
|
32
|
+
# proxy instance must then be passed to super as the app argument.
|
33
|
+
block ? super(wrapped, &nil) : super(wrapped, *args)
|
34
|
+
end
|
29
35
|
end
|
30
36
|
|
31
37
|
def use(middleware_class, *args, &blk)
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'new_relic/agent/instrumentation/controller_instrumentation'
|
6
6
|
|
@@ -13,14 +13,14 @@ DependencyDetection.defer do
|
|
13
13
|
named :rack
|
14
14
|
|
15
15
|
depends_on do
|
16
|
-
defined?(
|
16
|
+
defined?(Rack) && defined?(Rack::Builder)
|
17
17
|
end
|
18
18
|
|
19
19
|
executes do
|
20
20
|
if use_prepend?
|
21
|
-
prepend_instrument
|
21
|
+
prepend_instrument Rack::Builder, NewRelic::Agent::Instrumentation::Rack::Prepend
|
22
22
|
else
|
23
|
-
chain_instrument_target
|
23
|
+
chain_instrument_target Rack::Builder, NewRelic::Agent::Instrumentation::Rack::Chain
|
24
24
|
end
|
25
25
|
end
|
26
26
|
end
|
@@ -29,14 +29,14 @@ DependencyDetection.defer do
|
|
29
29
|
named :puma_rack
|
30
30
|
|
31
31
|
depends_on do
|
32
|
-
defined?(
|
32
|
+
defined?(Puma::Rack::Builder)
|
33
33
|
end
|
34
34
|
|
35
35
|
executes do
|
36
36
|
if use_prepend?
|
37
|
-
prepend_instrument
|
37
|
+
prepend_instrument Puma::Rack::Builder, NewRelic::Agent::Instrumentation::Rack::Prepend
|
38
38
|
else
|
39
|
-
chain_instrument_target
|
39
|
+
chain_instrument_target Puma::Rack::Builder, NewRelic::Agent::Instrumentation::Rack::Chain
|
40
40
|
end
|
41
41
|
end
|
42
42
|
end
|
@@ -45,19 +45,19 @@ DependencyDetection.defer do
|
|
45
45
|
named :rack_urlmap
|
46
46
|
|
47
47
|
depends_on do
|
48
|
-
defined?(
|
48
|
+
defined?(Rack) && defined?(Rack::URLMap)
|
49
49
|
end
|
50
50
|
|
51
51
|
depends_on do
|
52
|
-
|
52
|
+
NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled?
|
53
53
|
end
|
54
54
|
|
55
55
|
executes do
|
56
56
|
if use_prepend?
|
57
|
-
prepend_instrument
|
57
|
+
prepend_instrument Rack::URLMap, NewRelic::Agent::Instrumentation::Rack::URLMap::Prepend
|
58
58
|
else
|
59
|
-
chain_instrument_target
|
60
|
-
|
59
|
+
chain_instrument_target Rack::URLMap, NewRelic::Agent::Instrumentation::Rack::URLMap::Chain
|
60
|
+
NewRelic::Agent::Instrumentation::RackHelpers.instrument_url_map
|
61
61
|
end
|
62
62
|
end
|
63
63
|
end
|
@@ -70,14 +70,14 @@ DependencyDetection.defer do
|
|
70
70
|
end
|
71
71
|
|
72
72
|
depends_on do
|
73
|
-
|
73
|
+
NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled?
|
74
74
|
end
|
75
75
|
|
76
76
|
executes do
|
77
77
|
if use_prepend?
|
78
|
-
prepend_instrument
|
78
|
+
prepend_instrument Puma::Rack::URLMap, NewRelic::Agent::Instrumentation::Rack::URLMap::Prepend
|
79
79
|
else
|
80
|
-
chain_instrument_target
|
80
|
+
chain_instrument_target Puma::Rack::URLMap, NewRelic::Agent::Instrumentation::Rack::URLMap::Chain
|
81
81
|
end
|
82
82
|
end
|
83
83
|
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'new_relic/agent/parameter_filtering'
|
6
6
|
|
@@ -20,17 +20,16 @@ module NewRelic
|
|
20
20
|
end
|
21
21
|
end
|
22
22
|
|
23
|
-
def process_action(*args) #THREAD_LOCAL_ACCESS
|
23
|
+
def process_action(*args) # THREAD_LOCAL_ACCESS
|
24
24
|
munged_params = NewRelic::Agent::ParameterFiltering.filter_rails_request_parameters(request.filtered_parameters)
|
25
25
|
perform_action_with_newrelic_trace(:category => :controller,
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
26
|
+
:name => self.action_name,
|
27
|
+
:path => newrelic_metric_path,
|
28
|
+
:params => munged_params,
|
29
|
+
:class_name => self.class.name) do
|
30
30
|
super
|
31
31
|
end
|
32
32
|
end
|
33
|
-
|
34
33
|
end
|
35
34
|
|
36
35
|
module ActionView
|
@@ -41,12 +40,13 @@ module NewRelic
|
|
41
40
|
"file"
|
42
41
|
elsif identifier.nil?
|
43
42
|
::NewRelic::Agent::UNKNOWN_METRIC
|
44
|
-
elsif identifier.include?
|
43
|
+
elsif identifier.include?('/') # this is a filepath
|
45
44
|
identifier.split('/')[-2..-1].join('/')
|
46
45
|
else
|
47
46
|
identifier
|
48
47
|
end
|
49
48
|
end
|
49
|
+
|
50
50
|
def render_type(file_path)
|
51
51
|
file = File.basename(file_path)
|
52
52
|
if file.starts_with?('_')
|
@@ -66,7 +66,7 @@ DependencyDetection.defer do
|
|
66
66
|
@name = :rails3_controller
|
67
67
|
|
68
68
|
depends_on do
|
69
|
-
defined?(
|
69
|
+
defined?(Rails::VERSION::MAJOR) && Rails::VERSION::MAJOR.to_i == 3
|
70
70
|
end
|
71
71
|
|
72
72
|
depends_on do
|
@@ -74,7 +74,7 @@ DependencyDetection.defer do
|
|
74
74
|
end
|
75
75
|
|
76
76
|
executes do
|
77
|
-
|
77
|
+
NewRelic::Agent.logger.info('Installing Rails 3 Controller instrumentation')
|
78
78
|
end
|
79
79
|
|
80
80
|
executes do
|
@@ -92,8 +92,8 @@ DependencyDetection.defer do
|
|
92
92
|
|
93
93
|
# Enabled for Rails 3.2
|
94
94
|
depends_on do
|
95
|
-
defined?(
|
96
|
-
|
95
|
+
defined?(Rails::VERSION::MAJOR) && defined?(Rails::VERSION::MINOR) &&
|
96
|
+
Rails::VERSION::MAJOR.to_i == 3 && Rails::VERSION::MINOR.to_i == 2
|
97
97
|
end
|
98
98
|
|
99
99
|
depends_on do
|
@@ -101,7 +101,7 @@ DependencyDetection.defer do
|
|
101
101
|
end
|
102
102
|
|
103
103
|
executes do
|
104
|
-
|
104
|
+
NewRelic::Agent.logger.info('Installing Rails 3.2 view instrumentation')
|
105
105
|
end
|
106
106
|
|
107
107
|
executes do
|
@@ -111,10 +111,10 @@ DependencyDetection.defer do
|
|
111
111
|
|
112
112
|
def render_with_newrelic(context, options)
|
113
113
|
# This is needed for rails 3.2 compatibility
|
114
|
-
@details = extract_details(options) if respond_to?
|
114
|
+
@details = extract_details(options) if respond_to?(:extract_details, true)
|
115
115
|
identifier = determine_template(options) ? determine_template(options).identifier : nil
|
116
116
|
scope_name = "View/#{NewRelic::Agent::Instrumentation::Rails3::ActionView::NewRelic.template_metric(identifier, options)}/Rendering"
|
117
|
-
trace_execution_scoped
|
117
|
+
trace_execution_scoped(scope_name) do
|
118
118
|
render_without_newrelic(context, options)
|
119
119
|
end
|
120
120
|
end
|