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,7 +1,8 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
|
+
require 'fiber'
|
5
6
|
require 'new_relic/agent/transaction'
|
6
7
|
require 'new_relic/agent/transaction/segment'
|
7
8
|
require 'new_relic/agent/transaction/datastore_segment'
|
@@ -86,9 +87,9 @@ module NewRelic
|
|
86
87
|
#
|
87
88
|
# @api public
|
88
89
|
def in_transaction(name: nil,
|
89
|
-
|
90
|
-
|
91
|
-
|
90
|
+
partial_name: nil,
|
91
|
+
category:,
|
92
|
+
options: {})
|
92
93
|
|
93
94
|
finishable = start_transaction_or_segment(
|
94
95
|
name: name,
|
@@ -130,10 +131,10 @@ module NewRelic
|
|
130
131
|
#
|
131
132
|
# @api public
|
132
133
|
def start_transaction_or_segment(name: nil,
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
134
|
+
partial_name: nil,
|
135
|
+
category:,
|
136
|
+
options: {})
|
137
|
+
|
137
138
|
raise ArgumentError, 'missing required argument: name or partial_name' if name.nil? && partial_name.nil?
|
138
139
|
|
139
140
|
if name
|
@@ -150,7 +151,6 @@ module NewRelic
|
|
150
151
|
else
|
151
152
|
Transaction.start_new_transaction(state, category, options)
|
152
153
|
end
|
153
|
-
|
154
154
|
rescue ArgumentError
|
155
155
|
raise
|
156
156
|
rescue => exception
|
@@ -160,10 +160,10 @@ module NewRelic
|
|
160
160
|
# Takes name or partial_name and a category.
|
161
161
|
# Returns a transaction instance or nil
|
162
162
|
def start_transaction(category:,
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
163
|
+
name: nil,
|
164
|
+
partial_name: nil,
|
165
|
+
**options)
|
166
|
+
|
167
167
|
raise ArgumentError, 'missing required argument: name or partial_name' if name.nil? && partial_name.nil?
|
168
168
|
|
169
169
|
return current_transaction if current_transaction
|
@@ -178,8 +178,8 @@ module NewRelic
|
|
178
178
|
end
|
179
179
|
|
180
180
|
Transaction.start_new_transaction(state,
|
181
|
-
|
182
|
-
|
181
|
+
category,
|
182
|
+
options)
|
183
183
|
rescue ArgumentError
|
184
184
|
raise
|
185
185
|
rescue => exception
|
@@ -188,11 +188,13 @@ module NewRelic
|
|
188
188
|
|
189
189
|
def create_distributed_trace_payload
|
190
190
|
return unless txn = current_transaction
|
191
|
+
|
191
192
|
txn.distributed_tracer.create_distributed_trace_payload
|
192
193
|
end
|
193
194
|
|
194
195
|
def accept_distributed_trace_payload(payload)
|
195
196
|
return unless txn = current_transaction
|
197
|
+
|
196
198
|
txn.distributed_tracer.accept_distributed_trace_payload(payload)
|
197
199
|
end
|
198
200
|
|
@@ -203,6 +205,7 @@ module NewRelic
|
|
203
205
|
# @api public
|
204
206
|
def current_segment
|
205
207
|
return unless txn = current_transaction
|
208
|
+
|
206
209
|
txn.current_segment
|
207
210
|
end
|
208
211
|
|
@@ -231,13 +234,12 @@ module NewRelic
|
|
231
234
|
#
|
232
235
|
# @api public
|
233
236
|
def start_segment(name:,
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
segment = Transaction::Segment.new name, unscoped_metrics, start_time
|
239
|
-
start_and_add_segment segment, parent
|
237
|
+
unscoped_metrics: nil,
|
238
|
+
start_time: nil,
|
239
|
+
parent: nil)
|
240
240
|
|
241
|
+
segment = Transaction::Segment.new(name, unscoped_metrics, start_time)
|
242
|
+
start_and_add_segment(segment, parent)
|
241
243
|
rescue ArgumentError
|
242
244
|
raise
|
243
245
|
rescue => exception
|
@@ -283,20 +285,19 @@ module NewRelic
|
|
283
285
|
#
|
284
286
|
# @api public
|
285
287
|
def start_datastore_segment(product: nil,
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
288
|
+
operation: nil,
|
289
|
+
collection: nil,
|
290
|
+
host: nil,
|
291
|
+
port_path_or_id: nil,
|
292
|
+
database_name: nil,
|
293
|
+
start_time: nil,
|
294
|
+
parent: nil)
|
293
295
|
|
294
296
|
product ||= UNKNOWN
|
295
297
|
operation ||= OTHER
|
296
298
|
|
297
|
-
segment = Transaction::DatastoreSegment.new
|
298
|
-
start_and_add_segment
|
299
|
-
|
299
|
+
segment = Transaction::DatastoreSegment.new(product, operation, collection, host, port_path_or_id, database_name)
|
300
|
+
start_and_add_segment(segment, parent)
|
300
301
|
rescue ArgumentError
|
301
302
|
raise
|
302
303
|
rescue => exception
|
@@ -331,14 +332,13 @@ module NewRelic
|
|
331
332
|
#
|
332
333
|
# @api public
|
333
334
|
def start_external_request_segment(library:,
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
segment = Transaction::ExternalRequestSegment.new library, uri, procedure, start_time
|
340
|
-
start_and_add_segment segment, parent
|
335
|
+
uri:,
|
336
|
+
procedure:,
|
337
|
+
start_time: nil,
|
338
|
+
parent: nil)
|
341
339
|
|
340
|
+
segment = Transaction::ExternalRequestSegment.new(library, uri, procedure, start_time)
|
341
|
+
start_and_add_segment(segment, parent)
|
342
342
|
rescue ArgumentError
|
343
343
|
raise
|
344
344
|
rescue => exception
|
@@ -347,28 +347,29 @@ module NewRelic
|
|
347
347
|
|
348
348
|
# Will potentially capture and notice an error at the
|
349
349
|
# segment that was executing when error occurred.
|
350
|
-
# if passed +segment+ is something that doesn't
|
350
|
+
# if passed +segment+ is something that doesn't
|
351
351
|
# respond to +notice_segment_error+ then this method
|
352
352
|
# is effectively just a yield to the given &block
|
353
|
-
def capture_segment_error
|
353
|
+
def capture_segment_error(segment)
|
354
354
|
return unless block_given?
|
355
|
+
|
355
356
|
yield
|
356
357
|
rescue => exception
|
357
358
|
if segment && segment.is_a?(Transaction::AbstractSegment)
|
358
|
-
segment.notice_error
|
359
|
+
segment.notice_error(exception)
|
359
360
|
end
|
360
361
|
raise
|
361
362
|
end
|
362
363
|
|
363
364
|
# For New Relic internal use only.
|
364
365
|
def start_message_broker_segment(action:,
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
366
|
+
library:,
|
367
|
+
destination_type:,
|
368
|
+
destination_name:,
|
369
|
+
headers: nil,
|
370
|
+
parameters: nil,
|
371
|
+
start_time: nil,
|
372
|
+
parent: nil)
|
372
373
|
|
373
374
|
segment = Transaction::MessageBrokerSegment.new(
|
374
375
|
action: action,
|
@@ -379,8 +380,7 @@ module NewRelic
|
|
379
380
|
parameters: parameters,
|
380
381
|
start_time: start_time
|
381
382
|
)
|
382
|
-
start_and_add_segment
|
383
|
-
|
383
|
+
start_and_add_segment(segment, parent)
|
384
384
|
rescue ArgumentError
|
385
385
|
raise
|
386
386
|
rescue => exception
|
@@ -410,13 +410,40 @@ module NewRelic
|
|
410
410
|
|
411
411
|
alias_method :tl_clear, :clear_state
|
412
412
|
|
413
|
+
def current_segment_key
|
414
|
+
::Fiber.current.object_id
|
415
|
+
end
|
416
|
+
|
417
|
+
def thread_tracing_enabled?
|
418
|
+
NewRelic::Agent.config[:'instrumentation.thread.tracing']
|
419
|
+
end
|
420
|
+
|
421
|
+
def thread_block_with_current_transaction(*args, segment_name:, parent: nil, &block)
|
422
|
+
parent ||= current_segment
|
423
|
+
current_txn = ::Thread.current[:newrelic_tracer_state]&.current_transaction if ::Thread.current[:newrelic_tracer_state]&.is_execution_traced?
|
424
|
+
proc do
|
425
|
+
begin
|
426
|
+
if current_txn
|
427
|
+
NewRelic::Agent::Tracer.state.current_transaction = current_txn
|
428
|
+
segment_name += "/Thread#{::Thread.current.object_id}/Fiber#{::Fiber.current.object_id}" if NewRelic::Agent.config[:'thread_ids_enabled']
|
429
|
+
segment = NewRelic::Agent::Tracer.start_segment(name: segment_name, parent: parent)
|
430
|
+
end
|
431
|
+
NewRelic::Agent::Tracer.capture_segment_error(segment) do
|
432
|
+
yield(*args)
|
433
|
+
end
|
434
|
+
ensure
|
435
|
+
::NewRelic::Agent::Transaction::Segment.finish(segment)
|
436
|
+
end
|
437
|
+
end
|
438
|
+
end
|
439
|
+
|
413
440
|
private
|
414
441
|
|
415
|
-
def start_and_add_segment
|
442
|
+
def start_and_add_segment(segment, parent = nil)
|
416
443
|
tracer_state = state
|
417
444
|
if (txn = tracer_state.current_transaction) &&
|
418
|
-
|
419
|
-
txn.add_segment
|
445
|
+
tracer_state.tracing_enabled?
|
446
|
+
txn.add_segment(segment, parent)
|
420
447
|
else
|
421
448
|
segment.record_metrics = false
|
422
449
|
end
|
@@ -433,7 +460,6 @@ module NewRelic
|
|
433
460
|
# This is THE location to store thread local information during a transaction
|
434
461
|
# Need a new piece of data? Add a method here, NOT a new thread local variable.
|
435
462
|
class State
|
436
|
-
|
437
463
|
def initialize
|
438
464
|
@untraced = []
|
439
465
|
@current_transaction = nil
|
@@ -441,7 +467,7 @@ module NewRelic
|
|
441
467
|
end
|
442
468
|
|
443
469
|
# This starts the timer for the transaction.
|
444
|
-
def reset(transaction=nil)
|
470
|
+
def reset(transaction = nil)
|
445
471
|
# We purposefully don't reset @untraced or @record_sql
|
446
472
|
# since those are managed by NewRelic::Agent.disable_* calls explicitly
|
447
473
|
# and (more importantly) outside the scope of a transaction
|
@@ -451,7 +477,7 @@ module NewRelic
|
|
451
477
|
end
|
452
478
|
|
453
479
|
# Current transaction stack
|
454
|
-
|
480
|
+
attr_accessor :current_transaction
|
455
481
|
|
456
482
|
# Execution tracing on current thread
|
457
483
|
attr_accessor :untraced
|
@@ -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/range_extensions'
|
6
6
|
require 'new_relic/agent/guid_generator'
|
@@ -9,9 +9,9 @@ module NewRelic
|
|
9
9
|
module Agent
|
10
10
|
class Transaction
|
11
11
|
class AbstractSegment
|
12
|
-
# This class is the base class for all segments. It is
|
12
|
+
# This class is the base class for all segments. It is responsible for
|
13
13
|
# timing, naming, and defining lifecycle callbacks. One of the more
|
14
|
-
# complex
|
14
|
+
# complex responsibilities of this class is computing exclusive duration.
|
15
15
|
# One of the reasons for this complexity is that exclusive time will be
|
16
16
|
# computed using time ranges or by recording an aggregate value for
|
17
17
|
# a segments children time. The reason for this is that computing
|
@@ -20,13 +20,14 @@ module NewRelic
|
|
20
20
|
# after its parent. We will use the optimized exclusive duration
|
21
21
|
# calculation in all other cases.
|
22
22
|
#
|
23
|
-
attr_reader :start_time, :end_time, :duration, :exclusive_duration, :guid
|
23
|
+
attr_reader :start_time, :end_time, :duration, :exclusive_duration, :guid, :starting_segment_key
|
24
24
|
attr_accessor :name, :parent, :children_time, :transaction, :transaction_name
|
25
25
|
attr_writer :record_metrics, :record_scoped_metric, :record_on_finish
|
26
26
|
attr_reader :noticed_error
|
27
27
|
|
28
|
-
def initialize
|
28
|
+
def initialize(name = nil, start_time = nil)
|
29
29
|
@name = name
|
30
|
+
@starting_segment_key = NewRelic::Agent::Tracer.current_segment_key
|
30
31
|
@transaction_name = nil
|
31
32
|
@transaction = nil
|
32
33
|
@guid = NewRelic::Agent::GuidGenerator.generate_guid
|
@@ -36,8 +37,8 @@ module NewRelic
|
|
36
37
|
@end_time = nil
|
37
38
|
@duration = 0.0
|
38
39
|
@exclusive_duration = 0.0
|
40
|
+
@children_timings = []
|
39
41
|
@children_time = 0.0
|
40
|
-
@children_time_ranges = nil
|
41
42
|
@active_children = 0
|
42
43
|
@range_recorded = false
|
43
44
|
@concurrent_children = false
|
@@ -45,22 +46,29 @@ module NewRelic
|
|
45
46
|
@record_scoped_metric = true
|
46
47
|
@record_on_finish = false
|
47
48
|
@noticed_error = nil
|
49
|
+
@code_filepath = nil
|
50
|
+
@code_function = nil
|
51
|
+
@code_lineno = nil
|
52
|
+
@code_namespace = nil
|
48
53
|
end
|
49
54
|
|
50
55
|
def start
|
51
56
|
@start_time ||= Process.clock_gettime(Process::CLOCK_REALTIME)
|
52
57
|
return unless transaction
|
53
|
-
|
58
|
+
|
59
|
+
parent.child_start(self) if parent
|
54
60
|
end
|
55
61
|
|
56
62
|
def finish
|
57
63
|
@end_time = Process.clock_gettime(Process::CLOCK_REALTIME)
|
58
64
|
@duration = end_time - start_time
|
65
|
+
|
59
66
|
return unless transaction
|
67
|
+
|
60
68
|
run_complete_callbacks
|
61
69
|
finalize if record_on_finish?
|
62
70
|
rescue => e
|
63
|
-
NewRelic::Agent.logger.error
|
71
|
+
NewRelic::Agent.logger.error("Exception finishing segment: #{name}", e)
|
64
72
|
end
|
65
73
|
|
66
74
|
def finished?
|
@@ -94,21 +102,71 @@ module NewRelic
|
|
94
102
|
end
|
95
103
|
|
96
104
|
def time_range
|
97
|
-
@start_time.to_f
|
105
|
+
@start_time.to_f..@end_time.to_f
|
106
|
+
end
|
107
|
+
|
108
|
+
def timings_overlap?(timing1, timing2)
|
109
|
+
(timing1.first >= timing2.first && timing1.first <= timing2.last) ||
|
110
|
+
(timing2.first >= timing1.first && timing2.first <= timing1.last)
|
98
111
|
end
|
99
112
|
|
113
|
+
def merge_timings(timing1, timing2)
|
114
|
+
[([timing1.first, timing2.first].min),
|
115
|
+
([timing1.last, timing2.last].max)]
|
116
|
+
end
|
117
|
+
|
118
|
+
# @children_timings is an array of array, with each inner array
|
119
|
+
# holding exactly 2 values, a child segment's start time and finish
|
120
|
+
# time (in that order). When it's time to record, these timings are
|
121
|
+
# converted into an array of range objects (using the same start and
|
122
|
+
# end values as the original array). Any two range objects that
|
123
|
+
# intersect and merged into a larger range. This checking for a
|
124
|
+
# intersections and merging of ranges is expensive, so the operation
|
125
|
+
# is only done at recording time.
|
100
126
|
def children_time_ranges
|
101
|
-
@children_time_ranges ||=
|
127
|
+
@children_time_ranges ||= begin
|
128
|
+
overlapped = @children_timings.each_with_object([]) do |timing, timings|
|
129
|
+
i = timings.index { |t| timings_overlap?(t, timing) }
|
130
|
+
if i
|
131
|
+
timings[i] = merge_timings(timing, timings[i])
|
132
|
+
else
|
133
|
+
timings << timing
|
134
|
+
end
|
135
|
+
end
|
136
|
+
overlapped.map { |t| Range.new(t.first, t.last) }
|
137
|
+
end
|
102
138
|
end
|
103
139
|
|
104
140
|
def children_time_ranges?
|
105
|
-
|
141
|
+
!@children_timings.empty?
|
106
142
|
end
|
107
143
|
|
108
144
|
def concurrent_children?
|
109
145
|
@concurrent_children
|
110
146
|
end
|
111
147
|
|
148
|
+
def code_information=(info = {})
|
149
|
+
return unless info[:filepath]
|
150
|
+
|
151
|
+
@code_filepath = info[:filepath]
|
152
|
+
@code_function = info[:function]
|
153
|
+
@code_lineno = info[:lineno]
|
154
|
+
@code_namespace = info[:namespace]
|
155
|
+
end
|
156
|
+
|
157
|
+
def all_code_information_present?
|
158
|
+
@code_filepath && @code_function && @code_lineno && @code_namespace
|
159
|
+
end
|
160
|
+
|
161
|
+
def code_attributes
|
162
|
+
return ::NewRelic::EMPTY_HASH unless all_code_information_present?
|
163
|
+
|
164
|
+
@code_attributes ||= {'code.filepath' => @code_filepath,
|
165
|
+
'code.function' => @code_function,
|
166
|
+
'code.lineno' => @code_lineno,
|
167
|
+
'code.namespace' => @code_namespace}
|
168
|
+
end
|
169
|
+
|
112
170
|
INSPECT_IGNORE = [:@transaction, :@transaction_state].freeze
|
113
171
|
|
114
172
|
def inspect
|
@@ -122,27 +180,30 @@ module NewRelic
|
|
122
180
|
def transaction_assigned
|
123
181
|
end
|
124
182
|
|
125
|
-
def set_noticed_error
|
183
|
+
def set_noticed_error(noticed_error)
|
126
184
|
if @noticed_error
|
127
|
-
NewRelic::Agent.logger.debug \
|
185
|
+
NewRelic::Agent.logger.debug( \
|
128
186
|
"Segment: #{name} overwriting previously noticed " \
|
129
187
|
"error: #{@noticed_error.inspect} with: #{noticed_error.inspect}"
|
188
|
+
)
|
130
189
|
end
|
131
190
|
@noticed_error = noticed_error
|
132
191
|
end
|
133
192
|
|
134
|
-
def notice_error
|
193
|
+
def notice_error(exception, options = {})
|
135
194
|
if Agent.config[:high_security]
|
136
|
-
NewRelic::Agent.logger.debug \
|
195
|
+
NewRelic::Agent.logger.debug( \
|
137
196
|
"Segment: #{name} ignores notice_error for " \
|
138
197
|
"error: #{exception.inspect} because :high_security is enabled"
|
198
|
+
)
|
139
199
|
else
|
140
|
-
NewRelic::Agent.instance.error_collector.notice_segment_error
|
200
|
+
NewRelic::Agent.instance.error_collector.notice_segment_error(self, exception, options)
|
141
201
|
end
|
142
202
|
end
|
143
203
|
|
144
204
|
def noticed_error_attributes
|
145
205
|
return unless @noticed_error
|
206
|
+
|
146
207
|
@noticed_error.attributes_from_notice_error
|
147
208
|
end
|
148
209
|
|
@@ -154,16 +215,16 @@ module NewRelic
|
|
154
215
|
@range_recorded
|
155
216
|
end
|
156
217
|
|
157
|
-
def child_start
|
218
|
+
def child_start(segment)
|
158
219
|
@active_children += 1
|
159
|
-
@concurrent_children
|
220
|
+
@concurrent_children ||= @active_children > 1
|
160
221
|
|
161
222
|
transaction.async = true if @concurrent_children
|
162
223
|
end
|
163
224
|
|
164
|
-
def child_complete
|
225
|
+
def child_complete(segment)
|
165
226
|
@active_children -= 1
|
166
|
-
record_child_time
|
227
|
+
record_child_time(segment)
|
167
228
|
|
168
229
|
if finished?
|
169
230
|
transaction.async = true
|
@@ -177,36 +238,39 @@ module NewRelic
|
|
177
238
|
# an ancestor whose end time is greater than or equal to the descendant's
|
178
239
|
# we can stop the propagation. We pass along the direct child so we can
|
179
240
|
# make any corrections needed for exclusive time calculation.
|
241
|
+
def descendant_complete(child, descendant)
|
242
|
+
add_child_timing(descendant)
|
180
243
|
|
181
|
-
def descendant_complete child, descendant
|
182
|
-
RangeExtensions.merge_or_append descendant.time_range,
|
183
|
-
children_time_ranges
|
184
244
|
# If this child's time was previously added to this segment's
|
185
245
|
# aggregate children time, we need to re-record it using a time range
|
186
246
|
# for proper exclusive time calculation
|
187
247
|
unless child.range_recorded?
|
188
248
|
self.children_time -= child.duration
|
189
|
-
record_child_time_as_range
|
249
|
+
record_child_time_as_range(child)
|
190
250
|
end
|
191
251
|
|
192
252
|
if parent && finished? && descendant.end_time >= end_time
|
193
|
-
parent.descendant_complete
|
253
|
+
parent.descendant_complete(self, descendant)
|
194
254
|
end
|
195
255
|
end
|
196
256
|
|
197
257
|
private
|
198
258
|
|
259
|
+
def add_child_timing(segment)
|
260
|
+
@children_timings << [segment.start_time, segment.end_time]
|
261
|
+
end
|
262
|
+
|
199
263
|
def force_finish
|
200
264
|
finish
|
201
|
-
NewRelic::Agent.logger.warn
|
265
|
+
NewRelic::Agent.logger.warn("Segment: #{name} was unfinished at " \
|
202
266
|
"the end of transaction. Timing information for this segment's" \
|
203
|
-
"parent #{parent.name} in #{transaction.best_name} may be inaccurate."
|
267
|
+
"parent #{parent.name} in #{transaction.best_name} may be inaccurate.")
|
204
268
|
end
|
205
269
|
|
206
270
|
def run_complete_callbacks
|
207
271
|
segment_complete
|
208
|
-
parent.child_complete
|
209
|
-
transaction.segment_complete
|
272
|
+
parent.child_complete(self) if parent
|
273
|
+
transaction.segment_complete(self)
|
210
274
|
end
|
211
275
|
|
212
276
|
def record_metrics
|
@@ -217,27 +281,26 @@ module NewRelic
|
|
217
281
|
def segment_complete
|
218
282
|
end
|
219
283
|
|
220
|
-
def record_child_time
|
284
|
+
def record_child_time(child)
|
221
285
|
if concurrent_children? || finished? && end_time < child.end_time
|
222
|
-
record_child_time_as_range
|
286
|
+
record_child_time_as_range(child)
|
223
287
|
else
|
224
|
-
record_child_time_as_number
|
288
|
+
record_child_time_as_number(child)
|
225
289
|
end
|
226
290
|
end
|
227
291
|
|
228
|
-
def record_child_time_as_range
|
229
|
-
|
230
|
-
children_time_ranges
|
292
|
+
def record_child_time_as_range(child)
|
293
|
+
add_child_timing(child)
|
231
294
|
child.range_recorded = true
|
232
295
|
end
|
233
296
|
|
234
|
-
def record_child_time_as_number
|
297
|
+
def record_child_time_as_number(child)
|
235
298
|
self.children_time += child.duration
|
236
299
|
end
|
237
300
|
|
238
301
|
def record_exclusive_duration
|
239
302
|
overlapping_duration = if children_time_ranges?
|
240
|
-
RangeExtensions.compute_overlap
|
303
|
+
RangeExtensions.compute_overlap(time_range, children_time_ranges)
|
241
304
|
else
|
242
305
|
0.0
|
243
306
|
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/transaction/segment'
|
6
6
|
require 'new_relic/agent/datastores/metric_helper'
|
@@ -11,33 +11,31 @@ module NewRelic
|
|
11
11
|
module Agent
|
12
12
|
class Transaction
|
13
13
|
class DatastoreSegment < Segment
|
14
|
-
|
15
14
|
UNKNOWN = 'unknown'.freeze
|
16
15
|
|
17
16
|
attr_reader :product, :operation, :collection, :sql_statement, :nosql_statement, :host, :port_path_or_id
|
18
17
|
attr_accessor :database_name, :record_sql
|
19
18
|
|
20
|
-
|
21
|
-
def initialize product, operation, collection = nil, host = nil, port_path_or_id = nil, database_name = nil, start_time = nil
|
19
|
+
def initialize(product, operation, collection = nil, host = nil, port_path_or_id = nil, database_name = nil, start_time = nil)
|
22
20
|
@product = product
|
23
21
|
@operation = operation
|
24
22
|
@collection = collection
|
25
23
|
@sql_statement = nil
|
26
24
|
@nosql_statement = nil
|
27
25
|
@record_sql = true
|
28
|
-
set_instance_info
|
26
|
+
set_instance_info(host, port_path_or_id)
|
29
27
|
@database_name = database_name ? database_name.to_s : nil
|
30
|
-
super
|
28
|
+
super(Datastores::MetricHelper.scoped_metric_for(product, operation, collection),
|
31
29
|
nil,
|
32
|
-
start_time
|
30
|
+
start_time)
|
33
31
|
end
|
34
32
|
|
35
|
-
def set_instance_info
|
33
|
+
def set_instance_info(host = nil, port_path_or_id = nil)
|
36
34
|
port_path_or_id = port_path_or_id.to_s if port_path_or_id
|
37
35
|
host_present = host && !host.empty?
|
38
36
|
ppi_present = port_path_or_id && !port_path_or_id.empty?
|
39
37
|
|
40
|
-
host = NewRelic::Agent::Hostname.get_external
|
38
|
+
host = NewRelic::Agent::Hostname.get_external(host) if host_present
|
41
39
|
|
42
40
|
case
|
43
41
|
when host_present && ppi_present
|
@@ -57,15 +55,16 @@ module NewRelic
|
|
57
55
|
end
|
58
56
|
end
|
59
57
|
|
60
|
-
def notice_sql
|
61
|
-
_notice_sql
|
58
|
+
def notice_sql(sql)
|
59
|
+
_notice_sql(sql)
|
62
60
|
nil
|
63
61
|
end
|
64
62
|
|
65
63
|
# @api private
|
66
|
-
def _notice_sql
|
64
|
+
def _notice_sql(sql, config = nil, explainer = nil, binds = nil, name = nil)
|
67
65
|
return unless record_sql?
|
68
|
-
|
66
|
+
|
67
|
+
@sql_statement = Database::Statement.new(sql, config, explainer, binds, name, host, port_path_or_id, database_name)
|
69
68
|
end
|
70
69
|
|
71
70
|
# Method for simplifying attaching non-SQL data statements to a
|
@@ -85,8 +84,9 @@ module NewRelic
|
|
85
84
|
# please ensure all data passed to this method is safe to transmit to
|
86
85
|
# New Relic.
|
87
86
|
|
88
|
-
def notice_nosql_statement
|
87
|
+
def notice_nosql_statement(nosql_statement)
|
89
88
|
return unless record_sql?
|
89
|
+
|
90
90
|
@nosql_statement = Database.truncate_query(nosql_statement)
|
91
91
|
nil
|
92
92
|
end
|
@@ -120,8 +120,9 @@ module NewRelic
|
|
120
120
|
NEWLINE = "\n".freeze
|
121
121
|
|
122
122
|
def add_backtrace_parameter
|
123
|
-
|
124
|
-
|
123
|
+
return unless duration >= Agent.config[:'transaction_tracer.stack_trace_threshold']
|
124
|
+
|
125
|
+
params[:backtrace] = caller.join(NEWLINE)
|
125
126
|
end
|
126
127
|
|
127
128
|
def notice_sql_statement
|
@@ -140,9 +141,9 @@ module NewRelic
|
|
140
141
|
def record_span_event
|
141
142
|
# don't record a span event if the transaction is ignored
|
142
143
|
return if transaction.ignore?
|
143
|
-
|
144
|
+
|
144
145
|
aggregator = ::NewRelic::Agent.agent.span_event_aggregator
|
145
|
-
priority
|
146
|
+
priority = transaction.priority
|
146
147
|
|
147
148
|
aggregator.record(priority: priority) do
|
148
149
|
SpanEventPrimitive.for_datastore_segment(self)
|