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,4 +1,3 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
3
|
# frozen_string_literal: true
|
@@ -24,40 +23,36 @@ 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"
|
57
55
|
|
58
|
-
# reference to the transaction state managing this transaction
|
59
|
-
attr_accessor :state
|
60
|
-
|
61
56
|
# A Time instance for the start time, never nil
|
62
57
|
attr_accessor :start_time
|
63
58
|
|
@@ -67,27 +62,28 @@ module NewRelic
|
|
67
62
|
attr_accessor :apdex_start
|
68
63
|
|
69
64
|
attr_accessor :exceptions,
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
65
|
+
:filtered_params,
|
66
|
+
:jruby_cpu_start,
|
67
|
+
:process_cpu_start,
|
68
|
+
:http_response_code,
|
69
|
+
:response_content_length,
|
70
|
+
:response_content_type,
|
71
|
+
:parent_span_id
|
77
72
|
|
78
73
|
attr_reader :guid,
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
74
|
+
:metrics,
|
75
|
+
:logs,
|
76
|
+
:gc_start_snapshot,
|
77
|
+
:category,
|
78
|
+
:attributes,
|
79
|
+
:payload,
|
80
|
+
:nesting_max_depth,
|
81
|
+
:segments,
|
82
|
+
:end_time,
|
83
|
+
:duration
|
88
84
|
|
89
85
|
attr_writer :sampled,
|
90
|
-
|
86
|
+
:priority
|
91
87
|
|
92
88
|
# Populated with the trace sample once this transaction is completed.
|
93
89
|
attr_reader :transaction_trace
|
@@ -100,13 +96,13 @@ module NewRelic
|
|
100
96
|
Tracer.current_transaction
|
101
97
|
end
|
102
98
|
|
103
|
-
def self.set_default_transaction_name(partial_name, category = nil) #THREAD_LOCAL_ACCESS
|
104
|
-
txn
|
99
|
+
def self.set_default_transaction_name(partial_name, category = nil) # THREAD_LOCAL_ACCESS
|
100
|
+
txn = tl_current
|
105
101
|
name = name_from_partial(partial_name, category || txn.category)
|
106
102
|
txn.set_default_transaction_name(name, category)
|
107
103
|
end
|
108
104
|
|
109
|
-
def self.set_overriding_transaction_name(partial_name, category = nil) #THREAD_LOCAL_ACCESS
|
105
|
+
def self.set_overriding_transaction_name(partial_name, category = nil) # THREAD_LOCAL_ACCESS
|
110
106
|
txn = tl_current
|
111
107
|
return unless txn
|
112
108
|
|
@@ -122,13 +118,12 @@ module NewRelic
|
|
122
118
|
def self.start_new_transaction(state, category, options)
|
123
119
|
txn = Transaction.new(category, options)
|
124
120
|
state.reset(txn)
|
125
|
-
txn.
|
126
|
-
txn.start
|
121
|
+
txn.start(options)
|
127
122
|
txn
|
128
123
|
end
|
129
124
|
|
130
125
|
def self.nested_transaction_name(name)
|
131
|
-
if name.start_with?(CONTROLLER_PREFIX
|
126
|
+
if name.start_with?(CONTROLLER_PREFIX, OTHER_TRANSACTION_PREFIX)
|
132
127
|
"#{NESTED_TRANSACTION_PREFIX}#{name}"
|
133
128
|
else
|
134
129
|
name
|
@@ -143,7 +138,7 @@ module NewRelic
|
|
143
138
|
end
|
144
139
|
|
145
140
|
# See NewRelic::Agent.notice_error for options and commentary
|
146
|
-
def self.notice_error(e, options={})
|
141
|
+
def self.notice_error(e, options = {})
|
147
142
|
if txn = Tracer.current_transaction
|
148
143
|
txn.notice_error(e, options)
|
149
144
|
elsif NewRelic::Agent.instance
|
@@ -156,7 +151,7 @@ module NewRelic
|
|
156
151
|
#
|
157
152
|
# @api public
|
158
153
|
#
|
159
|
-
def self.recording_web_transaction? #THREAD_LOCAL_ACCESS
|
154
|
+
def self.recording_web_transaction? # THREAD_LOCAL_ACCESS
|
160
155
|
NewRelic::Agent.record_api_supportability_metric(:recording_web_transaction?)
|
161
156
|
|
162
157
|
txn = tl_current
|
@@ -169,7 +164,7 @@ module NewRelic
|
|
169
164
|
:apdex_f
|
170
165
|
when duration <= apdex_t
|
171
166
|
:apdex_s
|
172
|
-
when duration <=
|
167
|
+
when duration <= apdex_t * 4
|
173
168
|
:apdex_t
|
174
169
|
else
|
175
170
|
:apdex_f
|
@@ -180,7 +175,7 @@ module NewRelic
|
|
180
175
|
if txn = tl_current
|
181
176
|
txn.add_agent_attribute(key, value, default_destinations)
|
182
177
|
else
|
183
|
-
NewRelic::Agent.logger.debug
|
178
|
+
NewRelic::Agent.logger.debug("Attempted to add agent attribute: #{key} without transaction")
|
184
179
|
end
|
185
180
|
end
|
186
181
|
|
@@ -193,7 +188,7 @@ module NewRelic
|
|
193
188
|
if txn = tl_current
|
194
189
|
txn.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
195
190
|
else
|
196
|
-
NewRelic::Agent.logger.debug
|
191
|
+
NewRelic::Agent.logger.debug("Attempted to merge untrusted attributes without transaction")
|
197
192
|
end
|
198
193
|
end
|
199
194
|
|
@@ -207,8 +202,8 @@ module NewRelic
|
|
207
202
|
if defined? JRuby
|
208
203
|
begin
|
209
204
|
require 'java'
|
210
|
-
java_import
|
211
|
-
java_import
|
205
|
+
java_import('java.lang.management.ManagementFactory')
|
206
|
+
java_import('com.sun.management.OperatingSystemMXBean')
|
212
207
|
@@java_classes_loaded = true
|
213
208
|
rescue
|
214
209
|
end
|
@@ -216,12 +211,13 @@ module NewRelic
|
|
216
211
|
|
217
212
|
def initialize(category, options)
|
218
213
|
@nesting_max_depth = 0
|
219
|
-
@
|
214
|
+
@current_segment_by_thread = {}
|
215
|
+
@current_segment_lock = Mutex.new
|
220
216
|
@segments = []
|
221
217
|
|
222
218
|
self.default_name = options[:transaction_name]
|
223
|
-
@overridden_name
|
224
|
-
@frozen_name
|
219
|
+
@overridden_name = nil
|
220
|
+
@frozen_name = nil
|
225
221
|
|
226
222
|
@category = category
|
227
223
|
@start_time = Process.clock_gettime(Process::CLOCK_REALTIME)
|
@@ -236,6 +232,7 @@ module NewRelic
|
|
236
232
|
|
237
233
|
@exceptions = {}
|
238
234
|
@metrics = TransactionMetrics.new
|
235
|
+
@logs = PrioritySampledBuffer.new(NewRelic::Agent.instance.log_event_aggregator.capacity)
|
239
236
|
@guid = NewRelic::Agent::GuidGenerator.generate_guid
|
240
237
|
|
241
238
|
@ignore_this_transaction = false
|
@@ -247,24 +244,52 @@ module NewRelic
|
|
247
244
|
@priority = nil
|
248
245
|
|
249
246
|
@starting_thread_id = Thread.current.object_id
|
247
|
+
@starting_segment_key = current_segment_key
|
250
248
|
|
251
249
|
@attributes = Attributes.new(NewRelic::Agent.instance.attribute_filter)
|
252
250
|
|
253
251
|
merge_request_parameters(@filtered_params)
|
254
252
|
|
255
253
|
if request = options[:request]
|
256
|
-
@request_attributes = RequestAttributes.new
|
254
|
+
@request_attributes = RequestAttributes.new(request)
|
257
255
|
else
|
258
256
|
@request_attributes = nil
|
259
257
|
end
|
260
258
|
end
|
261
259
|
|
260
|
+
def state
|
261
|
+
NewRelic::Agent::Tracer.state
|
262
|
+
end
|
263
|
+
|
264
|
+
def current_segment_key
|
265
|
+
Tracer.current_segment_key
|
266
|
+
end
|
267
|
+
|
268
|
+
def parent_segment_key
|
269
|
+
(::Fiber.current.nr_parent_key if ::Fiber.current.respond_to?(:nr_parent_key)) || (::Thread.current.nr_parent_key if ::Thread.current.respond_to?(:nr_parent_key))
|
270
|
+
end
|
271
|
+
|
272
|
+
def current_segment
|
273
|
+
current_segment_by_thread[current_segment_key] ||
|
274
|
+
current_segment_by_thread[parent_segment_key] ||
|
275
|
+
current_segment_by_thread[@starting_segment_key]
|
276
|
+
end
|
277
|
+
|
278
|
+
def set_current_segment(new_segment)
|
279
|
+
@current_segment_lock.synchronize { current_segment_by_thread[current_segment_key] = new_segment }
|
280
|
+
end
|
281
|
+
|
282
|
+
def remove_current_segment_by_thread_id(id)
|
283
|
+
@current_segment_lock.synchronize { current_segment_by_thread.delete(id) }
|
284
|
+
end
|
285
|
+
|
262
286
|
def distributed_tracer
|
263
287
|
@distributed_tracer ||= DistributedTracer.new(self)
|
264
288
|
end
|
265
289
|
|
266
290
|
def sampled?
|
267
291
|
return unless Agent.config[:'distributed_tracing.enabled']
|
292
|
+
|
268
293
|
if @sampled.nil?
|
269
294
|
@sampled = NewRelic::Agent.instance.adaptive_sampler.sampled?
|
270
295
|
end
|
@@ -272,7 +297,7 @@ module NewRelic
|
|
272
297
|
end
|
273
298
|
|
274
299
|
def trace_id
|
275
|
-
@trace_id ||= NewRelic::Agent::GuidGenerator.generate_guid
|
300
|
+
@trace_id ||= NewRelic::Agent::GuidGenerator.generate_guid(32)
|
276
301
|
end
|
277
302
|
|
278
303
|
def trace_id=(value)
|
@@ -280,7 +305,7 @@ module NewRelic
|
|
280
305
|
end
|
281
306
|
|
282
307
|
def priority
|
283
|
-
@priority ||= (sampled? ? 1.0
|
308
|
+
@priority ||= (sampled? ? rand + 1.0 : rand).round(NewRelic::PRIORITY_PRECISION)
|
284
309
|
end
|
285
310
|
|
286
311
|
def referer
|
@@ -295,7 +320,7 @@ module NewRelic
|
|
295
320
|
@request_attributes && @request_attributes.port
|
296
321
|
end
|
297
322
|
|
298
|
-
# This transaction-local hash may be used as
|
323
|
+
# This transaction-local hash may be used as temporary storage by
|
299
324
|
# instrumentation that needs to pass data from one instrumentation point
|
300
325
|
# to another.
|
301
326
|
#
|
@@ -327,6 +352,7 @@ module NewRelic
|
|
327
352
|
|
328
353
|
def set_default_transaction_name(name, category)
|
329
354
|
return log_frozen_name(name) if name_frozen?
|
355
|
+
|
330
356
|
if influences_transaction_name?(category)
|
331
357
|
self.default_name = name
|
332
358
|
@category = category if category
|
@@ -335,10 +361,9 @@ module NewRelic
|
|
335
361
|
|
336
362
|
def set_overriding_transaction_name(name, category)
|
337
363
|
return log_frozen_name(name) if name_frozen?
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
end
|
364
|
+
|
365
|
+
self.overridden_name = name
|
366
|
+
@category = category if category
|
342
367
|
end
|
343
368
|
|
344
369
|
def log_frozen_name(name)
|
@@ -352,9 +377,9 @@ module NewRelic
|
|
352
377
|
|
353
378
|
def best_name
|
354
379
|
@frozen_name ||
|
355
|
-
|
356
|
-
|
357
|
-
|
380
|
+
@overridden_name ||
|
381
|
+
@default_name ||
|
382
|
+
NewRelic::Agent::UNKNOWN_METRIC
|
358
383
|
end
|
359
384
|
|
360
385
|
# For common interface with Trace
|
@@ -392,7 +417,7 @@ module NewRelic
|
|
392
417
|
@frozen_name ? true : false
|
393
418
|
end
|
394
419
|
|
395
|
-
def start
|
420
|
+
def start(options = {})
|
396
421
|
return if !state.is_execution_traced?
|
397
422
|
|
398
423
|
sql_sampler.on_start_transaction(state, request_path)
|
@@ -401,23 +426,24 @@ module NewRelic
|
|
401
426
|
|
402
427
|
ignore! if user_defined_rules_ignore?
|
403
428
|
|
404
|
-
create_initial_segment
|
405
|
-
Segment.merge_untrusted_agent_attributes \
|
429
|
+
create_initial_segment(options)
|
430
|
+
Segment.merge_untrusted_agent_attributes( \
|
406
431
|
@filtered_params,
|
407
432
|
:'request.parameters',
|
408
433
|
AttributeFilter::DST_SPAN_EVENTS
|
434
|
+
)
|
409
435
|
end
|
410
436
|
|
411
437
|
def initial_segment
|
412
438
|
segments.first
|
413
439
|
end
|
414
440
|
|
415
|
-
def create_initial_segment
|
416
|
-
segment = create_segment
|
441
|
+
def create_initial_segment(options = {})
|
442
|
+
segment = create_segment(@default_name, options)
|
417
443
|
segment.record_scoped_metric = false
|
418
444
|
end
|
419
445
|
|
420
|
-
def create_segment(name)
|
446
|
+
def create_segment(name, options = {})
|
421
447
|
summary_metrics = nil
|
422
448
|
|
423
449
|
if name.start_with?(MIDDLEWARE_PREFIX)
|
@@ -431,6 +457,10 @@ module NewRelic
|
|
431
457
|
unscoped_metrics: summary_metrics
|
432
458
|
)
|
433
459
|
|
460
|
+
# #code_information will glean the code info out of the options hash
|
461
|
+
# if it exists or noop otherwise
|
462
|
+
segment.code_information = options
|
463
|
+
|
434
464
|
segment
|
435
465
|
end
|
436
466
|
|
@@ -440,18 +470,19 @@ module NewRelic
|
|
440
470
|
merge_request_parameters(options[:filtered_params])
|
441
471
|
end
|
442
472
|
|
443
|
-
@ignore_apdex = options[:ignore_apdex] if options.key?
|
444
|
-
@ignore_enduser = options[:ignore_enduser] if options.key?
|
473
|
+
@ignore_apdex = options[:ignore_apdex] if options.key?(:ignore_apdex)
|
474
|
+
@ignore_enduser = options[:ignore_enduser] if options.key?(:ignore_enduser)
|
445
475
|
|
446
476
|
nest_initial_segment if segments.length == 1
|
447
|
-
nested_name = self.class.nested_transaction_name
|
448
|
-
|
477
|
+
nested_name = self.class.nested_transaction_name(options[:transaction_name])
|
478
|
+
|
479
|
+
segment = create_segment(nested_name, options)
|
449
480
|
set_default_transaction_name(options[:transaction_name], category)
|
450
481
|
segment
|
451
482
|
end
|
452
483
|
|
453
484
|
def nest_initial_segment
|
454
|
-
self.initial_segment.name = self.class.nested_transaction_name
|
485
|
+
self.initial_segment.name = self.class.nested_transaction_name(initial_segment.name)
|
455
486
|
initial_segment.record_scoped_metric = true
|
456
487
|
end
|
457
488
|
|
@@ -484,6 +515,7 @@ module NewRelic
|
|
484
515
|
|
485
516
|
def finish
|
486
517
|
return unless state.is_execution_traced?
|
518
|
+
|
487
519
|
@end_time = Process.clock_gettime(Process::CLOCK_REALTIME)
|
488
520
|
@duration = @end_time - @start_time
|
489
521
|
freeze_name_and_execute_if_not_ignored
|
@@ -533,6 +565,7 @@ module NewRelic
|
|
533
565
|
|
534
566
|
record_exceptions
|
535
567
|
record_transaction_event
|
568
|
+
record_log_events
|
536
569
|
merge_metrics
|
537
570
|
send_transaction_finished_event
|
538
571
|
end
|
@@ -540,14 +573,14 @@ module NewRelic
|
|
540
573
|
def assign_segment_dt_attributes
|
541
574
|
dt_payload = distributed_tracer.trace_state_payload || distributed_tracer.distributed_trace_payload
|
542
575
|
parent_attributes = {}
|
543
|
-
DistributedTraceAttributes.copy_parent_attributes
|
544
|
-
parent_attributes.each { |k, v| initial_segment.add_agent_attribute
|
576
|
+
DistributedTraceAttributes.copy_parent_attributes(self, dt_payload, parent_attributes)
|
577
|
+
parent_attributes.each { |k, v| initial_segment.add_agent_attribute(k, v) }
|
545
578
|
end
|
546
579
|
|
547
580
|
def assign_agent_attributes
|
548
581
|
default_destinations = AttributeFilter::DST_TRANSACTION_TRACER |
|
549
|
-
|
550
|
-
|
582
|
+
AttributeFilter::DST_TRANSACTION_EVENTS |
|
583
|
+
AttributeFilter::DST_ERROR_COLLECTOR
|
551
584
|
|
552
585
|
if http_response_code
|
553
586
|
add_agent_attribute(:'http.statusCode', http_response_code, default_destinations)
|
@@ -562,7 +595,7 @@ module NewRelic
|
|
562
595
|
end
|
563
596
|
|
564
597
|
if @request_attributes
|
565
|
-
@request_attributes.assign_agent_attributes
|
598
|
+
@request_attributes.assign_agent_attributes(self)
|
566
599
|
end
|
567
600
|
|
568
601
|
display_host = Agent.config[:'process_host.display_name']
|
@@ -599,11 +632,11 @@ module NewRelic
|
|
599
632
|
# This method returns transport_duration in seconds. Transport duration
|
600
633
|
# is stored in milliseconds on the payload, but it's needed in seconds
|
601
634
|
# for metrics and intrinsics.
|
602
|
-
def calculate_transport_duration
|
635
|
+
def calculate_transport_duration(distributed_trace_payload)
|
603
636
|
return unless distributed_trace_payload
|
604
637
|
|
605
638
|
duration = start_time - (distributed_trace_payload.timestamp / 1000.0)
|
606
|
-
duration
|
639
|
+
[duration, 0].max
|
607
640
|
end
|
608
641
|
|
609
642
|
# The summary metrics recorded by this method all end up with a duration
|
@@ -622,14 +655,14 @@ module NewRelic
|
|
622
655
|
|
623
656
|
def generate_payload
|
624
657
|
@payload = {
|
625
|
-
:name
|
626
|
-
:bucket
|
627
|
-
:start_timestamp
|
628
|
-
:duration
|
629
|
-
:metrics
|
630
|
-
:attributes
|
631
|
-
:error
|
632
|
-
:priority
|
658
|
+
:name => @frozen_name,
|
659
|
+
:bucket => recording_web_transaction? ? :request : :background,
|
660
|
+
:start_timestamp => start_time,
|
661
|
+
:duration => duration,
|
662
|
+
:metrics => @metrics,
|
663
|
+
:attributes => @attributes,
|
664
|
+
:error => false,
|
665
|
+
:priority => priority
|
633
666
|
}
|
634
667
|
|
635
668
|
distributed_tracer.append_payload(@payload)
|
@@ -642,7 +675,7 @@ module NewRelic
|
|
642
675
|
end
|
643
676
|
|
644
677
|
def is_synthetics_request?
|
645
|
-
synthetics_payload
|
678
|
+
!synthetics_payload.nil? && !raw_synthetics_header.nil?
|
646
679
|
end
|
647
680
|
|
648
681
|
def synthetics_version
|
@@ -683,7 +716,6 @@ module NewRelic
|
|
683
716
|
when :apdex_s then APDEX_S
|
684
717
|
when :apdex_t then APDEX_T
|
685
718
|
when :apdex_f then APDEX_F
|
686
|
-
else nil
|
687
719
|
end
|
688
720
|
payload[:apdex_perf_zone] = bucket_str if bucket_str
|
689
721
|
end
|
@@ -692,8 +724,8 @@ module NewRelic
|
|
692
724
|
return unless is_synthetics_request?
|
693
725
|
|
694
726
|
payload[:synthetics_resource_id] = synthetics_resource_id
|
695
|
-
payload[:synthetics_job_id]
|
696
|
-
payload[:synthetics_monitor_id]
|
727
|
+
payload[:synthetics_job_id] = synthetics_job_id
|
728
|
+
payload[:synthetics_monitor_id] = synthetics_monitor_id
|
697
729
|
end
|
698
730
|
|
699
731
|
def merge_metrics
|
@@ -703,35 +735,38 @@ module NewRelic
|
|
703
735
|
def record_exceptions
|
704
736
|
error_recorded = false
|
705
737
|
@exceptions.each do |exception, options|
|
706
|
-
options[:uri]
|
707
|
-
options[:port]
|
708
|
-
options[:metric]
|
738
|
+
options[:uri] ||= request_path if request_path
|
739
|
+
options[:port] = request_port if request_port
|
740
|
+
options[:metric] = best_name
|
709
741
|
options[:attributes] = @attributes
|
710
742
|
|
711
|
-
span_id = options.delete
|
743
|
+
span_id = options.delete(:span_id)
|
712
744
|
error_recorded = !!agent.error_collector.notice_error(exception, options, span_id) || error_recorded
|
713
745
|
end
|
714
746
|
payload[:error] = error_recorded if payload
|
715
747
|
end
|
716
748
|
|
717
749
|
# Do not call this. Invoke the class method instead.
|
718
|
-
def notice_error(error, options={}) # :nodoc:
|
719
|
-
|
750
|
+
def notice_error(error, options = {}) # :nodoc:
|
720
751
|
# Only the last error is kept
|
721
|
-
if
|
722
|
-
|
723
|
-
options[:span_id] =
|
752
|
+
if current_segment
|
753
|
+
current_segment.notice_error(error, expected: options[:expected])
|
754
|
+
options[:span_id] = current_segment.guid
|
724
755
|
end
|
725
756
|
|
726
757
|
if @exceptions[error]
|
727
|
-
@exceptions[error].merge!
|
758
|
+
@exceptions[error].merge!(options)
|
728
759
|
else
|
729
760
|
@exceptions[error] = options
|
730
761
|
end
|
731
762
|
end
|
732
763
|
|
733
764
|
def record_transaction_event
|
734
|
-
agent.transaction_event_recorder.record
|
765
|
+
agent.transaction_event_recorder.record(payload)
|
766
|
+
end
|
767
|
+
|
768
|
+
def record_log_events
|
769
|
+
agent.log_event_aggregator.record_batch(self, @logs.to_a)
|
735
770
|
end
|
736
771
|
|
737
772
|
def queue_time
|
@@ -771,8 +806,8 @@ module NewRelic
|
|
771
806
|
record_apdex_metrics(APDEX_METRIC, APDEX_TXN_METRIC_PREFIX, apdex_t)
|
772
807
|
else
|
773
808
|
record_apdex_metrics(APDEX_OTHER_METRIC,
|
774
|
-
|
775
|
-
|
809
|
+
APDEX_OTHER_TXN_METRIC_PREFIX,
|
810
|
+
transaction_specific_apdex_t)
|
776
811
|
end
|
777
812
|
end
|
778
813
|
end
|
@@ -780,9 +815,9 @@ module NewRelic
|
|
780
815
|
def record_apdex_metrics(rollup_metric, transaction_prefix, current_apdex_t)
|
781
816
|
return unless current_apdex_t
|
782
817
|
|
783
|
-
total_duration
|
818
|
+
total_duration = end_time - apdex_start
|
784
819
|
apdex_bucket_global = apdex_bucket(total_duration, current_apdex_t)
|
785
|
-
apdex_bucket_txn
|
820
|
+
apdex_bucket_txn = apdex_bucket(duration, current_apdex_t)
|
786
821
|
|
787
822
|
@metrics.record_unscoped(rollup_metric, apdex_bucket_global, current_apdex_t)
|
788
823
|
@metrics.record_unscoped(APDEX_ALL_METRIC, apdex_bucket_global, current_apdex_t)
|
@@ -800,7 +835,7 @@ module NewRelic
|
|
800
835
|
end
|
801
836
|
|
802
837
|
def threshold
|
803
|
-
|
838
|
+
source_class = Agent.config.source(:'transaction_tracer.transaction_threshold').class
|
804
839
|
if source_class == Configuration::DefaultSource
|
805
840
|
apdex_t * 4
|
806
841
|
else
|
@@ -808,7 +843,7 @@ module NewRelic
|
|
808
843
|
end
|
809
844
|
end
|
810
845
|
|
811
|
-
def with_database_metric_name(model, method, product=nil)
|
846
|
+
def with_database_metric_name(model, method, product = nil)
|
812
847
|
previous = self.instrumentation_state[:datastore_override]
|
813
848
|
model_name = case model
|
814
849
|
when Class
|
@@ -817,7 +852,7 @@ module NewRelic
|
|
817
852
|
model
|
818
853
|
else
|
819
854
|
model.to_s
|
820
|
-
|
855
|
+
end
|
821
856
|
self.instrumentation_state[:datastore_override] = [method, model_name, product]
|
822
857
|
yield
|
823
858
|
ensure
|
@@ -828,6 +863,10 @@ module NewRelic
|
|
828
863
|
attributes.merge_custom_attributes(p)
|
829
864
|
end
|
830
865
|
|
866
|
+
def add_log_event(event)
|
867
|
+
logs.append(event: event)
|
868
|
+
end
|
869
|
+
|
831
870
|
def recording_web_transaction?
|
832
871
|
web_category?(@category)
|
833
872
|
end
|
@@ -846,11 +885,13 @@ module NewRelic
|
|
846
885
|
|
847
886
|
def normal_cpu_burn
|
848
887
|
return unless @process_cpu_start
|
888
|
+
|
849
889
|
process_cpu - @process_cpu_start
|
850
890
|
end
|
851
891
|
|
852
892
|
def jruby_cpu_burn
|
853
893
|
return unless @jruby_cpu_start
|
894
|
+
|
854
895
|
jruby_cpu_time - @jruby_cpu_start
|
855
896
|
end
|
856
897
|
|
@@ -886,18 +927,21 @@ module NewRelic
|
|
886
927
|
|
887
928
|
def process_cpu
|
888
929
|
return nil if defined? JRuby
|
930
|
+
|
889
931
|
p = Process.times
|
890
932
|
p.stime + p.utime
|
891
933
|
end
|
892
934
|
|
893
935
|
def jruby_cpu_time
|
894
936
|
return nil unless @@java_classes_loaded
|
937
|
+
|
895
938
|
threadMBean = Java::JavaLangManagement::ManagementFactory.getThreadMXBean()
|
896
939
|
|
897
940
|
return nil unless threadMBean.isCurrentThreadCpuTimeSupported
|
898
|
-
java_utime = threadMBean.getCurrentThreadUserTime() # ns
|
899
941
|
|
900
|
-
|
942
|
+
java_utime = threadMBean.getCurrentThreadUserTime() # ns
|
943
|
+
|
944
|
+
-1 == java_utime ? 0.0 : java_utime / 1e9
|
901
945
|
rescue => e
|
902
946
|
::NewRelic::Agent.logger.log_once(:warn, :jruby_cpu_time, JRUBY_CPU_TIME_ERROR, e)
|
903
947
|
::NewRelic::Agent.logger.debug(JRUBY_CPU_TIME_ERROR, e)
|