newrelic_rpm 6.10.0.364 → 8.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +13 -1
- data/.rubocop.yml +1946 -0
- data/.rubocop_todo.yml +62 -0
- data/.simplecov +15 -0
- data/.snyk +11 -0
- data/.yardopts +1 -0
- data/Brewfile +12 -0
- data/CHANGELOG.md +3737 -2592
- data/CONTRIBUTING.md +132 -19
- data/DOCKER.md +167 -0
- data/Dockerfile +10 -0
- data/Gemfile +5 -2
- data/Guardfile +9 -8
- data/LICENSE +202 -38
- data/README.md +85 -87
- data/Rakefile +27 -27
- data/THIRD_PARTY_NOTICES.md +28 -0
- data/Thorfile +5 -0
- data/bin/newrelic +3 -2
- data/bin/newrelic_cmd +1 -0
- data/bin/nrdebug +77 -54
- data/config.dot +5 -5
- data/docker-compose.yml +107 -0
- data/init.rb +5 -7
- data/install.rb +3 -3
- data/lefthook.yml +9 -0
- data/lib/new_relic/agent/adaptive_sampler.rb +14 -10
- data/lib/new_relic/agent/agent.rb +97 -919
- 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 +75 -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 +24 -20
- data/lib/new_relic/agent/attribute_filter.rb +67 -48
- data/lib/new_relic/agent/attribute_processing.rb +8 -8
- data/lib/new_relic/agent/attributes.rb +8 -5
- data/lib/new_relic/agent/audit_logger.rb +19 -4
- data/lib/new_relic/agent/autostart.rb +21 -20
- data/lib/new_relic/agent/chained_call.rb +2 -2
- data/lib/new_relic/agent/commands/agent_command.rb +4 -4
- data/lib/new_relic/agent/commands/agent_command_router.rb +13 -12
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +10 -8
- data/lib/new_relic/agent/configuration/default_source.rb +1783 -1158
- data/lib/new_relic/agent/configuration/dotted_hash.rb +7 -6
- data/lib/new_relic/agent/configuration/environment_source.rb +12 -10
- data/lib/new_relic/agent/configuration/event_harvest_config.rb +41 -18
- data/lib/new_relic/agent/configuration/high_security_source.rb +10 -9
- data/lib/new_relic/agent/configuration/manager.rb +83 -70
- data/lib/new_relic/agent/configuration/manual_source.rb +2 -2
- data/lib/new_relic/agent/configuration/mask_defaults.rb +4 -4
- data/lib/new_relic/agent/configuration/security_policy_source.rb +91 -78
- data/lib/new_relic/agent/configuration/server_source.rb +22 -20
- data/lib/new_relic/agent/configuration/yaml_source.rb +32 -8
- data/lib/new_relic/agent/configuration.rb +2 -2
- data/lib/new_relic/agent/connect/request_builder.rb +19 -19
- data/lib/new_relic/agent/connect/response_handler.rb +6 -9
- data/lib/new_relic/agent/custom_event_aggregator.rb +15 -15
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +5 -6
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +16 -15
- data/lib/new_relic/agent/database/obfuscator.rb +3 -3
- data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +4 -4
- data/lib/new_relic/agent/database.rb +54 -48
- data/lib/new_relic/agent/database_adapter.rb +35 -0
- data/lib/new_relic/agent/datastores/metric_helper.rb +18 -19
- data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +8 -7
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +7 -11
- data/lib/new_relic/agent/datastores/mongo.rb +7 -12
- data/lib/new_relic/agent/datastores/nosql_obfuscator.rb +41 -0
- data/lib/new_relic/agent/datastores/redis.rb +6 -12
- data/lib/new_relic/agent/datastores.rb +14 -16
- data/lib/new_relic/agent/deprecator.rb +2 -2
- data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +13 -12
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +40 -33
- data/lib/new_relic/agent/distributed_tracing/{distributed_trace_intrinsics.rb → distributed_trace_attributes.rb} +28 -24
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +20 -20
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +53 -56
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +6 -7
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +77 -78
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +40 -39
- data/lib/new_relic/agent/distributed_tracing.rb +33 -101
- data/lib/new_relic/agent/encoding_normalizer.rb +5 -3
- data/lib/new_relic/agent/error_collector.rb +74 -55
- data/lib/new_relic/agent/error_event_aggregator.rb +5 -6
- data/lib/new_relic/agent/error_filter.rb +174 -0
- data/lib/new_relic/agent/error_trace_aggregator.rb +5 -4
- data/lib/new_relic/agent/event_aggregator.rb +23 -22
- data/lib/new_relic/agent/event_buffer.rb +8 -9
- data/lib/new_relic/agent/event_listener.rb +2 -3
- data/lib/new_relic/agent/event_loop.rb +27 -25
- data/lib/new_relic/agent/external.rb +12 -45
- data/lib/new_relic/agent/guid_generator.rb +14 -12
- data/lib/new_relic/agent/harvester.rb +5 -6
- data/lib/new_relic/agent/heap.rb +8 -10
- data/lib/new_relic/agent/hostname.rb +21 -14
- data/lib/new_relic/agent/http_clients/abstract.rb +11 -12
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +7 -12
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +9 -10
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +5 -6
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +3 -5
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +9 -5
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +5 -6
- data/lib/new_relic/agent/http_clients/uri_util.rb +10 -12
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +9 -9
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +39 -32
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +16 -18
- data/lib/new_relic/agent/instrumentation/active_job.rb +21 -14
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +21 -7
- data/lib/new_relic/agent/instrumentation/active_record.rb +94 -47
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +82 -61
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +50 -63
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +36 -12
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +28 -21
- data/lib/new_relic/agent/instrumentation/active_storage.rb +4 -4
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +19 -16
- data/lib/new_relic/agent/instrumentation/active_support.rb +12 -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/acts_as_solr.rb +12 -3
- data/lib/new_relic/agent/instrumentation/authlogic.rb +11 -3
- data/lib/new_relic/agent/instrumentation/bunny/chain.rb +45 -0
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +150 -0
- data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +35 -0
- data/lib/new_relic/agent/instrumentation/bunny.rb +12 -153
- 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 +70 -60
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +91 -0
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +221 -0
- data/lib/new_relic/agent/instrumentation/curb/prepend.rb +61 -0
- data/lib/new_relic/agent/instrumentation/curb.rb +14 -240
- data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +37 -0
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +77 -66
- data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +35 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +48 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +33 -0
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +30 -52
- 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 +7 -7
- data/lib/new_relic/agent/instrumentation/excon.rb +28 -30
- data/lib/new_relic/agent/instrumentation/grape/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +100 -0
- data/lib/new_relic/agent/instrumentation/grape/prepend.rb +17 -0
- data/lib/new_relic/agent/instrumentation/grape.rb +15 -116
- data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +97 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +89 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +111 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +30 -0
- data/lib/new_relic/agent/instrumentation/grpc/helper.rb +32 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/chain.rb +69 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +134 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb +35 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/rpc_server_prepend.rb +26 -0
- data/lib/new_relic/agent/instrumentation/grpc_client.rb +23 -0
- data/lib/new_relic/agent/instrumentation/grpc_server.rb +25 -0
- data/lib/new_relic/agent/instrumentation/httpclient/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +37 -0
- data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/httpclient.rb +11 -33
- data/lib/new_relic/agent/instrumentation/httprb/chain.rb +22 -0
- data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +30 -0
- data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/httprb.rb +29 -0
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +5 -6
- data/lib/new_relic/agent/instrumentation/logger/chain.rb +21 -0
- data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +66 -0
- data/lib/new_relic/agent/instrumentation/logger/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/logger.rb +26 -0
- data/lib/new_relic/agent/instrumentation/memcache/chain.rb +15 -0
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +58 -129
- data/lib/new_relic/agent/instrumentation/memcache/helper.rb +59 -0
- data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +90 -0
- data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +101 -0
- data/lib/new_relic/agent/instrumentation/memcache.rb +57 -73
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +14 -13
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +10 -10
- data/lib/new_relic/agent/instrumentation/mongo.rb +7 -138
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +41 -18
- data/lib/new_relic/agent/instrumentation/net_http/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +40 -0
- data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +21 -0
- data/lib/new_relic/agent/instrumentation/net_http.rb +44 -0
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +12 -11
- data/lib/new_relic/agent/instrumentation/padrino/chain.rb +38 -0
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +28 -0
- data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +20 -0
- data/lib/new_relic/agent/instrumentation/padrino.rb +22 -58
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +7 -7
- data/lib/new_relic/agent/instrumentation/queue_time.rb +9 -10
- data/lib/new_relic/agent/instrumentation/rack/chain.rb +66 -0
- data/lib/new_relic/agent/instrumentation/rack/helpers.rb +33 -0
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +75 -0
- data/lib/new_relic/agent/instrumentation/rack/prepend.rb +43 -0
- data/lib/new_relic/agent/instrumentation/rack.rb +33 -141
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +19 -55
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +5 -5
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +9 -8
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +5 -5
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +9 -6
- data/lib/new_relic/agent/instrumentation/rails_notifications/custom_events.rb +30 -0
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +15 -5
- data/lib/new_relic/agent/instrumentation/rake/chain.rb +20 -0
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +149 -0
- data/lib/new_relic/agent/instrumentation/rake/prepend.rb +14 -0
- data/lib/new_relic/agent/instrumentation/rake.rb +17 -157
- data/lib/new_relic/agent/instrumentation/redis/chain.rb +45 -0
- data/lib/new_relic/agent/instrumentation/redis/constants.rb +17 -0
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +93 -0
- data/lib/new_relic/agent/instrumentation/redis/middleware.rb +16 -0
- data/lib/new_relic/agent/instrumentation/redis/prepend.rb +29 -0
- data/lib/new_relic/agent/instrumentation/redis.rb +19 -108
- data/lib/new_relic/agent/instrumentation/resque/chain.rb +21 -0
- data/lib/new_relic/agent/instrumentation/resque/helper.rb +19 -0
- data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +34 -0
- data/lib/new_relic/agent/instrumentation/resque/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/resque.rb +33 -44
- data/lib/new_relic/agent/instrumentation/sequel.rb +16 -18
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +3 -3
- 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 +29 -45
- data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +55 -0
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +31 -37
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +125 -0
- data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +33 -0
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +3 -3
- data/lib/new_relic/agent/instrumentation/sinatra.rb +35 -165
- data/lib/new_relic/agent/instrumentation/sunspot.rb +14 -6
- data/lib/new_relic/agent/instrumentation/thread/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +32 -0
- data/lib/new_relic/agent/instrumentation/thread/prepend.rb +22 -0
- data/lib/new_relic/agent/instrumentation/thread.rb +20 -0
- data/lib/new_relic/agent/instrumentation/tilt/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +41 -0
- data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/tilt.rb +25 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +22 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +80 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +14 -0
- data/lib/new_relic/agent/instrumentation/typhoeus.rb +13 -92
- data/lib/new_relic/agent/instrumentation.rb +2 -2
- data/lib/new_relic/agent/internal_agent_error.rb +3 -3
- data/lib/new_relic/agent/javascript_instrumentor.rb +49 -43
- 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 +2 -2
- data/lib/new_relic/agent/log_priority.rb +20 -0
- data/lib/new_relic/agent/logging.rb +25 -22
- data/lib/new_relic/agent/memory_logger.rb +3 -3
- data/lib/new_relic/agent/messaging.rb +66 -82
- data/lib/new_relic/agent/method_tracer.rb +152 -146
- data/lib/new_relic/agent/method_tracer_helpers.rb +89 -12
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +26 -18
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +6 -5
- data/lib/new_relic/agent/monitors/inbound_request_monitor.rb +2 -3
- data/lib/new_relic/agent/monitors/synthetics_monitor.rb +7 -10
- data/lib/new_relic/agent/monitors.rb +7 -8
- data/lib/new_relic/agent/new_relic_service/encoders.rb +7 -7
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +6 -6
- data/lib/new_relic/agent/new_relic_service/marshaller.rb +3 -3
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +6 -5
- data/lib/new_relic/agent/new_relic_service.rb +258 -184
- data/lib/new_relic/agent/{noticible_error.rb → noticeable_error.rb} +3 -6
- data/lib/new_relic/agent/null_logger.rb +8 -4
- data/lib/new_relic/agent/obfuscator.rb +9 -11
- data/lib/new_relic/agent/parameter_filtering.rb +25 -11
- data/lib/new_relic/agent/payload_metric_mapping.rb +10 -11
- data/lib/new_relic/agent/pipe_channel_manager.rb +28 -18
- data/lib/new_relic/agent/pipe_service.rb +9 -6
- data/lib/new_relic/agent/prepend_supportability.rb +3 -3
- data/lib/new_relic/agent/priority_sampled_buffer.rb +15 -15
- data/lib/new_relic/agent/range_extensions.rb +9 -29
- data/lib/new_relic/agent/rules_engine/replacement_rule.rb +12 -12
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +14 -14
- data/lib/new_relic/agent/rules_engine.rb +6 -5
- data/lib/new_relic/agent/sampler.rb +4 -5
- data/lib/new_relic/agent/sampler_collection.rb +4 -5
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +4 -3
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +13 -10
- data/lib/new_relic/agent/samplers/memory_sampler.rb +26 -15
- data/lib/new_relic/agent/samplers/object_sampler.rb +2 -2
- data/lib/new_relic/agent/samplers/vm_sampler.rb +22 -20
- data/lib/new_relic/agent/span_event_aggregator.rb +13 -13
- data/lib/new_relic/agent/span_event_primitive.rb +85 -54
- data/lib/new_relic/agent/sql_sampler.rb +20 -20
- data/lib/new_relic/agent/stats.rb +79 -42
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +11 -13
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +13 -14
- data/lib/new_relic/agent/stats_engine.rb +9 -9
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +8 -9
- data/lib/new_relic/agent/system_info.rb +95 -66
- data/lib/new_relic/agent/threading/agent_thread.rb +19 -15
- data/lib/new_relic/agent/threading/backtrace_node.rb +13 -14
- data/lib/new_relic/agent/threading/backtrace_service.rb +15 -15
- data/lib/new_relic/agent/threading/thread_profile.rb +24 -24
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +2 -2
- data/lib/new_relic/agent/tracer.rb +81 -86
- data/lib/new_relic/agent/transaction/abstract_segment.rb +107 -43
- data/lib/new_relic/agent/transaction/datastore_segment.rb +22 -18
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +67 -54
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +45 -46
- data/lib/new_relic/agent/transaction/external_request_segment.rb +47 -37
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +32 -36
- data/lib/new_relic/agent/transaction/request_attributes.rb +36 -36
- data/lib/new_relic/agent/transaction/segment.rb +41 -11
- data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +2 -4
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +2 -2
- data/lib/new_relic/agent/transaction/trace.rb +16 -12
- data/lib/new_relic/agent/transaction/trace_builder.rb +11 -11
- data/lib/new_relic/agent/transaction/trace_context.rb +36 -36
- data/lib/new_relic/agent/transaction/trace_node.rb +26 -25
- data/lib/new_relic/agent/transaction/tracing.rb +15 -12
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +6 -6
- data/lib/new_relic/agent/transaction.rb +182 -146
- data/lib/new_relic/agent/transaction_error_primitive.rb +29 -27
- data/lib/new_relic/agent/transaction_event_aggregator.rb +13 -13
- data/lib/new_relic/agent/transaction_event_primitive.rb +34 -35
- data/lib/new_relic/agent/transaction_event_recorder.rb +17 -16
- data/lib/new_relic/agent/transaction_metrics.rb +11 -10
- data/lib/new_relic/agent/transaction_sampler.rb +6 -7
- data/lib/new_relic/agent/transaction_time_aggregator.rb +27 -26
- data/lib/new_relic/agent/utilization/aws.rb +34 -4
- data/lib/new_relic/agent/utilization/azure.rb +4 -4
- data/lib/new_relic/agent/utilization/gcp.rb +8 -8
- data/lib/new_relic/agent/utilization/pcf.rb +6 -5
- data/lib/new_relic/agent/utilization/vendor.rb +44 -29
- data/lib/new_relic/agent/utilization_data.rb +8 -6
- data/lib/new_relic/agent/vm/jruby_vm.rb +2 -2
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +3 -3
- data/lib/new_relic/agent/vm/mri_vm.rb +46 -19
- data/lib/new_relic/agent/vm/snapshot.rb +6 -6
- data/lib/new_relic/agent/vm.rb +2 -2
- data/lib/new_relic/agent/worker_loop.rb +11 -13
- data/lib/new_relic/agent.rb +80 -76
- data/lib/new_relic/cli/command.rb +21 -23
- data/lib/new_relic/cli/commands/deployments.rb +93 -44
- data/lib/new_relic/cli/commands/install.rb +13 -16
- data/lib/new_relic/coerce.rb +16 -14
- data/lib/new_relic/collection_helper.rb +51 -49
- data/lib/new_relic/constants.rb +7 -2
- data/lib/new_relic/control/class_methods.rb +4 -4
- data/lib/new_relic/control/frameworks/external.rb +3 -3
- data/lib/new_relic/control/frameworks/rails.rb +24 -18
- data/lib/new_relic/control/frameworks/rails3.rb +4 -5
- data/lib/new_relic/control/frameworks/rails4.rb +2 -2
- data/lib/new_relic/control/frameworks/rails_notifications.rb +2 -2
- data/lib/new_relic/control/frameworks/ruby.rb +4 -4
- data/lib/new_relic/control/frameworks/sinatra.rb +8 -2
- data/lib/new_relic/control/frameworks.rb +2 -2
- data/lib/new_relic/control/instance_methods.rb +28 -46
- data/lib/new_relic/control/instrumentation.rb +40 -12
- data/lib/new_relic/control/private_instance_methods.rb +48 -0
- data/lib/new_relic/control/server_methods.rb +4 -5
- data/lib/new_relic/control.rb +2 -3
- data/lib/new_relic/delayed_job_injection.rb +2 -2
- data/lib/new_relic/dependency_detection.rb +129 -18
- data/lib/new_relic/environment_report.rb +41 -35
- data/lib/new_relic/helper.rb +49 -8
- data/lib/new_relic/language_support.rb +30 -6
- data/lib/new_relic/latest_changes.rb +9 -8
- data/lib/new_relic/local_environment.rb +25 -19
- data/lib/new_relic/metric_data.rb +32 -27
- data/lib/new_relic/metric_spec.rb +9 -7
- data/lib/new_relic/noticed_error.rb +23 -31
- data/lib/new_relic/rack/agent_hooks.rb +2 -2
- data/lib/new_relic/rack/agent_middleware.rb +6 -4
- data/lib/new_relic/rack/browser_monitoring.rb +134 -124
- data/lib/new_relic/rack.rb +2 -2
- data/lib/new_relic/recipes/capistrano3.rb +4 -62
- data/lib/new_relic/recipes/capistrano_legacy.rb +24 -27
- data/lib/new_relic/recipes/helpers/send_deployment.rb +70 -0
- data/lib/new_relic/recipes.rb +2 -2
- data/lib/new_relic/supportability_helper.rb +12 -11
- data/lib/new_relic/traced_thread.rb +39 -0
- data/lib/new_relic/version.rb +7 -18
- data/lib/newrelic_rpm.rb +20 -33
- data/lib/sequel/extensions/newrelic_instrumentation.rb +14 -17
- data/lib/sequel/plugins/newrelic_instrumentation.rb +6 -12
- data/lib/tasks/all.rb +4 -4
- data/lib/tasks/config.rake +22 -117
- data/lib/tasks/coverage_report.rake +28 -0
- data/lib/tasks/helpers/config.html.erb +21 -0
- data/lib/tasks/{config.text.erb → helpers/config.text.erb} +0 -0
- data/lib/tasks/helpers/format.rb +123 -0
- data/lib/tasks/helpers/matches.rb +12 -0
- data/lib/tasks/helpers/prompt.rb +24 -0
- data/lib/tasks/helpers/removers.rb +33 -0
- data/lib/tasks/install.rake +4 -0
- data/lib/tasks/instrumentation_generator/README.md +63 -0
- data/lib/tasks/instrumentation_generator/TODO.md +33 -0
- data/lib/tasks/instrumentation_generator/instrumentation.thor +124 -0
- data/lib/tasks/instrumentation_generator/templates/Envfile.tt +9 -0
- data/lib/tasks/instrumentation_generator/templates/chain.tt +22 -0
- data/lib/tasks/instrumentation_generator/templates/chain_method.tt +8 -0
- data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +29 -0
- data/lib/tasks/instrumentation_generator/templates/instrumentation.tt +13 -0
- data/lib/tasks/instrumentation_generator/templates/instrumentation_method.tt +3 -0
- data/lib/tasks/instrumentation_generator/templates/newrelic.yml.tt +19 -0
- data/lib/tasks/instrumentation_generator/templates/prepend.tt +13 -0
- data/lib/tasks/instrumentation_generator/templates/prepend_method.tt +3 -0
- data/lib/tasks/instrumentation_generator/templates/test.tt +15 -0
- data/lib/tasks/multiverse.rake +4 -0
- data/lib/tasks/multiverse.rb +7 -25
- data/lib/tasks/newrelic.rb +2 -2
- data/lib/tasks/tests.rake +11 -16
- data/newrelic.yml +666 -3
- data/newrelic_rpm.gemspec +28 -27
- data/recipes/newrelic.rb +3 -3
- data/test/agent_helper.rb +245 -189
- metadata +182 -130
- data/.travis.yml +0 -225
- data/bin/mongrel_rpm +0 -33
- data/cert/cacert.pem +0 -1177
- data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +0 -44
- data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +0 -53
- data/lib/new_relic/agent/instrumentation/excon/connection.rb +0 -49
- data/lib/new_relic/agent/instrumentation/http.rb +0 -49
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +0 -44
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +0 -33
- data/lib/new_relic/agent/instrumentation/net.rb +0 -53
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +0 -125
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +0 -46
- data/lib/new_relic/agent/supported_versions.rb +0 -275
- data/lib/new_relic/build.rb +0 -2
- data/lib/new_relic/control/frameworks/merb.rb +0 -29
- data/lib/new_relic/metrics.rb +0 -13
- data/lib/tasks/config.html.erb +0 -32
- data/true +0 -0
@@ -1,6 +1,5 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
2
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
3
|
# frozen_string_literal: true
|
5
4
|
|
6
5
|
require 'new_relic/agent/instrumentation/queue_time'
|
@@ -24,33 +23,32 @@ module NewRelic
|
|
24
23
|
include Tracing
|
25
24
|
|
26
25
|
# for nested transactions
|
27
|
-
NESTED_TRANSACTION_PREFIX
|
28
|
-
CONTROLLER_PREFIX
|
29
|
-
MIDDLEWARE_PREFIX
|
30
|
-
OTHER_TRANSACTION_PREFIX
|
31
|
-
TASK_PREFIX
|
32
|
-
RAKE_PREFIX
|
33
|
-
MESSAGE_PREFIX
|
34
|
-
RACK_PREFIX
|
35
|
-
SINATRA_PREFIX
|
36
|
-
GRAPE_PREFIX
|
37
|
-
ACTION_CABLE_PREFIX
|
38
|
-
|
39
|
-
WEB_TRANSACTION_CATEGORIES
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
APDEX_TXN_METRIC_PREFIX = "Apdex/"
|
26
|
+
NESTED_TRANSACTION_PREFIX = "Nested/"
|
27
|
+
CONTROLLER_PREFIX = "Controller/"
|
28
|
+
MIDDLEWARE_PREFIX = "Middleware/Rack/"
|
29
|
+
OTHER_TRANSACTION_PREFIX = "OtherTransaction/"
|
30
|
+
TASK_PREFIX = "#{OTHER_TRANSACTION_PREFIX}Background/"
|
31
|
+
RAKE_PREFIX = "#{OTHER_TRANSACTION_PREFIX}Rake/"
|
32
|
+
MESSAGE_PREFIX = "#{OTHER_TRANSACTION_PREFIX}Message/"
|
33
|
+
RACK_PREFIX = "#{CONTROLLER_PREFIX}Rack/"
|
34
|
+
SINATRA_PREFIX = "#{CONTROLLER_PREFIX}Sinatra/"
|
35
|
+
GRAPE_PREFIX = "#{CONTROLLER_PREFIX}Grape/"
|
36
|
+
ACTION_CABLE_PREFIX = "#{CONTROLLER_PREFIX}ActionCable/"
|
37
|
+
|
38
|
+
WEB_TRANSACTION_CATEGORIES = [:web, :controller, :uri, :rack, :sinatra, :grape, :middleware, :action_cable].freeze
|
39
|
+
|
40
|
+
MIDDLEWARE_SUMMARY_METRICS = ["Middleware/all"].freeze
|
41
|
+
WEB_SUMMARY_METRIC = "HttpDispatcher"
|
42
|
+
OTHER_SUMMARY_METRIC = "#{OTHER_TRANSACTION_PREFIX}all"
|
43
|
+
QUEUE_TIME_METRIC = "WebFrontend/QueueTime"
|
44
|
+
|
45
|
+
APDEX_S = "S"
|
46
|
+
APDEX_T = "T"
|
47
|
+
APDEX_F = "F"
|
48
|
+
APDEX_ALL_METRIC = "ApdexAll"
|
49
|
+
APDEX_METRIC = "Apdex"
|
50
|
+
APDEX_OTHER_METRIC = "ApdexOther"
|
51
|
+
APDEX_TXN_METRIC_PREFIX = "Apdex/"
|
54
52
|
APDEX_OTHER_TXN_METRIC_PREFIX = "ApdexOther/Transaction/"
|
55
53
|
|
56
54
|
JRUBY_CPU_TIME_ERROR = "Error calculating JRuby CPU Time"
|
@@ -67,27 +65,28 @@ module NewRelic
|
|
67
65
|
attr_accessor :apdex_start
|
68
66
|
|
69
67
|
attr_accessor :exceptions,
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
68
|
+
:filtered_params,
|
69
|
+
:jruby_cpu_start,
|
70
|
+
:process_cpu_start,
|
71
|
+
:http_response_code,
|
72
|
+
:response_content_length,
|
73
|
+
:response_content_type,
|
74
|
+
:parent_span_id
|
77
75
|
|
78
76
|
attr_reader :guid,
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
77
|
+
:metrics,
|
78
|
+
:logs,
|
79
|
+
:gc_start_snapshot,
|
80
|
+
:category,
|
81
|
+
:attributes,
|
82
|
+
:payload,
|
83
|
+
:nesting_max_depth,
|
84
|
+
:segments,
|
85
|
+
:end_time,
|
86
|
+
:duration
|
88
87
|
|
89
88
|
attr_writer :sampled,
|
90
|
-
|
89
|
+
:priority
|
91
90
|
|
92
91
|
# Populated with the trace sample once this transaction is completed.
|
93
92
|
attr_reader :transaction_trace
|
@@ -100,13 +99,13 @@ module NewRelic
|
|
100
99
|
Tracer.current_transaction
|
101
100
|
end
|
102
101
|
|
103
|
-
def self.set_default_transaction_name(partial_name, category = nil) #THREAD_LOCAL_ACCESS
|
104
|
-
txn
|
102
|
+
def self.set_default_transaction_name(partial_name, category = nil) # THREAD_LOCAL_ACCESS
|
103
|
+
txn = tl_current
|
105
104
|
name = name_from_partial(partial_name, category || txn.category)
|
106
105
|
txn.set_default_transaction_name(name, category)
|
107
106
|
end
|
108
107
|
|
109
|
-
def self.set_overriding_transaction_name(partial_name, category = nil) #THREAD_LOCAL_ACCESS
|
108
|
+
def self.set_overriding_transaction_name(partial_name, category = nil) # THREAD_LOCAL_ACCESS
|
110
109
|
txn = tl_current
|
111
110
|
return unless txn
|
112
111
|
|
@@ -119,38 +118,16 @@ module NewRelic
|
|
119
118
|
"#{namer.prefix_for_category(self, category)}#{partial_name}"
|
120
119
|
end
|
121
120
|
|
122
|
-
def self.wrap(state, name, category, options = {})
|
123
|
-
Deprecator.deprecate 'Transaction.wrap',
|
124
|
-
'Tracer#in_transaction'
|
125
|
-
|
126
|
-
finishable = Tracer.start_transaction_or_segment(
|
127
|
-
name: name,
|
128
|
-
category: category,
|
129
|
-
options: options
|
130
|
-
)
|
131
|
-
|
132
|
-
begin
|
133
|
-
# We shouldn't raise from Transaction.start, but only wrap the yield
|
134
|
-
# to be absolutely sure we don't report agent problems as app errors
|
135
|
-
yield
|
136
|
-
rescue => e
|
137
|
-
Transaction.notice_error(e)
|
138
|
-
raise e
|
139
|
-
ensure
|
140
|
-
finishable.finish if finishable
|
141
|
-
end
|
142
|
-
end
|
143
|
-
|
144
121
|
def self.start_new_transaction(state, category, options)
|
145
122
|
txn = Transaction.new(category, options)
|
146
123
|
state.reset(txn)
|
147
124
|
txn.state = state
|
148
|
-
txn.start
|
125
|
+
txn.start(options)
|
149
126
|
txn
|
150
127
|
end
|
151
128
|
|
152
129
|
def self.nested_transaction_name(name)
|
153
|
-
if name.start_with?(CONTROLLER_PREFIX
|
130
|
+
if name.start_with?(CONTROLLER_PREFIX, OTHER_TRANSACTION_PREFIX)
|
154
131
|
"#{NESTED_TRANSACTION_PREFIX}#{name}"
|
155
132
|
else
|
156
133
|
name
|
@@ -165,7 +142,7 @@ module NewRelic
|
|
165
142
|
end
|
166
143
|
|
167
144
|
# See NewRelic::Agent.notice_error for options and commentary
|
168
|
-
def self.notice_error(e, options={})
|
145
|
+
def self.notice_error(e, options = {})
|
169
146
|
if txn = Tracer.current_transaction
|
170
147
|
txn.notice_error(e, options)
|
171
148
|
elsif NewRelic::Agent.instance
|
@@ -178,7 +155,7 @@ module NewRelic
|
|
178
155
|
#
|
179
156
|
# @api public
|
180
157
|
#
|
181
|
-
def self.recording_web_transaction? #THREAD_LOCAL_ACCESS
|
158
|
+
def self.recording_web_transaction? # THREAD_LOCAL_ACCESS
|
182
159
|
NewRelic::Agent.record_api_supportability_metric(:recording_web_transaction?)
|
183
160
|
|
184
161
|
txn = tl_current
|
@@ -191,7 +168,7 @@ module NewRelic
|
|
191
168
|
:apdex_f
|
192
169
|
when duration <= apdex_t
|
193
170
|
:apdex_s
|
194
|
-
when duration <=
|
171
|
+
when duration <= apdex_t * 4
|
195
172
|
:apdex_t
|
196
173
|
else
|
197
174
|
:apdex_f
|
@@ -202,24 +179,26 @@ module NewRelic
|
|
202
179
|
if txn = tl_current
|
203
180
|
txn.add_agent_attribute(key, value, default_destinations)
|
204
181
|
else
|
205
|
-
NewRelic::Agent.logger.debug
|
182
|
+
NewRelic::Agent.logger.debug("Attempted to add agent attribute: #{key} without transaction")
|
206
183
|
end
|
207
184
|
end
|
208
185
|
|
209
186
|
def add_agent_attribute(key, value, default_destinations)
|
210
187
|
@attributes.add_agent_attribute(key, value, default_destinations)
|
188
|
+
current_segment.add_agent_attribute(key, value) if current_segment
|
211
189
|
end
|
212
190
|
|
213
191
|
def self.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
214
192
|
if txn = tl_current
|
215
193
|
txn.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
216
194
|
else
|
217
|
-
NewRelic::Agent.logger.debug
|
195
|
+
NewRelic::Agent.logger.debug("Attempted to merge untrusted attributes without transaction")
|
218
196
|
end
|
219
197
|
end
|
220
198
|
|
221
199
|
def merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
222
200
|
@attributes.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
201
|
+
current_segment.merge_untrusted_agent_attributes(attributes, prefix, default_destinations) if current_segment
|
223
202
|
end
|
224
203
|
|
225
204
|
@@java_classes_loaded = false
|
@@ -227,8 +206,8 @@ module NewRelic
|
|
227
206
|
if defined? JRuby
|
228
207
|
begin
|
229
208
|
require 'java'
|
230
|
-
java_import
|
231
|
-
java_import
|
209
|
+
java_import('java.lang.management.ManagementFactory')
|
210
|
+
java_import('com.sun.management.OperatingSystemMXBean')
|
232
211
|
@@java_classes_loaded = true
|
233
212
|
rescue
|
234
213
|
end
|
@@ -236,17 +215,19 @@ module NewRelic
|
|
236
215
|
|
237
216
|
def initialize(category, options)
|
238
217
|
@nesting_max_depth = 0
|
239
|
-
@
|
218
|
+
@current_segment_by_thread = {}
|
219
|
+
@current_segment_lock = Mutex.new
|
240
220
|
@segments = []
|
241
221
|
|
242
222
|
self.default_name = options[:transaction_name]
|
243
|
-
@overridden_name
|
244
|
-
@frozen_name
|
223
|
+
@overridden_name = nil
|
224
|
+
@frozen_name = nil
|
245
225
|
|
246
226
|
@category = category
|
247
|
-
@start_time =
|
227
|
+
@start_time = Process.clock_gettime(Process::CLOCK_REALTIME)
|
248
228
|
@end_time = nil
|
249
229
|
@duration = nil
|
230
|
+
|
250
231
|
@apdex_start = options[:apdex_start_time] || @start_time
|
251
232
|
@jruby_cpu_start = jruby_cpu_time
|
252
233
|
@process_cpu_start = process_cpu
|
@@ -255,6 +236,7 @@ module NewRelic
|
|
255
236
|
|
256
237
|
@exceptions = {}
|
257
238
|
@metrics = TransactionMetrics.new
|
239
|
+
@logs = PrioritySampledBuffer.new(NewRelic::Agent.instance.log_event_aggregator.capacity)
|
258
240
|
@guid = NewRelic::Agent::GuidGenerator.generate_guid
|
259
241
|
|
260
242
|
@ignore_this_transaction = false
|
@@ -272,18 +254,39 @@ module NewRelic
|
|
272
254
|
merge_request_parameters(@filtered_params)
|
273
255
|
|
274
256
|
if request = options[:request]
|
275
|
-
@request_attributes = RequestAttributes.new
|
257
|
+
@request_attributes = RequestAttributes.new(request)
|
276
258
|
else
|
277
259
|
@request_attributes = nil
|
278
260
|
end
|
279
261
|
end
|
280
262
|
|
263
|
+
def parent_thread_id
|
264
|
+
::Thread.current.nr_parent_thread_id if ::Thread.current.respond_to?(:nr_parent_thread_id)
|
265
|
+
end
|
266
|
+
|
267
|
+
def current_segment
|
268
|
+
current_thread_id = ::Thread.current.object_id
|
269
|
+
return current_segment_by_thread[current_thread_id] if current_segment_by_thread[current_thread_id]
|
270
|
+
return current_segment_by_thread[parent_thread_id] if current_segment_by_thread[parent_thread_id]
|
271
|
+
|
272
|
+
current_segment_by_thread[@starting_thread_id]
|
273
|
+
end
|
274
|
+
|
275
|
+
def set_current_segment(new_segment)
|
276
|
+
@current_segment_lock.synchronize { current_segment_by_thread[::Thread.current.object_id] = new_segment }
|
277
|
+
end
|
278
|
+
|
279
|
+
def remove_current_segment_by_thread_id(id)
|
280
|
+
@current_segment_lock.synchronize { current_segment_by_thread.delete(id) }
|
281
|
+
end
|
282
|
+
|
281
283
|
def distributed_tracer
|
282
284
|
@distributed_tracer ||= DistributedTracer.new(self)
|
283
285
|
end
|
284
286
|
|
285
287
|
def sampled?
|
286
288
|
return unless Agent.config[:'distributed_tracing.enabled']
|
289
|
+
|
287
290
|
if @sampled.nil?
|
288
291
|
@sampled = NewRelic::Agent.instance.adaptive_sampler.sampled?
|
289
292
|
end
|
@@ -291,7 +294,7 @@ module NewRelic
|
|
291
294
|
end
|
292
295
|
|
293
296
|
def trace_id
|
294
|
-
@trace_id ||= NewRelic::Agent::GuidGenerator.generate_guid
|
297
|
+
@trace_id ||= NewRelic::Agent::GuidGenerator.generate_guid(32)
|
295
298
|
end
|
296
299
|
|
297
300
|
def trace_id=(value)
|
@@ -299,7 +302,7 @@ module NewRelic
|
|
299
302
|
end
|
300
303
|
|
301
304
|
def priority
|
302
|
-
@priority ||= (sampled? ? 1.0
|
305
|
+
@priority ||= (sampled? ? rand + 1.0 : rand).round(NewRelic::PRIORITY_PRECISION)
|
303
306
|
end
|
304
307
|
|
305
308
|
def referer
|
@@ -314,7 +317,7 @@ module NewRelic
|
|
314
317
|
@request_attributes && @request_attributes.port
|
315
318
|
end
|
316
319
|
|
317
|
-
# This transaction-local hash may be used as
|
320
|
+
# This transaction-local hash may be used as temporary storage by
|
318
321
|
# instrumentation that needs to pass data from one instrumentation point
|
319
322
|
# to another.
|
320
323
|
#
|
@@ -346,6 +349,7 @@ module NewRelic
|
|
346
349
|
|
347
350
|
def set_default_transaction_name(name, category)
|
348
351
|
return log_frozen_name(name) if name_frozen?
|
352
|
+
|
349
353
|
if influences_transaction_name?(category)
|
350
354
|
self.default_name = name
|
351
355
|
@category = category if category
|
@@ -354,6 +358,7 @@ module NewRelic
|
|
354
358
|
|
355
359
|
def set_overriding_transaction_name(name, category)
|
356
360
|
return log_frozen_name(name) if name_frozen?
|
361
|
+
|
357
362
|
if influences_transaction_name?(category)
|
358
363
|
self.overridden_name = name
|
359
364
|
@category = category if category
|
@@ -371,9 +376,9 @@ module NewRelic
|
|
371
376
|
|
372
377
|
def best_name
|
373
378
|
@frozen_name ||
|
374
|
-
|
375
|
-
|
376
|
-
|
379
|
+
@overridden_name ||
|
380
|
+
@default_name ||
|
381
|
+
NewRelic::Agent::UNKNOWN_METRIC
|
377
382
|
end
|
378
383
|
|
379
384
|
# For common interface with Trace
|
@@ -411,28 +416,33 @@ module NewRelic
|
|
411
416
|
@frozen_name ? true : false
|
412
417
|
end
|
413
418
|
|
414
|
-
def start
|
419
|
+
def start(options = {})
|
415
420
|
return if !state.is_execution_traced?
|
416
421
|
|
417
|
-
sql_sampler.on_start_transaction(state,
|
422
|
+
sql_sampler.on_start_transaction(state, request_path)
|
418
423
|
NewRelic::Agent.instance.events.notify(:start_transaction)
|
419
424
|
NewRelic::Agent::TransactionTimeAggregator.transaction_start(start_time)
|
420
425
|
|
421
426
|
ignore! if user_defined_rules_ignore?
|
422
427
|
|
423
|
-
create_initial_segment
|
428
|
+
create_initial_segment(options)
|
429
|
+
Segment.merge_untrusted_agent_attributes( \
|
430
|
+
@filtered_params,
|
431
|
+
:'request.parameters',
|
432
|
+
AttributeFilter::DST_SPAN_EVENTS
|
433
|
+
)
|
424
434
|
end
|
425
435
|
|
426
436
|
def initial_segment
|
427
437
|
segments.first
|
428
438
|
end
|
429
439
|
|
430
|
-
def create_initial_segment
|
431
|
-
segment = create_segment
|
440
|
+
def create_initial_segment(options = {})
|
441
|
+
segment = create_segment(@default_name, options)
|
432
442
|
segment.record_scoped_metric = false
|
433
443
|
end
|
434
444
|
|
435
|
-
def create_segment(name)
|
445
|
+
def create_segment(name, options = {})
|
436
446
|
summary_metrics = nil
|
437
447
|
|
438
448
|
if name.start_with?(MIDDLEWARE_PREFIX)
|
@@ -446,6 +456,10 @@ module NewRelic
|
|
446
456
|
unscoped_metrics: summary_metrics
|
447
457
|
)
|
448
458
|
|
459
|
+
# #code_information will glean the code info out of the options hash
|
460
|
+
# if it exists or noop otherwise
|
461
|
+
segment.code_information = options
|
462
|
+
|
449
463
|
segment
|
450
464
|
end
|
451
465
|
|
@@ -455,18 +469,19 @@ module NewRelic
|
|
455
469
|
merge_request_parameters(options[:filtered_params])
|
456
470
|
end
|
457
471
|
|
458
|
-
@ignore_apdex = options[:ignore_apdex] if options.key?
|
459
|
-
@ignore_enduser = options[:ignore_enduser] if options.key?
|
472
|
+
@ignore_apdex = options[:ignore_apdex] if options.key?(:ignore_apdex)
|
473
|
+
@ignore_enduser = options[:ignore_enduser] if options.key?(:ignore_enduser)
|
474
|
+
|
475
|
+
nest_initial_segment if segments.length == 1
|
476
|
+
nested_name = self.class.nested_transaction_name(options[:transaction_name])
|
460
477
|
|
461
|
-
|
462
|
-
nested_name = self.class.nested_transaction_name options[:transaction_name]
|
463
|
-
segment = create_segment nested_name
|
478
|
+
segment = create_segment(nested_name, options)
|
464
479
|
set_default_transaction_name(options[:transaction_name], category)
|
465
480
|
segment
|
466
481
|
end
|
467
482
|
|
468
483
|
def nest_initial_segment
|
469
|
-
self.initial_segment.name = self.class.nested_transaction_name
|
484
|
+
self.initial_segment.name = self.class.nested_transaction_name(initial_segment.name)
|
470
485
|
initial_segment.record_scoped_metric = true
|
471
486
|
end
|
472
487
|
|
@@ -499,14 +514,18 @@ module NewRelic
|
|
499
514
|
|
500
515
|
def finish
|
501
516
|
return unless state.is_execution_traced?
|
502
|
-
|
503
|
-
@
|
517
|
+
|
518
|
+
@end_time = Process.clock_gettime(Process::CLOCK_REALTIME)
|
519
|
+
@duration = @end_time - @start_time
|
504
520
|
freeze_name_and_execute_if_not_ignored
|
505
521
|
|
506
522
|
if nesting_max_depth == 1
|
507
523
|
initial_segment.name = @frozen_name
|
508
524
|
end
|
509
525
|
|
526
|
+
initial_segment.transaction_name = @frozen_name
|
527
|
+
assign_segment_dt_attributes
|
528
|
+
assign_agent_attributes
|
510
529
|
initial_segment.finish
|
511
530
|
|
512
531
|
NewRelic::Agent::TransactionTimeAggregator.transaction_stop(@end_time, @starting_thread_id)
|
@@ -530,8 +549,6 @@ module NewRelic
|
|
530
549
|
|
531
550
|
def commit!(outermost_node_name)
|
532
551
|
generate_payload
|
533
|
-
|
534
|
-
assign_agent_attributes
|
535
552
|
assign_intrinsics
|
536
553
|
|
537
554
|
finalize_segments
|
@@ -547,17 +564,25 @@ module NewRelic
|
|
547
564
|
|
548
565
|
record_exceptions
|
549
566
|
record_transaction_event
|
567
|
+
record_log_events
|
550
568
|
merge_metrics
|
551
569
|
send_transaction_finished_event
|
552
570
|
end
|
553
571
|
|
572
|
+
def assign_segment_dt_attributes
|
573
|
+
dt_payload = distributed_tracer.trace_state_payload || distributed_tracer.distributed_trace_payload
|
574
|
+
parent_attributes = {}
|
575
|
+
DistributedTraceAttributes.copy_parent_attributes(self, dt_payload, parent_attributes)
|
576
|
+
parent_attributes.each { |k, v| initial_segment.add_agent_attribute(k, v) }
|
577
|
+
end
|
578
|
+
|
554
579
|
def assign_agent_attributes
|
555
580
|
default_destinations = AttributeFilter::DST_TRANSACTION_TRACER |
|
556
|
-
|
557
|
-
|
581
|
+
AttributeFilter::DST_TRANSACTION_EVENTS |
|
582
|
+
AttributeFilter::DST_ERROR_COLLECTOR
|
558
583
|
|
559
584
|
if http_response_code
|
560
|
-
add_agent_attribute(:
|
585
|
+
add_agent_attribute(:'http.statusCode', http_response_code, default_destinations)
|
561
586
|
end
|
562
587
|
|
563
588
|
if response_content_length
|
@@ -569,7 +594,7 @@ module NewRelic
|
|
569
594
|
end
|
570
595
|
|
571
596
|
if @request_attributes
|
572
|
-
@request_attributes.assign_agent_attributes
|
597
|
+
@request_attributes.assign_agent_attributes(self)
|
573
598
|
end
|
574
599
|
|
575
600
|
display_host = Agent.config[:'process_host.display_name']
|
@@ -606,11 +631,11 @@ module NewRelic
|
|
606
631
|
# This method returns transport_duration in seconds. Transport duration
|
607
632
|
# is stored in milliseconds on the payload, but it's needed in seconds
|
608
633
|
# for metrics and intrinsics.
|
609
|
-
def calculate_transport_duration
|
634
|
+
def calculate_transport_duration(distributed_trace_payload)
|
610
635
|
return unless distributed_trace_payload
|
611
636
|
|
612
|
-
duration =
|
613
|
-
duration
|
637
|
+
duration = start_time - (distributed_trace_payload.timestamp / 1000.0)
|
638
|
+
[duration, 0].max
|
614
639
|
end
|
615
640
|
|
616
641
|
# The summary metrics recorded by this method all end up with a duration
|
@@ -629,14 +654,14 @@ module NewRelic
|
|
629
654
|
|
630
655
|
def generate_payload
|
631
656
|
@payload = {
|
632
|
-
:name
|
633
|
-
:bucket
|
634
|
-
:start_timestamp
|
635
|
-
:duration
|
636
|
-
:metrics
|
637
|
-
:attributes
|
638
|
-
:error
|
639
|
-
:priority
|
657
|
+
:name => @frozen_name,
|
658
|
+
:bucket => recording_web_transaction? ? :request : :background,
|
659
|
+
:start_timestamp => start_time,
|
660
|
+
:duration => duration,
|
661
|
+
:metrics => @metrics,
|
662
|
+
:attributes => @attributes,
|
663
|
+
:error => false,
|
664
|
+
:priority => priority
|
640
665
|
}
|
641
666
|
|
642
667
|
distributed_tracer.append_payload(@payload)
|
@@ -649,7 +674,7 @@ module NewRelic
|
|
649
674
|
end
|
650
675
|
|
651
676
|
def is_synthetics_request?
|
652
|
-
synthetics_payload
|
677
|
+
!synthetics_payload.nil? && !raw_synthetics_header.nil?
|
653
678
|
end
|
654
679
|
|
655
680
|
def synthetics_version
|
@@ -690,7 +715,6 @@ module NewRelic
|
|
690
715
|
when :apdex_s then APDEX_S
|
691
716
|
when :apdex_t then APDEX_T
|
692
717
|
when :apdex_f then APDEX_F
|
693
|
-
else nil
|
694
718
|
end
|
695
719
|
payload[:apdex_perf_zone] = bucket_str if bucket_str
|
696
720
|
end
|
@@ -699,8 +723,8 @@ module NewRelic
|
|
699
723
|
return unless is_synthetics_request?
|
700
724
|
|
701
725
|
payload[:synthetics_resource_id] = synthetics_resource_id
|
702
|
-
payload[:synthetics_job_id]
|
703
|
-
payload[:synthetics_monitor_id]
|
726
|
+
payload[:synthetics_job_id] = synthetics_job_id
|
727
|
+
payload[:synthetics_monitor_id] = synthetics_monitor_id
|
704
728
|
end
|
705
729
|
|
706
730
|
def merge_metrics
|
@@ -710,35 +734,38 @@ module NewRelic
|
|
710
734
|
def record_exceptions
|
711
735
|
error_recorded = false
|
712
736
|
@exceptions.each do |exception, options|
|
713
|
-
options[:uri]
|
714
|
-
options[:port]
|
715
|
-
options[:metric]
|
737
|
+
options[:uri] ||= request_path if request_path
|
738
|
+
options[:port] = request_port if request_port
|
739
|
+
options[:metric] = best_name
|
716
740
|
options[:attributes] = @attributes
|
717
741
|
|
718
|
-
span_id = options.delete
|
742
|
+
span_id = options.delete(:span_id)
|
719
743
|
error_recorded = !!agent.error_collector.notice_error(exception, options, span_id) || error_recorded
|
720
744
|
end
|
721
745
|
payload[:error] = error_recorded if payload
|
722
746
|
end
|
723
747
|
|
724
748
|
# Do not call this. Invoke the class method instead.
|
725
|
-
def notice_error(error, options={}) # :nodoc:
|
726
|
-
|
749
|
+
def notice_error(error, options = {}) # :nodoc:
|
727
750
|
# Only the last error is kept
|
728
|
-
if
|
729
|
-
|
730
|
-
options[:span_id] =
|
751
|
+
if current_segment
|
752
|
+
current_segment.notice_error(error, expected: options[:expected])
|
753
|
+
options[:span_id] = current_segment.guid
|
731
754
|
end
|
732
755
|
|
733
756
|
if @exceptions[error]
|
734
|
-
@exceptions[error].merge!
|
757
|
+
@exceptions[error].merge!(options)
|
735
758
|
else
|
736
759
|
@exceptions[error] = options
|
737
760
|
end
|
738
761
|
end
|
739
762
|
|
740
763
|
def record_transaction_event
|
741
|
-
agent.transaction_event_recorder.record
|
764
|
+
agent.transaction_event_recorder.record(payload)
|
765
|
+
end
|
766
|
+
|
767
|
+
def record_log_events
|
768
|
+
agent.log_event_aggregator.record_batch(self, @logs.to_a)
|
742
769
|
end
|
743
770
|
|
744
771
|
def queue_time
|
@@ -778,8 +805,8 @@ module NewRelic
|
|
778
805
|
record_apdex_metrics(APDEX_METRIC, APDEX_TXN_METRIC_PREFIX, apdex_t)
|
779
806
|
else
|
780
807
|
record_apdex_metrics(APDEX_OTHER_METRIC,
|
781
|
-
|
782
|
-
|
808
|
+
APDEX_OTHER_TXN_METRIC_PREFIX,
|
809
|
+
transaction_specific_apdex_t)
|
783
810
|
end
|
784
811
|
end
|
785
812
|
end
|
@@ -787,9 +814,9 @@ module NewRelic
|
|
787
814
|
def record_apdex_metrics(rollup_metric, transaction_prefix, current_apdex_t)
|
788
815
|
return unless current_apdex_t
|
789
816
|
|
790
|
-
total_duration
|
817
|
+
total_duration = end_time - apdex_start
|
791
818
|
apdex_bucket_global = apdex_bucket(total_duration, current_apdex_t)
|
792
|
-
apdex_bucket_txn
|
819
|
+
apdex_bucket_txn = apdex_bucket(duration, current_apdex_t)
|
793
820
|
|
794
821
|
@metrics.record_unscoped(rollup_metric, apdex_bucket_global, current_apdex_t)
|
795
822
|
@metrics.record_unscoped(APDEX_ALL_METRIC, apdex_bucket_global, current_apdex_t)
|
@@ -807,7 +834,7 @@ module NewRelic
|
|
807
834
|
end
|
808
835
|
|
809
836
|
def threshold
|
810
|
-
|
837
|
+
source_class = Agent.config.source(:'transaction_tracer.transaction_threshold').class
|
811
838
|
if source_class == Configuration::DefaultSource
|
812
839
|
apdex_t * 4
|
813
840
|
else
|
@@ -815,7 +842,7 @@ module NewRelic
|
|
815
842
|
end
|
816
843
|
end
|
817
844
|
|
818
|
-
def with_database_metric_name(model, method, product=nil)
|
845
|
+
def with_database_metric_name(model, method, product = nil)
|
819
846
|
previous = self.instrumentation_state[:datastore_override]
|
820
847
|
model_name = case model
|
821
848
|
when Class
|
@@ -824,7 +851,7 @@ module NewRelic
|
|
824
851
|
model
|
825
852
|
else
|
826
853
|
model.to_s
|
827
|
-
|
854
|
+
end
|
828
855
|
self.instrumentation_state[:datastore_override] = [method, model_name, product]
|
829
856
|
yield
|
830
857
|
ensure
|
@@ -835,6 +862,10 @@ module NewRelic
|
|
835
862
|
attributes.merge_custom_attributes(p)
|
836
863
|
end
|
837
864
|
|
865
|
+
def add_log_event(event)
|
866
|
+
logs.append(event: event)
|
867
|
+
end
|
868
|
+
|
838
869
|
def recording_web_transaction?
|
839
870
|
web_category?(@category)
|
840
871
|
end
|
@@ -853,11 +884,13 @@ module NewRelic
|
|
853
884
|
|
854
885
|
def normal_cpu_burn
|
855
886
|
return unless @process_cpu_start
|
887
|
+
|
856
888
|
process_cpu - @process_cpu_start
|
857
889
|
end
|
858
890
|
|
859
891
|
def jruby_cpu_burn
|
860
892
|
return unless @jruby_cpu_start
|
893
|
+
|
861
894
|
jruby_cpu_time - @jruby_cpu_start
|
862
895
|
end
|
863
896
|
|
@@ -893,18 +926,21 @@ module NewRelic
|
|
893
926
|
|
894
927
|
def process_cpu
|
895
928
|
return nil if defined? JRuby
|
929
|
+
|
896
930
|
p = Process.times
|
897
931
|
p.stime + p.utime
|
898
932
|
end
|
899
933
|
|
900
934
|
def jruby_cpu_time
|
901
935
|
return nil unless @@java_classes_loaded
|
936
|
+
|
902
937
|
threadMBean = Java::JavaLangManagement::ManagementFactory.getThreadMXBean()
|
903
938
|
|
904
939
|
return nil unless threadMBean.isCurrentThreadCpuTimeSupported
|
905
|
-
java_utime = threadMBean.getCurrentThreadUserTime() # ns
|
906
940
|
|
907
|
-
|
941
|
+
java_utime = threadMBean.getCurrentThreadUserTime() # ns
|
942
|
+
|
943
|
+
-1 == java_utime ? 0.0 : java_utime / 1e9
|
908
944
|
rescue => e
|
909
945
|
::NewRelic::Agent.logger.log_once(:warn, :jruby_cpu_time, JRUBY_CPU_TIME_ERROR, e)
|
910
946
|
::NewRelic::Agent.logger.debug(JRUBY_CPU_TIME_ERROR, e)
|