newrelic_rpm 8.7.0 → 8.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +4 -0
- data/.rubocop.yml +68 -189
- data/.rubocop_todo.yml +52 -0
- data/.simplecov +15 -0
- data/.snyk +11 -0
- data/.yardopts +1 -0
- data/Brewfile +1 -0
- data/CHANGELOG.md +181 -23
- data/CONTRIBUTING.md +1 -1
- data/Gemfile +0 -1
- data/Guardfile +1 -0
- data/README.md +1 -1
- data/Rakefile +13 -20
- data/Thorfile +5 -0
- data/bin/newrelic +2 -1
- data/bin/newrelic_cmd +1 -0
- data/bin/nrdebug +66 -45
- data/config.dot +5 -5
- data/init.rb +4 -4
- data/install.rb +2 -2
- data/lib/new_relic/agent/adaptive_sampler.rb +4 -4
- data/lib/new_relic/agent/agent/shutdown.rb +34 -0
- data/lib/new_relic/agent/agent/special_startup.rb +70 -0
- data/lib/new_relic/agent/agent/start_worker_thread.rb +163 -0
- data/lib/new_relic/agent/agent/startup.rb +196 -0
- data/lib/new_relic/agent/agent.rb +134 -534
- data/lib/new_relic/agent/agent_logger.rb +8 -10
- data/lib/new_relic/agent/attribute_filter.rb +40 -21
- data/lib/new_relic/agent/attribute_processing.rb +7 -7
- data/lib/new_relic/agent/attributes.rb +2 -2
- data/lib/new_relic/agent/audit_logger.rb +3 -3
- data/lib/new_relic/agent/autostart.rb +2 -2
- data/lib/new_relic/agent/chained_call.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command_router.rb +8 -8
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +1 -1
- data/lib/new_relic/agent/configuration/default_source.rb +105 -41
- data/lib/new_relic/agent/configuration/dotted_hash.rb +2 -2
- data/lib/new_relic/agent/configuration/environment_source.rb +5 -5
- data/lib/new_relic/agent/configuration/event_harvest_config.rb +1 -1
- data/lib/new_relic/agent/configuration/high_security_source.rb +1 -1
- data/lib/new_relic/agent/configuration/manager.rb +5 -5
- data/lib/new_relic/agent/configuration/manual_source.rb +1 -1
- data/lib/new_relic/agent/configuration/mask_defaults.rb +3 -3
- data/lib/new_relic/agent/configuration/security_policy_source.rb +7 -4
- data/lib/new_relic/agent/configuration/server_source.rb +7 -7
- data/lib/new_relic/agent/configuration/yaml_source.rb +6 -4
- data/lib/new_relic/agent/configuration.rb +1 -1
- data/lib/new_relic/agent/connect/request_builder.rb +3 -3
- data/lib/new_relic/agent/connect/response_handler.rb +5 -5
- data/lib/new_relic/agent/custom_event_aggregator.rb +5 -5
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +1 -1
- data/lib/new_relic/agent/database/obfuscator.rb +2 -2
- data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +1 -1
- data/lib/new_relic/agent/database.rb +21 -21
- data/lib/new_relic/agent/database_adapter.rb +1 -1
- data/lib/new_relic/agent/datastores/metric_helper.rb +12 -13
- data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +4 -3
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +2 -4
- data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +2 -2
- data/lib/new_relic/agent/datastores/mongo.rb +1 -1
- data/lib/new_relic/agent/datastores/redis.rb +3 -3
- data/lib/new_relic/agent/datastores.rb +4 -4
- data/lib/new_relic/agent/deprecator.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +16 -17
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +9 -10
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +18 -19
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +8 -10
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +2 -3
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +40 -40
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +16 -15
- data/lib/new_relic/agent/distributed_tracing.rb +17 -18
- data/lib/new_relic/agent/encoding_normalizer.rb +1 -1
- data/lib/new_relic/agent/error_collector.rb +6 -5
- data/lib/new_relic/agent/error_event_aggregator.rb +3 -4
- data/lib/new_relic/agent/error_filter.rb +5 -5
- data/lib/new_relic/agent/error_trace_aggregator.rb +3 -3
- data/lib/new_relic/agent/event_aggregator.rb +20 -20
- data/lib/new_relic/agent/event_buffer.rb +1 -1
- data/lib/new_relic/agent/event_listener.rb +1 -1
- data/lib/new_relic/agent/event_loop.rb +9 -9
- data/lib/new_relic/agent/external.rb +10 -10
- data/lib/new_relic/agent/guid_generator.rb +2 -2
- data/lib/new_relic/agent/harvester.rb +1 -1
- data/lib/new_relic/agent/heap.rb +5 -5
- data/lib/new_relic/agent/hostname.rb +4 -3
- data/lib/new_relic/agent/http_clients/abstract.rb +1 -2
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +5 -6
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +4 -5
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +2 -3
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +1 -2
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +0 -1
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +1 -2
- data/lib/new_relic/agent/http_clients/uri_util.rb +1 -2
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +6 -5
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +31 -23
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +7 -6
- data/lib/new_relic/agent/instrumentation/active_job.rb +11 -4
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +4 -3
- data/lib/new_relic/agent/instrumentation/active_record.rb +9 -9
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +37 -21
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +3 -3
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +21 -11
- data/lib/new_relic/agent/instrumentation/active_storage.rb +2 -2
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +16 -15
- data/lib/new_relic/agent/instrumentation/active_support_logger/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_support_logger.rb +2 -2
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +2 -2
- data/lib/new_relic/agent/instrumentation/authlogic.rb +2 -2
- data/lib/new_relic/agent/instrumentation/bunny/chain.rb +10 -10
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +10 -11
- data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +4 -4
- data/lib/new_relic/agent/instrumentation/bunny.rb +1 -2
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +25 -17
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +21 -22
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +19 -16
- data/lib/new_relic/agent/instrumentation/curb/prepend.rb +2 -3
- data/lib/new_relic/agent/instrumentation/curb.rb +2 -2
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +44 -44
- data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +1 -2
- data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +2 -3
- data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +1 -2
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/excon/middleware.rb +3 -3
- data/lib/new_relic/agent/instrumentation/excon.rb +2 -2
- data/lib/new_relic/agent/instrumentation/grape/chain.rb +6 -6
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +5 -5
- data/lib/new_relic/agent/instrumentation/grape/prepend.rb +4 -4
- data/lib/new_relic/agent/instrumentation/grape.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +97 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +89 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +111 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +30 -0
- data/lib/new_relic/agent/instrumentation/grpc/helper.rb +32 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/chain.rb +69 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +134 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb +35 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/rpc_server_prepend.rb +26 -0
- data/lib/new_relic/agent/instrumentation/grpc_client.rb +23 -0
- data/lib/new_relic/agent/instrumentation/grpc_server.rb +25 -0
- data/lib/new_relic/agent/instrumentation/httpclient/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +6 -6
- data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/httpclient.rb +2 -2
- data/lib/new_relic/agent/instrumentation/httprb/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +4 -4
- data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/httprb.rb +2 -2
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +2 -2
- data/lib/new_relic/agent/instrumentation/logger/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +5 -1
- data/lib/new_relic/agent/instrumentation/logger/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/logger.rb +2 -2
- data/lib/new_relic/agent/instrumentation/memcache/chain.rb +2 -3
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +24 -17
- data/lib/new_relic/agent/instrumentation/memcache/helper.rb +8 -9
- data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +17 -15
- data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +21 -15
- data/lib/new_relic/agent/instrumentation/memcache.rb +5 -6
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +2 -2
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +0 -1
- data/lib/new_relic/agent/instrumentation/mongo.rb +2 -2
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +15 -14
- data/lib/new_relic/agent/instrumentation/net_http/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +5 -5
- data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/net_http.rb +2 -2
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +6 -6
- data/lib/new_relic/agent/instrumentation/padrino/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/padrino.rb +2 -2
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/queue_time.rb +1 -2
- data/lib/new_relic/agent/instrumentation/rack/chain.rb +12 -12
- data/lib/new_relic/agent/instrumentation/rack/helpers.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +7 -7
- data/lib/new_relic/agent/instrumentation/rack/prepend.rb +4 -4
- data/lib/new_relic/agent/instrumentation/rack.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +6 -6
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +3 -2
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +3 -2
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +3 -2
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/rake/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +6 -2
- data/lib/new_relic/agent/instrumentation/rake/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rake.rb +3 -3
- data/lib/new_relic/agent/instrumentation/redis/chain.rb +3 -4
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +5 -6
- data/lib/new_relic/agent/instrumentation/redis/prepend.rb +3 -4
- data/lib/new_relic/agent/instrumentation/redis.rb +2 -2
- data/lib/new_relic/agent/instrumentation/resque/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +0 -1
- data/lib/new_relic/agent/instrumentation/resque/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/resque.rb +3 -3
- data/lib/new_relic/agent/instrumentation/sequel.rb +8 -8
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +6 -5
- data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +2 -2
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +2 -2
- data/lib/new_relic/agent/instrumentation/sinatra.rb +2 -2
- data/lib/new_relic/agent/instrumentation/sunspot.rb +4 -4
- data/lib/new_relic/agent/instrumentation/thread/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/thread/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/thread.rb +2 -2
- data/lib/new_relic/agent/instrumentation/tilt/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/tilt.rb +1 -1
- data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +8 -8
- data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/typhoeus.rb +2 -2
- data/lib/new_relic/agent/instrumentation.rb +1 -1
- data/lib/new_relic/agent/internal_agent_error.rb +1 -1
- data/lib/new_relic/agent/javascript_instrumentor.rb +8 -8
- data/lib/new_relic/agent/linking_metadata.rb +2 -3
- data/lib/new_relic/agent/local_log_decorator.rb +0 -1
- data/lib/new_relic/agent/log_event_aggregator.rb +7 -7
- data/lib/new_relic/agent/log_once.rb +1 -1
- data/lib/new_relic/agent/log_priority.rb +1 -1
- data/lib/new_relic/agent/logging.rb +13 -13
- data/lib/new_relic/agent/memory_logger.rb +1 -1
- data/lib/new_relic/agent/messaging.rb +19 -20
- data/lib/new_relic/agent/method_tracer.rb +15 -10
- data/lib/new_relic/agent/method_tracer_helpers.rb +83 -1
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +4 -4
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +3 -3
- data/lib/new_relic/agent/monitors/inbound_request_monitor.rb +1 -1
- data/lib/new_relic/agent/monitors/synthetics_monitor.rb +2 -2
- data/lib/new_relic/agent/monitors.rb +5 -5
- data/lib/new_relic/agent/new_relic_service/encoders.rb +2 -2
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +4 -4
- data/lib/new_relic/agent/new_relic_service/marshaller.rb +1 -1
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +1 -1
- data/lib/new_relic/agent/new_relic_service.rb +214 -166
- data/lib/new_relic/agent/{noticible_error.rb → noticeable_error.rb} +2 -3
- data/lib/new_relic/agent/null_logger.rb +1 -1
- data/lib/new_relic/agent/obfuscator.rb +3 -3
- data/lib/new_relic/agent/parameter_filtering.rb +1 -1
- data/lib/new_relic/agent/payload_metric_mapping.rb +1 -1
- data/lib/new_relic/agent/pipe_channel_manager.rb +10 -5
- data/lib/new_relic/agent/pipe_service.rb +2 -2
- data/lib/new_relic/agent/prepend_supportability.rb +2 -2
- data/lib/new_relic/agent/priority_sampled_buffer.rb +4 -4
- data/lib/new_relic/agent/range_extensions.rb +8 -28
- data/lib/new_relic/agent/rules_engine/replacement_rule.rb +2 -2
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +1 -1
- data/lib/new_relic/agent/rules_engine.rb +2 -2
- data/lib/new_relic/agent/sampler.rb +1 -1
- data/lib/new_relic/agent/sampler_collection.rb +1 -1
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +2 -2
- data/lib/new_relic/agent/samplers/memory_sampler.rb +10 -10
- data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/vm_sampler.rb +3 -1
- data/lib/new_relic/agent/span_event_aggregator.rb +2 -2
- data/lib/new_relic/agent/span_event_primitive.rb +24 -19
- data/lib/new_relic/agent/sql_sampler.rb +8 -8
- data/lib/new_relic/agent/stats.rb +15 -4
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +1 -2
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +4 -4
- data/lib/new_relic/agent/stats_engine.rb +1 -1
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +6 -6
- data/lib/new_relic/agent/system_info.rb +68 -53
- data/lib/new_relic/agent/threading/agent_thread.rb +13 -9
- data/lib/new_relic/agent/threading/backtrace_node.rb +6 -4
- data/lib/new_relic/agent/threading/backtrace_service.rb +1 -1
- data/lib/new_relic/agent/threading/thread_profile.rb +4 -4
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
- data/lib/new_relic/agent/tracer.rb +19 -17
- data/lib/new_relic/agent/transaction/abstract_segment.rb +93 -34
- data/lib/new_relic/agent/transaction/datastore_segment.rb +12 -12
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +52 -48
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +21 -22
- data/lib/new_relic/agent/transaction/external_request_segment.rb +37 -29
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +6 -6
- data/lib/new_relic/agent/transaction/request_attributes.rb +29 -29
- data/lib/new_relic/agent/transaction/segment.rb +8 -8
- data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/trace.rb +3 -3
- data/lib/new_relic/agent/transaction/trace_builder.rb +10 -10
- data/lib/new_relic/agent/transaction/trace_context.rb +22 -20
- data/lib/new_relic/agent/transaction/trace_node.rb +9 -9
- data/lib/new_relic/agent/transaction/tracing.rb +7 -7
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -2
- data/lib/new_relic/agent/transaction.rb +35 -31
- data/lib/new_relic/agent/transaction_error_primitive.rb +9 -9
- data/lib/new_relic/agent/transaction_event_aggregator.rb +5 -5
- data/lib/new_relic/agent/transaction_event_primitive.rb +3 -4
- data/lib/new_relic/agent/transaction_event_recorder.rb +15 -14
- data/lib/new_relic/agent/transaction_metrics.rb +4 -4
- data/lib/new_relic/agent/transaction_sampler.rb +5 -5
- data/lib/new_relic/agent/transaction_time_aggregator.rb +14 -14
- data/lib/new_relic/agent/utilization/aws.rb +4 -4
- data/lib/new_relic/agent/utilization/azure.rb +2 -2
- data/lib/new_relic/agent/utilization/gcp.rb +7 -7
- data/lib/new_relic/agent/utilization/pcf.rb +4 -4
- data/lib/new_relic/agent/utilization/vendor.rb +28 -28
- data/lib/new_relic/agent/utilization_data.rb +1 -1
- data/lib/new_relic/agent/vm/jruby_vm.rb +1 -1
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
- data/lib/new_relic/agent/vm/mri_vm.rb +36 -23
- data/lib/new_relic/agent/vm/snapshot.rb +2 -2
- data/lib/new_relic/agent/vm.rb +1 -1
- data/lib/new_relic/agent/worker_loop.rb +2 -2
- data/lib/new_relic/agent.rb +27 -27
- data/lib/new_relic/cli/command.rb +6 -6
- data/lib/new_relic/cli/commands/deployments.rb +81 -29
- data/lib/new_relic/cli/commands/install.rb +6 -6
- data/lib/new_relic/coerce.rb +5 -6
- data/lib/new_relic/collection_helper.rb +4 -4
- data/lib/new_relic/constants.rb +0 -1
- data/lib/new_relic/control/class_methods.rb +1 -1
- data/lib/new_relic/control/frameworks/external.rb +1 -1
- data/lib/new_relic/control/frameworks/rails.rb +3 -3
- data/lib/new_relic/control/frameworks/rails3.rb +1 -1
- data/lib/new_relic/control/frameworks/rails4.rb +1 -1
- data/lib/new_relic/control/frameworks/rails_notifications.rb +1 -1
- data/lib/new_relic/control/frameworks/ruby.rb +1 -1
- data/lib/new_relic/control/frameworks/sinatra.rb +1 -1
- data/lib/new_relic/control/frameworks.rb +1 -1
- data/lib/new_relic/control/instance_methods.rb +20 -42
- data/lib/new_relic/control/instrumentation.rb +7 -7
- data/lib/new_relic/control/private_instance_methods.rb +48 -0
- data/lib/new_relic/control/server_methods.rb +2 -2
- data/lib/new_relic/control.rb +1 -1
- data/lib/new_relic/delayed_job_injection.rb +1 -1
- data/lib/new_relic/dependency_detection.rb +23 -22
- data/lib/new_relic/environment_report.rb +24 -14
- data/lib/new_relic/helper.rb +5 -5
- data/lib/new_relic/language_support.rb +8 -3
- data/lib/new_relic/latest_changes.rb +4 -4
- data/lib/new_relic/local_environment.rb +9 -11
- data/lib/new_relic/metric_data.rb +30 -24
- data/lib/new_relic/metric_spec.rb +3 -3
- data/lib/new_relic/noticed_error.rb +3 -6
- data/lib/new_relic/rack/agent_hooks.rb +1 -1
- data/lib/new_relic/rack/agent_middleware.rb +1 -1
- data/lib/new_relic/rack/browser_monitoring.rb +132 -123
- data/lib/new_relic/rack.rb +1 -1
- data/lib/new_relic/recipes/capistrano3.rb +3 -59
- data/lib/new_relic/recipes/capistrano_legacy.rb +13 -13
- data/lib/new_relic/recipes/helpers/send_deployment.rb +69 -0
- data/lib/new_relic/recipes.rb +1 -1
- data/lib/new_relic/supportability_helper.rb +6 -6
- data/lib/new_relic/traced_thread.rb +5 -7
- data/lib/new_relic/version.rb +2 -2
- data/lib/newrelic_rpm.rb +1 -1
- data/lib/sequel/extensions/newrelic_instrumentation.rb +8 -8
- data/lib/sequel/plugins/newrelic_instrumentation.rb +1 -1
- data/lib/tasks/all.rb +1 -1
- data/lib/tasks/config.rake +8 -112
- data/lib/tasks/coverage_report.rake +28 -0
- data/lib/tasks/{config.html.erb → helpers/config.html.erb} +0 -0
- data/lib/tasks/{config.text.erb → helpers/config.text.erb} +0 -0
- data/lib/tasks/helpers/format.rb +120 -0
- data/lib/tasks/helpers/matches.rb +12 -0
- data/lib/tasks/helpers/prompt.rb +24 -0
- data/lib/tasks/helpers/removers.rb +33 -0
- data/lib/tasks/install.rake +4 -0
- data/lib/tasks/instrumentation_generator/README.md +63 -0
- data/lib/tasks/instrumentation_generator/TODO.md +33 -0
- data/lib/tasks/instrumentation_generator/instrumentation.thor +102 -0
- data/lib/tasks/instrumentation_generator/templates/Envfile.tt +9 -0
- data/lib/tasks/instrumentation_generator/templates/chain.tt +21 -0
- data/lib/tasks/instrumentation_generator/templates/chain_method.tt +7 -0
- data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +29 -0
- data/lib/tasks/instrumentation_generator/templates/instrumentation.tt +12 -0
- data/lib/tasks/instrumentation_generator/templates/instrumentation_method.tt +3 -0
- data/lib/tasks/instrumentation_generator/templates/newrelic.yml.tt +19 -0
- data/lib/tasks/instrumentation_generator/templates/prepend.tt +13 -0
- data/lib/tasks/instrumentation_generator/templates/prepend_method.tt +3 -0
- data/lib/tasks/instrumentation_generator/templates/test.tt +15 -0
- data/lib/tasks/multiverse.rake +4 -0
- data/lib/tasks/multiverse.rb +5 -30
- data/lib/tasks/newrelic.rb +1 -1
- data/lib/tasks/tests.rake +7 -8
- data/newrelic.yml +514 -483
- data/newrelic_rpm.gemspec +16 -21
- data/recipes/newrelic.rb +1 -1
- data/test/agent_helper.rb +125 -147
- metadata +82 -90
- data/bin/mongrel_rpm +0 -32
@@ -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
|
@@ -26,10 +26,10 @@ module NewRelic
|
|
26
26
|
@parent_node = parent
|
27
27
|
end
|
28
28
|
|
29
|
-
def select_allowed_params
|
29
|
+
def select_allowed_params(params)
|
30
30
|
return unless params
|
31
31
|
params.select do |p|
|
32
|
-
NewRelic::Agent.instance.attribute_filter.allows_key?
|
32
|
+
NewRelic::Agent.instance.attribute_filter.allows_key?(p, AttributeFilter::DST_TRANSACTION_SEGMENTS)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
@@ -57,16 +57,16 @@ module NewRelic
|
|
57
57
|
end
|
58
58
|
|
59
59
|
def to_s_compact
|
60
|
-
str =
|
60
|
+
str = String.new('')
|
61
61
|
str << metric_name
|
62
62
|
if children.any?
|
63
|
-
str << "{#{children.map { |cs| cs.to_s_compact }.join(
|
63
|
+
str << "{#{children.map { |cs| cs.to_s_compact }.join(',')}}"
|
64
64
|
end
|
65
65
|
str
|
66
66
|
end
|
67
67
|
|
68
68
|
def to_debug_str(depth)
|
69
|
-
tab =
|
69
|
+
tab = String.new(' ') * depth
|
70
70
|
s = tab.clone
|
71
71
|
s << ">> #{'%3i ms' % (@entry_timestamp * 1000)} [#{self.class.name.split("::").last}] #{metric_name} \n"
|
72
72
|
unless params.empty?
|
@@ -77,7 +77,7 @@ module NewRelic
|
|
77
77
|
children.each do |cs|
|
78
78
|
s << cs.to_debug_str(depth + 1)
|
79
79
|
end
|
80
|
-
s << tab +
|
80
|
+
s << tab + '<< '
|
81
81
|
s << case @exit_timestamp
|
82
82
|
when nil then ' n/a'
|
83
83
|
when Numeric then '%3i ms' % (@exit_timestamp * 1000)
|
@@ -133,7 +133,7 @@ module NewRelic
|
|
133
133
|
# call the provided block for this node and each
|
134
134
|
# of the called nodes
|
135
135
|
def each_node(&block)
|
136
|
-
|
136
|
+
yield(self)
|
137
137
|
|
138
138
|
if @children
|
139
139
|
@children.each do |node|
|
@@ -145,7 +145,7 @@ module NewRelic
|
|
145
145
|
# call the provided block for this node and each
|
146
146
|
# of the called nodes while keeping track of nested nodes
|
147
147
|
def each_node_with_nest_tracking(&block)
|
148
|
-
summary =
|
148
|
+
summary = yield(self)
|
149
149
|
summary.current_nest_count += 1 if summary
|
150
150
|
|
151
151
|
if @children
|
@@ -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
|
@@ -20,10 +20,10 @@ module NewRelic
|
|
20
20
|
|
21
21
|
attr_writer :total_time
|
22
22
|
|
23
|
-
def add_segment
|
23
|
+
def add_segment(segment, parent = nil)
|
24
24
|
segment.transaction = self
|
25
25
|
segment.parent = parent || current_segment
|
26
|
-
set_current_segment
|
26
|
+
set_current_segment(segment)
|
27
27
|
if @segments.length < segment_limit
|
28
28
|
@segments << segment
|
29
29
|
else
|
@@ -33,12 +33,12 @@ module NewRelic
|
|
33
33
|
segment.transaction_assigned
|
34
34
|
end
|
35
35
|
|
36
|
-
def segment_complete
|
36
|
+
def segment_complete(segment)
|
37
37
|
# if parent was in another thread, remove the current_segment entry for this thread
|
38
38
|
if segment.parent && segment.parent.starting_thread_id != ::Thread.current.object_id
|
39
39
|
remove_current_segment_by_thread_id(::Thread.current.object_id)
|
40
40
|
else
|
41
|
-
set_current_segment
|
41
|
+
set_current_segment(segment.parent)
|
42
42
|
end
|
43
43
|
end
|
44
44
|
|
@@ -62,8 +62,8 @@ module NewRelic
|
|
62
62
|
OTHER_TRANSACTION_TOTAL_TIME
|
63
63
|
end
|
64
64
|
|
65
|
-
@metrics.record_unscoped
|
66
|
-
@metrics.record_unscoped
|
65
|
+
@metrics.record_unscoped(total_time_metric, total_time)
|
66
|
+
@metrics.record_unscoped("#{total_time_metric}/#{@frozen_name}", total_time)
|
67
67
|
end
|
68
68
|
end
|
69
69
|
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
|
6
6
|
module Agent
|
@@ -9,7 +9,6 @@ module NewRelic
|
|
9
9
|
attr_reader :samples
|
10
10
|
|
11
11
|
SINGLE_BUFFER_MAX = 20
|
12
|
-
NO_SAMPLES = [].freeze
|
13
12
|
|
14
13
|
def initialize
|
15
14
|
@samples = []
|
@@ -1,4 +1,3 @@
|
|
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.
|
4
3
|
# frozen_string_literal: true
|
@@ -37,7 +36,6 @@ module NewRelic
|
|
37
36
|
ACTION_CABLE_PREFIX = "#{CONTROLLER_PREFIX}ActionCable/"
|
38
37
|
|
39
38
|
WEB_TRANSACTION_CATEGORIES = [:web, :controller, :uri, :rack, :sinatra, :grape, :middleware, :action_cable].freeze
|
40
|
-
TRANSACTION_NAMING_SOURCES = [:child, :api].freeze
|
41
39
|
|
42
40
|
MIDDLEWARE_SUMMARY_METRICS = ["Middleware/all"].freeze
|
43
41
|
WEB_SUMMARY_METRIC = "HttpDispatcher"
|
@@ -124,12 +122,12 @@ module NewRelic
|
|
124
122
|
txn = Transaction.new(category, options)
|
125
123
|
state.reset(txn)
|
126
124
|
txn.state = state
|
127
|
-
txn.start
|
125
|
+
txn.start(options)
|
128
126
|
txn
|
129
127
|
end
|
130
128
|
|
131
129
|
def self.nested_transaction_name(name)
|
132
|
-
if name.start_with?(CONTROLLER_PREFIX
|
130
|
+
if name.start_with?(CONTROLLER_PREFIX, OTHER_TRANSACTION_PREFIX)
|
133
131
|
"#{NESTED_TRANSACTION_PREFIX}#{name}"
|
134
132
|
else
|
135
133
|
name
|
@@ -181,7 +179,7 @@ module NewRelic
|
|
181
179
|
if txn = tl_current
|
182
180
|
txn.add_agent_attribute(key, value, default_destinations)
|
183
181
|
else
|
184
|
-
NewRelic::Agent.logger.debug
|
182
|
+
NewRelic::Agent.logger.debug("Attempted to add agent attribute: #{key} without transaction")
|
185
183
|
end
|
186
184
|
end
|
187
185
|
|
@@ -194,7 +192,7 @@ module NewRelic
|
|
194
192
|
if txn = tl_current
|
195
193
|
txn.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
196
194
|
else
|
197
|
-
NewRelic::Agent.logger.debug
|
195
|
+
NewRelic::Agent.logger.debug("Attempted to merge untrusted attributes without transaction")
|
198
196
|
end
|
199
197
|
end
|
200
198
|
|
@@ -208,8 +206,8 @@ module NewRelic
|
|
208
206
|
if defined? JRuby
|
209
207
|
begin
|
210
208
|
require 'java'
|
211
|
-
java_import
|
212
|
-
java_import
|
209
|
+
java_import('java.lang.management.ManagementFactory')
|
210
|
+
java_import('com.sun.management.OperatingSystemMXBean')
|
213
211
|
@@java_classes_loaded = true
|
214
212
|
rescue
|
215
213
|
end
|
@@ -256,7 +254,7 @@ module NewRelic
|
|
256
254
|
merge_request_parameters(@filtered_params)
|
257
255
|
|
258
256
|
if request = options[:request]
|
259
|
-
@request_attributes = RequestAttributes.new
|
257
|
+
@request_attributes = RequestAttributes.new(request)
|
260
258
|
else
|
261
259
|
@request_attributes = nil
|
262
260
|
end
|
@@ -294,7 +292,7 @@ module NewRelic
|
|
294
292
|
end
|
295
293
|
|
296
294
|
def trace_id
|
297
|
-
@trace_id ||= NewRelic::Agent::GuidGenerator.generate_guid
|
295
|
+
@trace_id ||= NewRelic::Agent::GuidGenerator.generate_guid(32)
|
298
296
|
end
|
299
297
|
|
300
298
|
def trace_id=(value)
|
@@ -317,7 +315,7 @@ module NewRelic
|
|
317
315
|
@request_attributes && @request_attributes.port
|
318
316
|
end
|
319
317
|
|
320
|
-
# This transaction-local hash may be used as
|
318
|
+
# This transaction-local hash may be used as temporary storage by
|
321
319
|
# instrumentation that needs to pass data from one instrumentation point
|
322
320
|
# to another.
|
323
321
|
#
|
@@ -414,7 +412,7 @@ module NewRelic
|
|
414
412
|
@frozen_name ? true : false
|
415
413
|
end
|
416
414
|
|
417
|
-
def start
|
415
|
+
def start(options = {})
|
418
416
|
return if !state.is_execution_traced?
|
419
417
|
|
420
418
|
sql_sampler.on_start_transaction(state, request_path)
|
@@ -423,23 +421,24 @@ module NewRelic
|
|
423
421
|
|
424
422
|
ignore! if user_defined_rules_ignore?
|
425
423
|
|
426
|
-
create_initial_segment
|
427
|
-
Segment.merge_untrusted_agent_attributes \
|
424
|
+
create_initial_segment(options)
|
425
|
+
Segment.merge_untrusted_agent_attributes( \
|
428
426
|
@filtered_params,
|
429
427
|
:'request.parameters',
|
430
428
|
AttributeFilter::DST_SPAN_EVENTS
|
429
|
+
)
|
431
430
|
end
|
432
431
|
|
433
432
|
def initial_segment
|
434
433
|
segments.first
|
435
434
|
end
|
436
435
|
|
437
|
-
def create_initial_segment
|
438
|
-
segment = create_segment
|
436
|
+
def create_initial_segment(options = {})
|
437
|
+
segment = create_segment(@default_name, options)
|
439
438
|
segment.record_scoped_metric = false
|
440
439
|
end
|
441
440
|
|
442
|
-
def create_segment(name)
|
441
|
+
def create_segment(name, options = {})
|
443
442
|
summary_metrics = nil
|
444
443
|
|
445
444
|
if name.start_with?(MIDDLEWARE_PREFIX)
|
@@ -453,6 +452,10 @@ module NewRelic
|
|
453
452
|
unscoped_metrics: summary_metrics
|
454
453
|
)
|
455
454
|
|
455
|
+
# #code_information will glean the code info out of the options hash
|
456
|
+
# if it exists or noop otherwise
|
457
|
+
segment.code_information = options
|
458
|
+
|
456
459
|
segment
|
457
460
|
end
|
458
461
|
|
@@ -462,18 +465,19 @@ module NewRelic
|
|
462
465
|
merge_request_parameters(options[:filtered_params])
|
463
466
|
end
|
464
467
|
|
465
|
-
@ignore_apdex = options[:ignore_apdex] if options.key?
|
466
|
-
@ignore_enduser = options[:ignore_enduser] if options.key?
|
468
|
+
@ignore_apdex = options[:ignore_apdex] if options.key?(:ignore_apdex)
|
469
|
+
@ignore_enduser = options[:ignore_enduser] if options.key?(:ignore_enduser)
|
467
470
|
|
468
471
|
nest_initial_segment if segments.length == 1
|
469
|
-
nested_name = self.class.nested_transaction_name
|
470
|
-
|
472
|
+
nested_name = self.class.nested_transaction_name(options[:transaction_name])
|
473
|
+
|
474
|
+
segment = create_segment(nested_name, options)
|
471
475
|
set_default_transaction_name(options[:transaction_name], category)
|
472
476
|
segment
|
473
477
|
end
|
474
478
|
|
475
479
|
def nest_initial_segment
|
476
|
-
self.initial_segment.name = self.class.nested_transaction_name
|
480
|
+
self.initial_segment.name = self.class.nested_transaction_name(initial_segment.name)
|
477
481
|
initial_segment.record_scoped_metric = true
|
478
482
|
end
|
479
483
|
|
@@ -563,8 +567,8 @@ module NewRelic
|
|
563
567
|
def assign_segment_dt_attributes
|
564
568
|
dt_payload = distributed_tracer.trace_state_payload || distributed_tracer.distributed_trace_payload
|
565
569
|
parent_attributes = {}
|
566
|
-
DistributedTraceAttributes.copy_parent_attributes
|
567
|
-
parent_attributes.each { |k, v| initial_segment.add_agent_attribute
|
570
|
+
DistributedTraceAttributes.copy_parent_attributes(self, dt_payload, parent_attributes)
|
571
|
+
parent_attributes.each { |k, v| initial_segment.add_agent_attribute(k, v) }
|
568
572
|
end
|
569
573
|
|
570
574
|
def assign_agent_attributes
|
@@ -585,7 +589,7 @@ module NewRelic
|
|
585
589
|
end
|
586
590
|
|
587
591
|
if @request_attributes
|
588
|
-
@request_attributes.assign_agent_attributes
|
592
|
+
@request_attributes.assign_agent_attributes(self)
|
589
593
|
end
|
590
594
|
|
591
595
|
display_host = Agent.config[:'process_host.display_name']
|
@@ -622,7 +626,7 @@ module NewRelic
|
|
622
626
|
# This method returns transport_duration in seconds. Transport duration
|
623
627
|
# is stored in milliseconds on the payload, but it's needed in seconds
|
624
628
|
# for metrics and intrinsics.
|
625
|
-
def calculate_transport_duration
|
629
|
+
def calculate_transport_duration(distributed_trace_payload)
|
626
630
|
return unless distributed_trace_payload
|
627
631
|
|
628
632
|
duration = start_time - (distributed_trace_payload.timestamp / 1000.0)
|
@@ -665,7 +669,7 @@ module NewRelic
|
|
665
669
|
end
|
666
670
|
|
667
671
|
def is_synthetics_request?
|
668
|
-
synthetics_payload
|
672
|
+
!synthetics_payload.nil? && !raw_synthetics_header.nil?
|
669
673
|
end
|
670
674
|
|
671
675
|
def synthetics_version
|
@@ -730,7 +734,7 @@ module NewRelic
|
|
730
734
|
options[:metric] = best_name
|
731
735
|
options[:attributes] = @attributes
|
732
736
|
|
733
|
-
span_id = options.delete
|
737
|
+
span_id = options.delete(:span_id)
|
734
738
|
error_recorded = !!agent.error_collector.notice_error(exception, options, span_id) || error_recorded
|
735
739
|
end
|
736
740
|
payload[:error] = error_recorded if payload
|
@@ -745,18 +749,18 @@ module NewRelic
|
|
745
749
|
end
|
746
750
|
|
747
751
|
if @exceptions[error]
|
748
|
-
@exceptions[error].merge!
|
752
|
+
@exceptions[error].merge!(options)
|
749
753
|
else
|
750
754
|
@exceptions[error] = options
|
751
755
|
end
|
752
756
|
end
|
753
757
|
|
754
758
|
def record_transaction_event
|
755
|
-
agent.transaction_event_recorder.record
|
759
|
+
agent.transaction_event_recorder.record(payload)
|
756
760
|
end
|
757
761
|
|
758
762
|
def record_log_events
|
759
|
-
agent.log_event_aggregator.record_batch
|
763
|
+
agent.log_event_aggregator.record_batch(self, @logs.to_a)
|
760
764
|
end
|
761
765
|
|
762
766
|
def queue_time
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
# This module was introduced and largely extracted from the transaction event aggregator
|
6
6
|
# when the synthetics container was extracted from it. Its purpose is to create the data
|
@@ -34,7 +34,7 @@ module NewRelic
|
|
34
34
|
PRIORITY_KEY = "priority".freeze
|
35
35
|
SPAN_ID_KEY = "spanId".freeze
|
36
36
|
|
37
|
-
def create
|
37
|
+
def create(noticed_error, payload, span_id)
|
38
38
|
[
|
39
39
|
intrinsic_attributes_for(noticed_error, payload, span_id),
|
40
40
|
noticed_error.custom_attributes,
|
@@ -42,7 +42,7 @@ module NewRelic
|
|
42
42
|
]
|
43
43
|
end
|
44
44
|
|
45
|
-
def intrinsic_attributes_for
|
45
|
+
def intrinsic_attributes_for(noticed_error, payload, span_id)
|
46
46
|
attrs = {
|
47
47
|
TYPE_KEY => SAMPLE_TYPE,
|
48
48
|
ERROR_CLASS_KEY => noticed_error.exception_class_name,
|
@@ -59,10 +59,10 @@ module NewRelic
|
|
59
59
|
attrs[DURATION_KEY] = payload[:duration]
|
60
60
|
attrs[SAMPLED_KEY] = payload[:sampled] if payload.key?(:sampled)
|
61
61
|
attrs[PRIORITY_KEY] = payload[:priority]
|
62
|
-
append_synthetics
|
63
|
-
append_cat
|
64
|
-
DistributedTraceAttributes.copy_to_hash
|
65
|
-
PayloadMetricMapping.append_mapped_metrics
|
62
|
+
append_synthetics(payload, attrs)
|
63
|
+
append_cat(payload, attrs)
|
64
|
+
DistributedTraceAttributes.copy_to_hash(payload, attrs)
|
65
|
+
PayloadMetricMapping.append_mapped_metrics(payload[:metrics], attrs)
|
66
66
|
else
|
67
67
|
attrs[PRIORITY_KEY] = rand.round(NewRelic::PRIORITY_PRECISION)
|
68
68
|
end
|
@@ -70,13 +70,13 @@ module NewRelic
|
|
70
70
|
attrs
|
71
71
|
end
|
72
72
|
|
73
|
-
def append_synthetics
|
73
|
+
def append_synthetics(payload, sample)
|
74
74
|
sample[SYNTHETICS_RESOURCE_ID_KEY] = payload[:synthetics_resource_id] if payload[:synthetics_resource_id]
|
75
75
|
sample[SYNTHETICS_JOB_ID_KEY] = payload[:synthetics_job_id] if payload[:synthetics_job_id]
|
76
76
|
sample[SYNTHETICS_MONITOR_ID_KEY] = payload[:synthetics_monitor_id] if payload[:synthetics_monitor_id]
|
77
77
|
end
|
78
78
|
|
79
|
-
def append_cat
|
79
|
+
def append_cat(payload, sample)
|
80
80
|
sample[GUID_KEY] = payload[:guid] if payload[:guid]
|
81
81
|
sample[REFERRING_TRANSACTION_GUID_KEY] = payload[:referring_transaction_guid] if payload[:referring_transaction_guid]
|
82
82
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- ruby -*-
|
2
|
-
# encoding: utf-8
|
3
2
|
# This file is distributed under New Relic's license terms.
|
4
3
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
|
+
# frozen_string_literal: true
|
5
5
|
|
6
6
|
require 'newrelic_rpm' unless defined?(NewRelic)
|
7
7
|
require 'new_relic/agent' unless defined?(NewRelic::Agent)
|
@@ -16,7 +16,7 @@ module NewRelic
|
|
16
16
|
enabled_key :'transaction_events.enabled'
|
17
17
|
buffer_class PrioritySampledBuffer
|
18
18
|
|
19
|
-
def record
|
19
|
+
def record(priority: nil, event: nil, &blk)
|
20
20
|
unless event || priority && blk
|
21
21
|
raise ArgumentError, "Expected priority and block, or event"
|
22
22
|
end
|
@@ -24,16 +24,16 @@ module NewRelic
|
|
24
24
|
return unless enabled?
|
25
25
|
|
26
26
|
@lock.synchronize do
|
27
|
-
@buffer.append
|
27
|
+
@buffer.append(priority: priority, event: event, &blk)
|
28
28
|
notify_if_full
|
29
29
|
end
|
30
30
|
end
|
31
31
|
|
32
32
|
private
|
33
33
|
|
34
|
-
def after_harvest
|
34
|
+
def after_harvest(metadata)
|
35
35
|
return unless enabled?
|
36
|
-
record_sampling_rate
|
36
|
+
record_sampling_rate(metadata)
|
37
37
|
end
|
38
38
|
|
39
39
|
def record_sampling_rate(metadata) # THREAD_LOCAL_ACCESS
|
@@ -1,4 +1,3 @@
|
|
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.
|
4
3
|
# frozen_string_literal: true
|
@@ -54,7 +53,7 @@ module NewRelic
|
|
54
53
|
|
55
54
|
PayloadMetricMapping.append_mapped_metrics(payload[:metrics], intrinsics)
|
56
55
|
append_optional_attributes(intrinsics, payload)
|
57
|
-
DistributedTraceAttributes.copy_to_hash
|
56
|
+
DistributedTraceAttributes.copy_to_hash(payload, intrinsics)
|
58
57
|
|
59
58
|
attributes = payload[:attributes]
|
60
59
|
|
@@ -87,7 +86,7 @@ module NewRelic
|
|
87
86
|
end
|
88
87
|
end
|
89
88
|
|
90
|
-
def custom_attributes
|
89
|
+
def custom_attributes(attributes)
|
91
90
|
if attributes
|
92
91
|
result = attributes.custom_attributes_for(AttributeFilter::DST_TRANSACTION_EVENTS)
|
93
92
|
result.freeze
|
@@ -96,7 +95,7 @@ module NewRelic
|
|
96
95
|
end
|
97
96
|
end
|
98
97
|
|
99
|
-
def agent_attributes
|
98
|
+
def agent_attributes(attributes)
|
100
99
|
if attributes
|
101
100
|
result = attributes.agent_attributes_for(AttributeFilter::DST_TRANSACTION_EVENTS)
|
102
101
|
result.freeze
|
@@ -1,42 +1,43 @@
|
|
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
|
require 'new_relic/agent/transaction_event_aggregator'
|
5
6
|
require 'new_relic/agent/synthetics_event_aggregator'
|
6
7
|
require 'new_relic/agent/transaction_event_primitive'
|
7
8
|
|
8
9
|
module NewRelic
|
9
10
|
module Agent
|
10
|
-
# This is
|
11
|
+
# This is responsible for recording transaction events and managing
|
11
12
|
# the relationship between events generated from synthetics requests
|
12
13
|
# vs normal requests.
|
13
14
|
class TransactionEventRecorder
|
14
15
|
attr_reader :transaction_event_aggregator
|
15
16
|
attr_reader :synthetics_event_aggregator
|
16
17
|
|
17
|
-
def initialize
|
18
|
-
@transaction_event_aggregator = NewRelic::Agent::TransactionEventAggregator.new
|
19
|
-
@synthetics_event_aggregator = NewRelic::Agent::SyntheticsEventAggregator.new
|
18
|
+
def initialize(events)
|
19
|
+
@transaction_event_aggregator = NewRelic::Agent::TransactionEventAggregator.new(events)
|
20
|
+
@synthetics_event_aggregator = NewRelic::Agent::SyntheticsEventAggregator.new(events)
|
20
21
|
end
|
21
22
|
|
22
|
-
def record
|
23
|
+
def record(payload)
|
23
24
|
return unless NewRelic::Agent.config[:'transaction_events.enabled']
|
24
25
|
|
25
|
-
if synthetics_event?
|
26
|
-
event = create_event
|
27
|
-
result = synthetics_event_aggregator.record
|
28
|
-
transaction_event_aggregator.record
|
26
|
+
if synthetics_event?(payload)
|
27
|
+
event = create_event(payload)
|
28
|
+
result = synthetics_event_aggregator.record(event)
|
29
|
+
transaction_event_aggregator.record(event: event) if result.nil?
|
29
30
|
else
|
30
31
|
transaction_event_aggregator.record(priority: payload[:priority]) { create_event(payload) }
|
31
32
|
end
|
32
33
|
end
|
33
34
|
|
34
|
-
def create_event
|
35
|
-
TransactionEventPrimitive.create
|
35
|
+
def create_event(payload)
|
36
|
+
TransactionEventPrimitive.create(payload)
|
36
37
|
end
|
37
38
|
|
38
|
-
def synthetics_event?
|
39
|
-
payload.key?
|
39
|
+
def synthetics_event?(payload)
|
40
|
+
payload.key?(:synthetics_resource_id)
|
40
41
|
end
|
41
42
|
|
42
43
|
def drop_buffered_data
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
# This class represents a set of metrics that were recorded during a single
|
6
6
|
# transaction. Since the name of the transaction is not known until its end, we
|
@@ -10,7 +10,7 @@
|
|
10
10
|
module NewRelic
|
11
11
|
module Agent
|
12
12
|
class TransactionMetrics
|
13
|
-
DEFAULT_PROC =
|
13
|
+
DEFAULT_PROC = proc { |hash, name| hash[name] = NewRelic::Agent::Stats.new }
|
14
14
|
|
15
15
|
def initialize
|
16
16
|
@lock = Mutex.new
|
@@ -43,11 +43,11 @@ module NewRelic
|
|
43
43
|
end
|
44
44
|
|
45
45
|
def each_unscoped
|
46
|
-
@lock.synchronize { @unscoped.each { |name, stats| yield
|
46
|
+
@lock.synchronize { @unscoped.each { |name, stats| yield(name, stats) } }
|
47
47
|
end
|
48
48
|
|
49
49
|
def each_scoped
|
50
|
-
@lock.synchronize { @scoped.each { |name, stats| yield
|
50
|
+
@lock.synchronize { @scoped.each { |name, stats| yield(name, stats) } }
|
51
51
|
end
|
52
52
|
|
53
53
|
def _record_metrics(names, value, aux, target, &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/transaction/slowest_sample_buffer'
|
6
6
|
require 'new_relic/agent/transaction/synthetics_sample_buffer'
|
@@ -32,9 +32,9 @@ module NewRelic
|
|
32
32
|
Agent.config.register_callback(:'transaction_tracer.enabled') do |enabled|
|
33
33
|
if enabled
|
34
34
|
threshold = Agent.config[:'transaction_tracer.transaction_threshold']
|
35
|
-
::NewRelic::Agent.logger.debug
|
35
|
+
::NewRelic::Agent.logger.debug("Transaction tracing threshold is #{threshold} seconds.")
|
36
36
|
else
|
37
|
-
::NewRelic::Agent.logger.debug
|
37
|
+
::NewRelic::Agent.logger.debug("Transaction traces will not be sent to the New Relic service.")
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
@@ -67,7 +67,7 @@ module NewRelic
|
|
67
67
|
|
68
68
|
# Gather transaction traces that we'd like to transmit to the server.
|
69
69
|
def harvest!
|
70
|
-
return
|
70
|
+
return NewRelic::EMPTY_ARRAY unless enabled?
|
71
71
|
|
72
72
|
samples = @samples_lock.synchronize do
|
73
73
|
@last_sample = nil
|
@@ -113,7 +113,7 @@ module NewRelic
|
|
113
113
|
result.uniq!
|
114
114
|
result.map! do |sample|
|
115
115
|
if Transaction === sample
|
116
|
-
Transaction::TraceBuilder.build_trace
|
116
|
+
Transaction::TraceBuilder.build_trace(sample)
|
117
117
|
else
|
118
118
|
sample
|
119
119
|
end
|