newrelic_rpm 6.3.0.355 → 9.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +15 -1
- data/.rubocop.yml +1845 -0
- data/.rubocop_todo.yml +61 -0
- data/.simplecov +16 -0
- data/.snyk +11 -0
- data/.yardopts +1 -0
- data/Brewfile +13 -0
- data/CHANGELOG.md +4102 -2416
- data/CONTRIBUTING.md +132 -19
- data/DOCKER.md +167 -0
- data/Dockerfile +10 -0
- data/Gemfile +5 -2
- data/Guardfile +25 -6
- data/LICENSE +202 -38
- data/README.md +86 -87
- data/Rakefile +32 -32
- data/THIRD_PARTY_NOTICES.md +28 -0
- data/Thorfile +5 -0
- data/bin/newrelic +4 -2
- data/bin/newrelic_cmd +2 -0
- data/bin/nrdebug +86 -63
- 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 +115 -882
- data/lib/new_relic/agent/agent_helpers/connect.rb +222 -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 +175 -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 +30 -22
- data/lib/new_relic/agent/attribute_filter.rb +70 -53
- data/lib/new_relic/agent/attribute_processing.rb +10 -10
- data/lib/new_relic/agent/attributes.rb +153 -0
- data/lib/new_relic/agent/audit_logger.rb +22 -7
- data/lib/new_relic/agent/autostart.rb +34 -28
- data/lib/new_relic/agent/chained_call.rb +2 -2
- data/lib/new_relic/agent/commands/agent_command.rb +5 -5
- data/lib/new_relic/agent/commands/agent_command_router.rb +18 -35
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +17 -15
- data/lib/new_relic/agent/configuration/default_source.rb +1456 -1100
- data/lib/new_relic/agent/configuration/dotted_hash.rb +7 -6
- data/lib/new_relic/agent/configuration/environment_source.rb +17 -13
- data/lib/new_relic/agent/configuration/event_harvest_config.rb +68 -0
- data/lib/new_relic/agent/configuration/high_security_source.rb +12 -12
- data/lib/new_relic/agent/configuration/manager.rb +97 -80
- 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 +93 -96
- data/lib/new_relic/agent/configuration/server_source.rb +66 -40
- data/lib/new_relic/agent/configuration/yaml_source.rb +44 -15
- data/lib/new_relic/agent/configuration.rb +2 -2
- data/lib/new_relic/agent/connect/request_builder.rb +25 -27
- data/lib/new_relic/agent/connect/response_handler.rb +7 -10
- data/lib/new_relic/agent/custom_event_aggregator.rb +16 -16
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +6 -7
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +18 -17
- data/lib/new_relic/agent/database/obfuscator.rb +5 -5
- data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +4 -4
- data/lib/new_relic/agent/database.rb +47 -56
- data/lib/new_relic/agent/database_adapter.rb +35 -0
- data/lib/new_relic/agent/datastores/metric_helper.rb +22 -23
- data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +9 -8
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +18 -22
- 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 +10 -16
- data/lib/new_relic/agent/datastores.rb +14 -16
- data/lib/new_relic/agent/deprecator.rb +2 -2
- data/lib/new_relic/agent/{cross_app_payload.rb → distributed_tracing/cross_app_payload.rb} +13 -12
- data/lib/new_relic/agent/{cross_app_tracing.rb → distributed_tracing/cross_app_tracing.rb} +90 -70
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +84 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +75 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +163 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +38 -0
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +245 -0
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +127 -0
- data/lib/new_relic/agent/distributed_tracing.rb +113 -32
- data/lib/new_relic/agent/encoding_normalizer.rb +5 -3
- data/lib/new_relic/agent/error_collector.rb +129 -65
- data/lib/new_relic/agent/error_event_aggregator.rb +10 -8
- data/lib/new_relic/agent/error_filter.rb +174 -0
- data/lib/new_relic/agent/error_trace_aggregator.rb +11 -8
- data/lib/new_relic/agent/event_aggregator.rb +43 -48
- 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 +28 -26
- data/lib/new_relic/agent/external.rb +19 -52
- data/lib/new_relic/agent/guid_generator.rb +30 -0
- data/lib/new_relic/agent/harvester.rb +6 -9
- data/lib/new_relic/agent/heap.rb +9 -10
- data/lib/new_relic/agent/hostname.rb +22 -9
- data/lib/new_relic/agent/http_clients/abstract.rb +69 -0
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +30 -26
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +37 -21
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +22 -23
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +18 -17
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +28 -8
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +17 -17
- data/lib/new_relic/agent/http_clients/uri_util.rb +13 -14
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +22 -55
- data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +42 -0
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +60 -72
- 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 +86 -62
- data/lib/new_relic/agent/instrumentation/active_job.rb +34 -14
- data/lib/new_relic/agent/instrumentation/active_job_subscriber.rb +41 -0
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +21 -7
- data/lib/new_relic/agent/instrumentation/active_record.rb +97 -47
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +97 -73
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +70 -76
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +36 -12
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +65 -66
- data/lib/new_relic/agent/instrumentation/active_storage.rb +8 -4
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +11 -32
- 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 +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 +14 -138
- 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 +75 -63
- 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 +16 -201
- data/lib/new_relic/agent/instrumentation/custom_events.rb +12 -0
- data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +38 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +36 -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 +31 -52
- data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +29 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +67 -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 +10 -8
- data/lib/new_relic/agent/instrumentation/excon.rb +29 -31
- 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 +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 +17 -124
- data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +97 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +90 -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 +12 -32
- 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 +6 -7
- 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 +60 -125
- 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 +103 -0
- data/lib/new_relic/agent/instrumentation/memcache.rb +57 -71
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +16 -15
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +11 -11
- data/lib/new_relic/agent/instrumentation/mongo.rb +7 -132
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +53 -17
- 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 +142 -0
- 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 +22 -57
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +5 -5
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +10 -10
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +18 -6
- 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/rake/chain.rb +20 -0
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +142 -0
- data/lib/new_relic/agent/instrumentation/rake/prepend.rb +14 -0
- data/lib/new_relic/agent/instrumentation/rake.rb +18 -158
- 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 +94 -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 +20 -103
- 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 -41
- data/lib/new_relic/agent/instrumentation/sequel.rb +17 -20
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +13 -13
- 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 +30 -46
- 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 +126 -0
- data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +33 -0
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +4 -4
- data/lib/new_relic/agent/instrumentation/sinatra.rb +35 -165
- 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 +24 -0
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +42 -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 +14 -76
- 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 +60 -49
- 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 +182 -0
- data/lib/new_relic/agent/memory_logger.rb +3 -3
- data/lib/new_relic/agent/messaging.rb +74 -156
- data/lib/new_relic/agent/method_tracer.rb +157 -150
- data/lib/new_relic/agent/method_tracer_helpers.rb +89 -12
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +117 -0
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +28 -0
- data/lib/new_relic/agent/{inbound_request_monitor.rb → monitors/inbound_request_monitor.rb} +5 -6
- data/lib/new_relic/agent/{synthetics_monitor.rb → monitors/synthetics_monitor.rb} +8 -13
- data/lib/new_relic/agent/monitors.rb +26 -0
- data/lib/new_relic/agent/new_relic_service/encoders.rb +8 -8
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +7 -7
- data/lib/new_relic/agent/new_relic_service/marshaller.rb +3 -3
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +5 -5
- data/lib/new_relic/agent/new_relic_service.rb +273 -202
- data/lib/new_relic/agent/noticeable_error.rb +19 -0
- 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 +30 -16
- data/lib/new_relic/agent/payload_metric_mapping.rb +10 -11
- data/lib/new_relic/agent/pipe_channel_manager.rb +34 -23
- data/lib/new_relic/agent/pipe_service.rb +14 -9
- data/lib/new_relic/agent/prepend_supportability.rb +3 -3
- data/lib/new_relic/agent/priority_sampled_buffer.rb +17 -15
- data/lib/new_relic/agent/rules_engine/replacement_rule.rb +12 -12
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +13 -14
- data/lib/new_relic/agent/rules_engine.rb +6 -5
- data/lib/new_relic/agent/sampler.rb +6 -6
- data/lib/new_relic/agent/sampler_collection.rb +5 -6
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +9 -8
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +21 -18
- data/lib/new_relic/agent/samplers/memory_sampler.rb +33 -22
- data/lib/new_relic/agent/samplers/object_sampler.rb +3 -3
- data/lib/new_relic/agent/samplers/vm_sampler.rb +22 -20
- data/lib/new_relic/agent/span_event_aggregator.rb +17 -19
- data/lib/new_relic/agent/span_event_primitive.rb +118 -58
- data/lib/new_relic/agent/sql_sampler.rb +23 -23
- data/lib/new_relic/agent/stats.rb +80 -43
- 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 +9 -10
- data/lib/new_relic/agent/system_info.rb +97 -68
- 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 +21 -25
- data/lib/new_relic/agent/threading/thread_profile.rb +32 -46
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +3 -3
- data/lib/new_relic/agent/tracer.rb +159 -107
- data/lib/new_relic/agent/transaction/abstract_segment.rb +147 -51
- data/lib/new_relic/agent/transaction/datastore_segment.rb +23 -19
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +185 -0
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +73 -164
- data/lib/new_relic/agent/transaction/external_request_segment.rb +67 -64
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +34 -46
- data/lib/new_relic/agent/transaction/request_attributes.rb +40 -40
- data/lib/new_relic/agent/transaction/segment.rb +46 -10
- data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +2 -4
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +3 -3
- data/lib/new_relic/agent/transaction/trace.rb +22 -25
- data/lib/new_relic/agent/transaction/trace_builder.rb +11 -12
- data/lib/new_relic/agent/transaction/trace_context.rb +168 -0
- data/lib/new_relic/agent/transaction/trace_node.rb +36 -32
- data/lib/new_relic/agent/transaction/tracing.rb +16 -13
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +7 -7
- data/lib/new_relic/agent/transaction.rb +248 -205
- data/lib/new_relic/agent/transaction_error_primitive.rb +34 -37
- data/lib/new_relic/agent/transaction_event_aggregator.rb +17 -17
- data/lib/new_relic/agent/transaction_event_primitive.rb +44 -56
- 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 +9 -14
- data/lib/new_relic/agent/transaction_time_aggregator.rb +33 -28
- data/lib/new_relic/agent/utilization/aws.rb +35 -5
- data/lib/new_relic/agent/utilization/azure.rb +7 -7
- data/lib/new_relic/agent/utilization/gcp.rb +11 -11
- data/lib/new_relic/agent/utilization/pcf.rb +7 -6
- data/lib/new_relic/agent/utilization/vendor.rb +45 -30
- 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 +4 -4
- data/lib/new_relic/agent/vm/mri_vm.rb +54 -26
- 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 +219 -89
- data/lib/new_relic/cli/command.rb +22 -24
- data/lib/new_relic/cli/commands/deployments.rb +102 -52
- data/lib/new_relic/cli/commands/install.rb +33 -35
- data/lib/new_relic/coerce.rb +42 -15
- data/lib/new_relic/collection_helper.rb +51 -49
- data/lib/new_relic/constants.rb +38 -0
- data/lib/new_relic/control/class_methods.rb +6 -6
- data/lib/new_relic/control/frameworks/external.rb +3 -3
- data/lib/new_relic/control/frameworks/rails.rb +50 -32
- 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 +33 -42
- 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 -31
- data/lib/new_relic/environment_report.rb +42 -36
- data/lib/new_relic/helper.rb +50 -8
- data/lib/new_relic/language_support.rb +31 -7
- data/lib/new_relic/latest_changes.rb +11 -10
- data/lib/new_relic/local_environment.rb +23 -27
- 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 +60 -45
- 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 +136 -115
- data/lib/new_relic/rack.rb +2 -2
- data/lib/new_relic/recipes/capistrano3.rb +5 -63
- data/lib/new_relic/recipes/capistrano_legacy.rb +25 -28
- 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 +23 -7
- data/lib/new_relic/traced_thread.rb +39 -0
- data/lib/new_relic/version.rb +7 -18
- data/lib/newrelic_rpm.rb +21 -34
- data/lib/sequel/extensions/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +18 -21
- data/lib/sequel/plugins/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +10 -16
- data/lib/tasks/all.rb +4 -4
- data/lib/tasks/config.rake +24 -120
- data/lib/tasks/coverage_report.rake +28 -0
- data/lib/tasks/helpers/config.html.erb +21 -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 +8 -4
- 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 +23 -9
- data/lib/tasks/newrelic.rb +3 -2
- data/lib/tasks/tests.rake +17 -17
- data/newrelic.yml +672 -3
- data/newrelic_rpm.gemspec +50 -34
- data/recipes/newrelic.rb +3 -3
- data/test/agent_helper.rb +414 -98
- metadata +302 -93
- data/.travis.yml +0 -170
- data/bin/mongrel_rpm +0 -33
- data/cert/cacert.pem +0 -1177
- data/lib/new_relic/agent/commands/xray_session.rb +0 -55
- data/lib/new_relic/agent/commands/xray_session_collection.rb +0 -161
- data/lib/new_relic/agent/configuration/event_data.rb +0 -39
- data/lib/new_relic/agent/cross_app_monitor.rb +0 -110
- 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/distributed_trace_monitor.rb +0 -40
- data/lib/new_relic/agent/distributed_trace_payload.rb +0 -242
- data/lib/new_relic/agent/http_clients/abstract_request.rb +0 -31
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +0 -74
- data/lib/new_relic/agent/instrumentation/authlogic.rb +0 -25
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +0 -202
- data/lib/new_relic/agent/instrumentation/evented_subscriber.rb +0 -135
- data/lib/new_relic/agent/instrumentation/excon/connection.rb +0 -46
- data/lib/new_relic/agent/instrumentation/http.rb +0 -46
- 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 -50
- 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/instrumentation/rainbows_instrumentation.rb +0 -26
- data/lib/new_relic/agent/instrumentation/sunspot.rb +0 -33
- data/lib/new_relic/agent/range_extensions.rb +0 -47
- data/lib/new_relic/agent/supported_versions.rb +0 -275
- data/lib/new_relic/agent/transaction/attributes.rb +0 -154
- data/lib/new_relic/agent/transaction/xray_sample_buffer.rb +0 -64
- 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/lib/tasks/versions.html.erb +0 -28
- data/lib/tasks/versions.postface.html +0 -8
- data/lib/tasks/versions.preface.html +0 -9
- data/lib/tasks/versions.rake +0 -65
- data/lib/tasks/versions.txt.erb +0 -14
- /data/lib/tasks/{config.text.erb → helpers/config.text.erb} +0 -0
@@ -1,17 +1,17 @@
|
|
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.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'new_relic/agent/instrumentation/queue_time'
|
6
6
|
require 'new_relic/agent/transaction_metrics'
|
7
7
|
require 'new_relic/agent/method_tracer_helpers'
|
8
|
-
require 'new_relic/agent/
|
8
|
+
require 'new_relic/agent/attributes'
|
9
9
|
require 'new_relic/agent/transaction/request_attributes'
|
10
10
|
require 'new_relic/agent/transaction/tracing'
|
11
|
-
require 'new_relic/agent/transaction/
|
12
|
-
require 'new_relic/agent/cross_app_tracing'
|
11
|
+
require 'new_relic/agent/transaction/distributed_tracer'
|
13
12
|
require 'new_relic/agent/transaction_time_aggregator'
|
14
13
|
require 'new_relic/agent/deprecator'
|
14
|
+
require 'new_relic/agent/guid_generator'
|
15
15
|
|
16
16
|
module NewRelic
|
17
17
|
module Agent
|
@@ -21,29 +21,37 @@ module NewRelic
|
|
21
21
|
# @api public
|
22
22
|
class Transaction
|
23
23
|
include Tracing
|
24
|
-
include DistributedTracing
|
25
|
-
include CrossAppTracing
|
26
24
|
|
27
25
|
# for nested transactions
|
28
|
-
|
29
|
-
CONTROLLER_PREFIX
|
30
|
-
MIDDLEWARE_PREFIX
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
WEB_TRANSACTION_CATEGORIES
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
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/'
|
52
|
+
APDEX_OTHER_TXN_METRIC_PREFIX = 'ApdexOther/Transaction/'
|
53
|
+
|
54
|
+
JRUBY_CPU_TIME_ERROR = 'Error calculating JRuby CPU Time'
|
47
55
|
|
48
56
|
# A Time instance for the start time, never nil
|
49
57
|
attr_accessor :start_time
|
@@ -54,26 +62,28 @@ module NewRelic
|
|
54
62
|
attr_accessor :apdex_start
|
55
63
|
|
56
64
|
attr_accessor :exceptions,
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
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
|
63
72
|
|
64
73
|
attr_reader :guid,
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
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
|
74
84
|
|
75
85
|
attr_writer :sampled,
|
76
|
-
|
86
|
+
:priority
|
77
87
|
|
78
88
|
# Populated with the trace sample once this transaction is completed.
|
79
89
|
attr_reader :transaction_trace
|
@@ -86,13 +96,13 @@ module NewRelic
|
|
86
96
|
Tracer.current_transaction
|
87
97
|
end
|
88
98
|
|
89
|
-
def self.set_default_transaction_name(partial_name, category = nil) #THREAD_LOCAL_ACCESS
|
90
|
-
txn
|
99
|
+
def self.set_default_transaction_name(partial_name, category = nil) # THREAD_LOCAL_ACCESS
|
100
|
+
txn = tl_current
|
91
101
|
name = name_from_partial(partial_name, category || txn.category)
|
92
102
|
txn.set_default_transaction_name(name, category)
|
93
103
|
end
|
94
104
|
|
95
|
-
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
|
96
106
|
txn = tl_current
|
97
107
|
return unless txn
|
98
108
|
|
@@ -105,55 +115,31 @@ module NewRelic
|
|
105
115
|
"#{namer.prefix_for_category(self, category)}#{partial_name}"
|
106
116
|
end
|
107
117
|
|
108
|
-
def self.wrap(state, name, category, options = {})
|
109
|
-
Deprecator.deprecate 'Transaction.wrap',
|
110
|
-
'Tracer#in_transaction'
|
111
|
-
|
112
|
-
finishable = Tracer.start_transaction_or_segment(
|
113
|
-
name: name,
|
114
|
-
category: category,
|
115
|
-
options: options
|
116
|
-
)
|
117
|
-
|
118
|
-
begin
|
119
|
-
# We shouldn't raise from Transaction.start, but only wrap the yield
|
120
|
-
# to be absolutely sure we don't report agent problems as app errors
|
121
|
-
yield
|
122
|
-
rescue => e
|
123
|
-
Transaction.notice_error(e)
|
124
|
-
raise e
|
125
|
-
ensure
|
126
|
-
finishable.finish if finishable
|
127
|
-
end
|
128
|
-
end
|
129
|
-
|
130
118
|
def self.start_new_transaction(state, category, options)
|
131
119
|
txn = Transaction.new(category, options)
|
132
120
|
state.reset(txn)
|
133
|
-
txn.
|
134
|
-
txn.start
|
121
|
+
txn.start(options)
|
135
122
|
txn
|
136
123
|
end
|
137
124
|
|
138
125
|
def self.nested_transaction_name(name)
|
139
|
-
if name.start_with?(CONTROLLER_PREFIX
|
140
|
-
"#{
|
126
|
+
if name.start_with?(CONTROLLER_PREFIX, OTHER_TRANSACTION_PREFIX)
|
127
|
+
"#{NESTED_TRANSACTION_PREFIX}#{name}"
|
141
128
|
else
|
142
129
|
name
|
143
130
|
end
|
144
131
|
end
|
145
132
|
|
146
|
-
#
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
133
|
+
# discards the currently saved transaction information
|
134
|
+
def self.abort_transaction!
|
135
|
+
if txn = Tracer.current_transaction
|
136
|
+
txn.abort_transaction!
|
137
|
+
end
|
151
138
|
end
|
152
139
|
|
153
140
|
# See NewRelic::Agent.notice_error for options and commentary
|
154
|
-
def self.notice_error(e, options={})
|
155
|
-
txn = Tracer.current_transaction
|
156
|
-
if txn
|
141
|
+
def self.notice_error(e, options = {})
|
142
|
+
if txn = Tracer.current_transaction
|
157
143
|
txn.notice_error(e, options)
|
158
144
|
elsif NewRelic::Agent.instance
|
159
145
|
NewRelic::Agent.instance.error_collector.notice_error(e, options)
|
@@ -165,11 +151,11 @@ module NewRelic
|
|
165
151
|
#
|
166
152
|
# @api public
|
167
153
|
#
|
168
|
-
def self.recording_web_transaction? #THREAD_LOCAL_ACCESS
|
154
|
+
def self.recording_web_transaction? # THREAD_LOCAL_ACCESS
|
169
155
|
NewRelic::Agent.record_api_supportability_metric(:recording_web_transaction?)
|
170
156
|
|
171
157
|
txn = tl_current
|
172
|
-
txn
|
158
|
+
txn&.recording_web_transaction?
|
173
159
|
end
|
174
160
|
|
175
161
|
def self.apdex_bucket(duration, failed, apdex_t)
|
@@ -178,7 +164,7 @@ module NewRelic
|
|
178
164
|
:apdex_f
|
179
165
|
when duration <= apdex_t
|
180
166
|
:apdex_s
|
181
|
-
when duration <=
|
167
|
+
when duration <= apdex_t * 4
|
182
168
|
:apdex_t
|
183
169
|
else
|
184
170
|
:apdex_f
|
@@ -189,24 +175,27 @@ module NewRelic
|
|
189
175
|
if txn = tl_current
|
190
176
|
txn.add_agent_attribute(key, value, default_destinations)
|
191
177
|
else
|
192
|
-
NewRelic::Agent.logger.debug
|
178
|
+
NewRelic::Agent.logger.debug("Attempted to add agent attribute: #{key} without transaction")
|
193
179
|
end
|
194
180
|
end
|
195
181
|
|
196
182
|
def add_agent_attribute(key, value, default_destinations)
|
197
183
|
@attributes.add_agent_attribute(key, value, default_destinations)
|
184
|
+
# the following line needs else branch coverage
|
185
|
+
current_segment.add_agent_attribute(key, value) if current_segment # rubocop:disable Style/SafeNavigation
|
198
186
|
end
|
199
187
|
|
200
188
|
def self.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
201
189
|
if txn = tl_current
|
202
190
|
txn.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
203
191
|
else
|
204
|
-
NewRelic::Agent.logger.debug
|
192
|
+
NewRelic::Agent.logger.debug('Attempted to merge untrusted attributes without transaction')
|
205
193
|
end
|
206
194
|
end
|
207
195
|
|
208
196
|
def merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
209
197
|
@attributes.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
198
|
+
current_segment&.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
210
199
|
end
|
211
200
|
|
212
201
|
@@java_classes_loaded = false
|
@@ -214,26 +203,28 @@ module NewRelic
|
|
214
203
|
if defined? JRuby
|
215
204
|
begin
|
216
205
|
require 'java'
|
217
|
-
java_import
|
218
|
-
java_import
|
206
|
+
java_import('java.lang.management.ManagementFactory')
|
207
|
+
java_import('com.sun.management.OperatingSystemMXBean')
|
219
208
|
@@java_classes_loaded = true
|
220
209
|
rescue
|
221
210
|
end
|
222
211
|
end
|
223
212
|
|
224
|
-
def initialize(category, options)
|
213
|
+
def initialize(category, options) # rubocop:disable Metrics/AbcSize
|
225
214
|
@nesting_max_depth = 0
|
226
|
-
@
|
215
|
+
@current_segment_by_thread = {}
|
216
|
+
@current_segment_lock = Mutex.new
|
227
217
|
@segments = []
|
228
218
|
|
229
219
|
self.default_name = options[:transaction_name]
|
230
|
-
@overridden_name
|
231
|
-
@frozen_name
|
220
|
+
@overridden_name = nil
|
221
|
+
@frozen_name = nil
|
232
222
|
|
233
223
|
@category = category
|
234
|
-
@start_time =
|
224
|
+
@start_time = Process.clock_gettime(Process::CLOCK_REALTIME)
|
235
225
|
@end_time = nil
|
236
226
|
@duration = nil
|
227
|
+
|
237
228
|
@apdex_start = options[:apdex_start_time] || @start_time
|
238
229
|
@jruby_cpu_start = jruby_cpu_time
|
239
230
|
@process_cpu_start = process_cpu
|
@@ -242,7 +233,8 @@ module NewRelic
|
|
242
233
|
|
243
234
|
@exceptions = {}
|
244
235
|
@metrics = TransactionMetrics.new
|
245
|
-
@
|
236
|
+
@logs = PrioritySampledBuffer.new(NewRelic::Agent.instance.log_event_aggregator.capacity)
|
237
|
+
@guid = NewRelic::Agent::GuidGenerator.generate_guid
|
246
238
|
|
247
239
|
@ignore_this_transaction = false
|
248
240
|
@ignore_apdex = options.fetch(:ignore_apdex, false)
|
@@ -253,47 +245,83 @@ module NewRelic
|
|
253
245
|
@priority = nil
|
254
246
|
|
255
247
|
@starting_thread_id = Thread.current.object_id
|
248
|
+
@starting_segment_key = current_segment_key
|
256
249
|
|
257
250
|
@attributes = Attributes.new(NewRelic::Agent.instance.attribute_filter)
|
258
251
|
|
259
252
|
merge_request_parameters(@filtered_params)
|
260
253
|
|
261
254
|
if request = options[:request]
|
262
|
-
@request_attributes = RequestAttributes.new
|
255
|
+
@request_attributes = RequestAttributes.new(request)
|
263
256
|
else
|
264
257
|
@request_attributes = nil
|
265
258
|
end
|
266
259
|
end
|
267
260
|
|
261
|
+
def state
|
262
|
+
NewRelic::Agent::Tracer.state
|
263
|
+
end
|
264
|
+
|
265
|
+
def current_segment_key
|
266
|
+
Tracer.current_segment_key
|
267
|
+
end
|
268
|
+
|
269
|
+
def parent_segment_key
|
270
|
+
(::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))
|
271
|
+
end
|
272
|
+
|
273
|
+
def current_segment
|
274
|
+
current_segment_by_thread[current_segment_key] ||
|
275
|
+
current_segment_by_thread[parent_segment_key] ||
|
276
|
+
current_segment_by_thread[@starting_segment_key]
|
277
|
+
end
|
278
|
+
|
279
|
+
def set_current_segment(new_segment)
|
280
|
+
@current_segment_lock.synchronize { current_segment_by_thread[current_segment_key] = new_segment }
|
281
|
+
end
|
282
|
+
|
283
|
+
def remove_current_segment_by_thread_id(id)
|
284
|
+
@current_segment_lock.synchronize { current_segment_by_thread.delete(id) }
|
285
|
+
end
|
286
|
+
|
287
|
+
def distributed_tracer
|
288
|
+
@distributed_tracer ||= DistributedTracer.new(self)
|
289
|
+
end
|
290
|
+
|
268
291
|
def sampled?
|
269
292
|
return unless Agent.config[:'distributed_tracing.enabled']
|
293
|
+
|
270
294
|
if @sampled.nil?
|
271
295
|
@sampled = NewRelic::Agent.instance.adaptive_sampler.sampled?
|
272
296
|
end
|
273
297
|
@sampled
|
274
298
|
end
|
275
299
|
|
300
|
+
def trace_id
|
301
|
+
@trace_id ||= NewRelic::Agent::GuidGenerator.generate_guid(32)
|
302
|
+
end
|
303
|
+
|
304
|
+
def trace_id=(value)
|
305
|
+
@trace_id = value
|
306
|
+
end
|
307
|
+
|
276
308
|
def priority
|
277
|
-
|
278
|
-
@priority = rand.round(6)
|
279
|
-
@priority += 1 if sampled?
|
280
|
-
end
|
281
|
-
@priority
|
309
|
+
@priority ||= (sampled? ? rand + 1.0 : rand).round(NewRelic::PRIORITY_PRECISION)
|
282
310
|
end
|
283
311
|
|
284
312
|
def referer
|
285
|
-
@request_attributes
|
313
|
+
@request_attributes&.referer
|
286
314
|
end
|
287
315
|
|
288
316
|
def request_path
|
289
|
-
@request_attributes
|
317
|
+
@request_attributes&.request_path
|
290
318
|
end
|
291
319
|
|
292
320
|
def request_port
|
293
|
-
@request_attributes
|
321
|
+
@request_attributes&.port
|
294
322
|
end
|
295
323
|
|
296
|
-
# This transaction-local hash may be used as
|
324
|
+
# This transaction-local hash may be used as temporary storage by
|
297
325
|
# instrumentation that needs to pass data from one instrumentation point
|
298
326
|
# to another.
|
299
327
|
#
|
@@ -325,6 +353,7 @@ module NewRelic
|
|
325
353
|
|
326
354
|
def set_default_transaction_name(name, category)
|
327
355
|
return log_frozen_name(name) if name_frozen?
|
356
|
+
|
328
357
|
if influences_transaction_name?(category)
|
329
358
|
self.default_name = name
|
330
359
|
@category = category if category
|
@@ -333,10 +362,9 @@ module NewRelic
|
|
333
362
|
|
334
363
|
def set_overriding_transaction_name(name, category)
|
335
364
|
return log_frozen_name(name) if name_frozen?
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
end
|
365
|
+
|
366
|
+
self.overridden_name = name
|
367
|
+
@category = category if category
|
340
368
|
end
|
341
369
|
|
342
370
|
def log_frozen_name(name)
|
@@ -349,14 +377,14 @@ module NewRelic
|
|
349
377
|
end
|
350
378
|
|
351
379
|
def best_name
|
352
|
-
@frozen_name
|
353
|
-
@
|
380
|
+
@frozen_name ||
|
381
|
+
@overridden_name ||
|
382
|
+
@default_name ||
|
383
|
+
NewRelic::Agent::UNKNOWN_METRIC
|
354
384
|
end
|
355
385
|
|
356
386
|
# For common interface with Trace
|
357
387
|
alias_method :transaction_name, :best_name
|
358
|
-
|
359
|
-
attr_accessor :xray_session_id
|
360
388
|
# End common interface
|
361
389
|
|
362
390
|
def promoted_transaction_name(name)
|
@@ -390,28 +418,33 @@ module NewRelic
|
|
390
418
|
@frozen_name ? true : false
|
391
419
|
end
|
392
420
|
|
393
|
-
def start
|
421
|
+
def start(options = {})
|
394
422
|
return if !state.is_execution_traced?
|
395
423
|
|
396
|
-
sql_sampler.on_start_transaction(state,
|
424
|
+
sql_sampler.on_start_transaction(state, request_path)
|
397
425
|
NewRelic::Agent.instance.events.notify(:start_transaction)
|
398
426
|
NewRelic::Agent::TransactionTimeAggregator.transaction_start(start_time)
|
399
427
|
|
400
428
|
ignore! if user_defined_rules_ignore?
|
401
429
|
|
402
|
-
create_initial_segment
|
430
|
+
create_initial_segment(options)
|
431
|
+
Segment.merge_untrusted_agent_attributes( \
|
432
|
+
@filtered_params,
|
433
|
+
:'request.parameters',
|
434
|
+
AttributeFilter::DST_SPAN_EVENTS
|
435
|
+
)
|
403
436
|
end
|
404
437
|
|
405
438
|
def initial_segment
|
406
439
|
segments.first
|
407
440
|
end
|
408
441
|
|
409
|
-
def create_initial_segment
|
410
|
-
segment = create_segment
|
442
|
+
def create_initial_segment(options = {})
|
443
|
+
segment = create_segment(@default_name, options)
|
411
444
|
segment.record_scoped_metric = false
|
412
445
|
end
|
413
446
|
|
414
|
-
def create_segment(name)
|
447
|
+
def create_segment(name, options = {})
|
415
448
|
summary_metrics = nil
|
416
449
|
|
417
450
|
if name.start_with?(MIDDLEWARE_PREFIX)
|
@@ -425,6 +458,10 @@ module NewRelic
|
|
425
458
|
unscoped_metrics: summary_metrics
|
426
459
|
)
|
427
460
|
|
461
|
+
# #code_information will glean the code info out of the options hash
|
462
|
+
# if it exists or noop otherwise
|
463
|
+
segment.code_information = options
|
464
|
+
|
428
465
|
segment
|
429
466
|
end
|
430
467
|
|
@@ -434,18 +471,19 @@ module NewRelic
|
|
434
471
|
merge_request_parameters(options[:filtered_params])
|
435
472
|
end
|
436
473
|
|
437
|
-
@ignore_apdex = options[:ignore_apdex] if options.key?
|
438
|
-
@ignore_enduser = options[:ignore_enduser] if options.key?
|
474
|
+
@ignore_apdex = options[:ignore_apdex] if options.key?(:ignore_apdex)
|
475
|
+
@ignore_enduser = options[:ignore_enduser] if options.key?(:ignore_enduser)
|
439
476
|
|
440
|
-
nest_initial_segment if
|
441
|
-
nested_name = self.class.nested_transaction_name
|
442
|
-
|
477
|
+
nest_initial_segment if segments.length == 1
|
478
|
+
nested_name = self.class.nested_transaction_name(options[:transaction_name])
|
479
|
+
|
480
|
+
segment = create_segment(nested_name, options)
|
443
481
|
set_default_transaction_name(options[:transaction_name], category)
|
444
|
-
|
482
|
+
segment
|
445
483
|
end
|
446
484
|
|
447
485
|
def nest_initial_segment
|
448
|
-
self.initial_segment.name = self.class.nested_transaction_name
|
486
|
+
self.initial_segment.name = self.class.nested_transaction_name(initial_segment.name)
|
449
487
|
initial_segment.record_scoped_metric = true
|
450
488
|
end
|
451
489
|
|
@@ -455,9 +493,6 @@ module NewRelic
|
|
455
493
|
@ignore_trace = true
|
456
494
|
end
|
457
495
|
|
458
|
-
WEB_SUMMARY_METRIC = 'HttpDispatcher'.freeze
|
459
|
-
OTHER_SUMMARY_METRIC = 'OtherTransaction/all'.freeze
|
460
|
-
|
461
496
|
def summary_metrics
|
462
497
|
if @frozen_name.start_with?(CONTROLLER_PREFIX)
|
463
498
|
[WEB_SUMMARY_METRIC]
|
@@ -481,21 +516,25 @@ module NewRelic
|
|
481
516
|
|
482
517
|
def finish
|
483
518
|
return unless state.is_execution_traced?
|
484
|
-
|
485
|
-
@
|
519
|
+
|
520
|
+
@end_time = Process.clock_gettime(Process::CLOCK_REALTIME)
|
521
|
+
@duration = @end_time - @start_time
|
486
522
|
freeze_name_and_execute_if_not_ignored
|
487
523
|
|
488
524
|
if nesting_max_depth == 1
|
489
525
|
initial_segment.name = @frozen_name
|
490
526
|
end
|
491
527
|
|
528
|
+
initial_segment.transaction_name = @frozen_name
|
529
|
+
assign_segment_dt_attributes
|
530
|
+
assign_agent_attributes
|
492
531
|
initial_segment.finish
|
493
532
|
|
494
533
|
NewRelic::Agent::TransactionTimeAggregator.transaction_stop(@end_time, @starting_thread_id)
|
495
534
|
|
496
535
|
commit!(initial_segment.name) unless @ignore_this_transaction
|
497
536
|
rescue => e
|
498
|
-
NewRelic::Agent.logger.error(
|
537
|
+
NewRelic::Agent.logger.error('Exception during Transaction#finish', e)
|
499
538
|
nil
|
500
539
|
ensure
|
501
540
|
state.reset
|
@@ -512,8 +551,6 @@ module NewRelic
|
|
512
551
|
|
513
552
|
def commit!(outermost_node_name)
|
514
553
|
generate_payload
|
515
|
-
|
516
|
-
assign_agent_attributes
|
517
554
|
assign_intrinsics
|
518
555
|
|
519
556
|
finalize_segments
|
@@ -525,22 +562,29 @@ module NewRelic
|
|
525
562
|
record_total_time_metrics
|
526
563
|
record_apdex unless ignore_apdex?
|
527
564
|
record_queue_time
|
528
|
-
|
529
|
-
record_distributed_tracing_metrics
|
565
|
+
distributed_tracer.record_metrics
|
530
566
|
|
531
567
|
record_exceptions
|
532
568
|
record_transaction_event
|
569
|
+
record_log_events
|
533
570
|
merge_metrics
|
534
571
|
send_transaction_finished_event
|
535
572
|
end
|
536
573
|
|
574
|
+
def assign_segment_dt_attributes
|
575
|
+
dt_payload = distributed_tracer.trace_state_payload || distributed_tracer.distributed_trace_payload
|
576
|
+
parent_attributes = {}
|
577
|
+
DistributedTraceAttributes.copy_parent_attributes(self, dt_payload, parent_attributes)
|
578
|
+
parent_attributes.each { |k, v| initial_segment.add_agent_attribute(k, v) }
|
579
|
+
end
|
580
|
+
|
537
581
|
def assign_agent_attributes
|
538
582
|
default_destinations = AttributeFilter::DST_TRANSACTION_TRACER |
|
539
|
-
|
540
|
-
|
583
|
+
AttributeFilter::DST_TRANSACTION_EVENTS |
|
584
|
+
AttributeFilter::DST_ERROR_COLLECTOR
|
541
585
|
|
542
586
|
if http_response_code
|
543
|
-
add_agent_attribute(:
|
587
|
+
add_agent_attribute(:'http.statusCode', http_response_code, default_destinations)
|
544
588
|
end
|
545
589
|
|
546
590
|
if response_content_length
|
@@ -551,9 +595,7 @@ module NewRelic
|
|
551
595
|
add_agent_attribute(:'response.headers.contentType', response_content_type, default_destinations)
|
552
596
|
end
|
553
597
|
|
554
|
-
|
555
|
-
@request_attributes.assign_agent_attributes self
|
556
|
-
end
|
598
|
+
@request_attributes&.assign_agent_attributes(self)
|
557
599
|
|
558
600
|
display_host = Agent.config[:'process_host.display_name']
|
559
601
|
unless display_host == NewRelic::Agent::Hostname.get
|
@@ -578,11 +620,7 @@ module NewRelic
|
|
578
620
|
attributes.add_intrinsic_attribute(:synthetics_monitor_id, synthetics_monitor_id)
|
579
621
|
end
|
580
622
|
|
581
|
-
|
582
|
-
assign_distributed_trace_intrinsics
|
583
|
-
elsif is_cross_app?
|
584
|
-
assign_cross_app_intrinsics
|
585
|
-
end
|
623
|
+
distributed_tracer.assign_intrinsics
|
586
624
|
end
|
587
625
|
|
588
626
|
def calculate_gc_time
|
@@ -590,6 +628,16 @@ module NewRelic
|
|
590
628
|
NewRelic::Agent::StatsEngine::GCProfiler.record_delta(gc_start_snapshot, gc_stop_snapshot)
|
591
629
|
end
|
592
630
|
|
631
|
+
# This method returns transport_duration in seconds. Transport duration
|
632
|
+
# is stored in milliseconds on the payload, but it's needed in seconds
|
633
|
+
# for metrics and intrinsics.
|
634
|
+
def calculate_transport_duration(distributed_trace_payload)
|
635
|
+
return unless distributed_trace_payload
|
636
|
+
|
637
|
+
duration = start_time - (distributed_trace_payload.timestamp / 1000.0)
|
638
|
+
[duration, 0].max
|
639
|
+
end
|
640
|
+
|
593
641
|
# The summary metrics recorded by this method all end up with a duration
|
594
642
|
# equal to the transaction itself, and an exclusive time of zero.
|
595
643
|
def record_summary_metrics(outermost_node_name)
|
@@ -606,28 +654,27 @@ module NewRelic
|
|
606
654
|
|
607
655
|
def generate_payload
|
608
656
|
@payload = {
|
609
|
-
:name
|
610
|
-
:bucket
|
611
|
-
:start_timestamp
|
612
|
-
:duration
|
613
|
-
:metrics
|
614
|
-
:attributes
|
615
|
-
:error
|
616
|
-
: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
|
617
665
|
}
|
618
666
|
|
619
|
-
|
620
|
-
append_distributed_trace_info(@payload)
|
667
|
+
distributed_tracer.append_payload(@payload)
|
621
668
|
append_apdex_perf_zone(@payload)
|
622
669
|
append_synthetics_to(@payload)
|
623
670
|
end
|
624
671
|
|
625
672
|
def include_guid?
|
626
|
-
is_cross_app? || is_synthetics_request?
|
673
|
+
distributed_tracer.is_cross_app? || is_synthetics_request?
|
627
674
|
end
|
628
675
|
|
629
676
|
def is_synthetics_request?
|
630
|
-
synthetics_payload
|
677
|
+
!synthetics_payload.nil? && !raw_synthetics_header.nil?
|
631
678
|
end
|
632
679
|
|
633
680
|
def synthetics_version
|
@@ -655,10 +702,6 @@ module NewRelic
|
|
655
702
|
info[4]
|
656
703
|
end
|
657
704
|
|
658
|
-
APDEX_S = 'S'.freeze
|
659
|
-
APDEX_T = 'T'.freeze
|
660
|
-
APDEX_F = 'F'.freeze
|
661
|
-
|
662
705
|
def append_apdex_perf_zone(payload)
|
663
706
|
if recording_web_transaction?
|
664
707
|
bucket = apdex_bucket(duration, apdex_t)
|
@@ -672,7 +715,6 @@ module NewRelic
|
|
672
715
|
when :apdex_s then APDEX_S
|
673
716
|
when :apdex_t then APDEX_T
|
674
717
|
when :apdex_f then APDEX_F
|
675
|
-
else nil
|
676
718
|
end
|
677
719
|
payload[:apdex_perf_zone] = bucket_str if bucket_str
|
678
720
|
end
|
@@ -681,8 +723,8 @@ module NewRelic
|
|
681
723
|
return unless is_synthetics_request?
|
682
724
|
|
683
725
|
payload[:synthetics_resource_id] = synthetics_resource_id
|
684
|
-
payload[:synthetics_job_id]
|
685
|
-
payload[:synthetics_monitor_id]
|
726
|
+
payload[:synthetics_job_id] = synthetics_job_id
|
727
|
+
payload[:synthetics_monitor_id] = synthetics_monitor_id
|
686
728
|
end
|
687
729
|
|
688
730
|
def merge_metrics
|
@@ -692,30 +734,43 @@ module NewRelic
|
|
692
734
|
def record_exceptions
|
693
735
|
error_recorded = false
|
694
736
|
@exceptions.each do |exception, options|
|
695
|
-
|
696
|
-
options[:port] = request_port if request_port
|
697
|
-
options[:metric] = best_name
|
698
|
-
options[:attributes] = @attributes
|
699
|
-
|
700
|
-
error_recorded = !!agent.error_collector.notice_error(exception, options) || error_recorded
|
737
|
+
error_recorded = record_exception(exception, options, error_recorded)
|
701
738
|
end
|
702
|
-
payload[:error
|
739
|
+
payload&.[]=(:error, error_recorded)
|
740
|
+
end
|
741
|
+
|
742
|
+
def record_exception(exception, options, error_recorded)
|
743
|
+
options[:uri] ||= request_path if request_path
|
744
|
+
options[:port] = request_port if request_port
|
745
|
+
options[:metric] = best_name
|
746
|
+
options[:attributes] = @attributes
|
747
|
+
|
748
|
+
span_id = options.delete(:span_id)
|
749
|
+
!!agent.error_collector.notice_error(exception, options, span_id) || error_recorded
|
703
750
|
end
|
704
751
|
|
705
752
|
# Do not call this. Invoke the class method instead.
|
706
|
-
def notice_error(error, options={}) # :nodoc:
|
753
|
+
def notice_error(error, options = {}) # :nodoc:
|
754
|
+
# Only the last error is kept
|
755
|
+
if current_segment
|
756
|
+
current_segment.notice_error(error, expected: options[:expected])
|
757
|
+
options[:span_id] = current_segment.guid
|
758
|
+
end
|
759
|
+
|
707
760
|
if @exceptions[error]
|
708
|
-
@exceptions[error].merge!
|
761
|
+
@exceptions[error].merge!(options)
|
709
762
|
else
|
710
763
|
@exceptions[error] = options
|
711
764
|
end
|
712
765
|
end
|
713
766
|
|
714
767
|
def record_transaction_event
|
715
|
-
agent.transaction_event_recorder.record
|
768
|
+
agent.transaction_event_recorder.record(payload)
|
716
769
|
end
|
717
770
|
|
718
|
-
|
771
|
+
def record_log_events
|
772
|
+
agent.log_event_aggregator.record_batch(self, @logs.to_a)
|
773
|
+
end
|
719
774
|
|
720
775
|
def queue_time
|
721
776
|
@apdex_start ? @start_time - @apdex_start : 0
|
@@ -732,17 +787,9 @@ module NewRelic
|
|
732
787
|
end
|
733
788
|
end
|
734
789
|
|
735
|
-
APDEX_ALL_METRIC = 'ApdexAll'.freeze
|
736
|
-
|
737
|
-
APDEX_METRIC = 'Apdex'.freeze
|
738
|
-
APDEX_OTHER_METRIC = 'ApdexOther'.freeze
|
739
|
-
|
740
|
-
APDEX_TXN_METRIC_PREFIX = 'Apdex/'.freeze
|
741
|
-
APDEX_OTHER_TXN_METRIC_PREFIX = 'ApdexOther/Transaction/'.freeze
|
742
|
-
|
743
790
|
def had_error_affecting_apdex?
|
744
791
|
@exceptions.each do |exception, options|
|
745
|
-
ignored
|
792
|
+
ignored = NewRelic::Agent.instance.error_collector.error_is_ignored?(exception)
|
746
793
|
expected = options[:expected]
|
747
794
|
|
748
795
|
return true unless ignored || expected
|
@@ -762,8 +809,8 @@ module NewRelic
|
|
762
809
|
record_apdex_metrics(APDEX_METRIC, APDEX_TXN_METRIC_PREFIX, apdex_t)
|
763
810
|
else
|
764
811
|
record_apdex_metrics(APDEX_OTHER_METRIC,
|
765
|
-
|
766
|
-
|
812
|
+
APDEX_OTHER_TXN_METRIC_PREFIX,
|
813
|
+
transaction_specific_apdex_t)
|
767
814
|
end
|
768
815
|
end
|
769
816
|
end
|
@@ -771,9 +818,9 @@ module NewRelic
|
|
771
818
|
def record_apdex_metrics(rollup_metric, transaction_prefix, current_apdex_t)
|
772
819
|
return unless current_apdex_t
|
773
820
|
|
774
|
-
total_duration
|
821
|
+
total_duration = end_time - apdex_start
|
775
822
|
apdex_bucket_global = apdex_bucket(total_duration, current_apdex_t)
|
776
|
-
apdex_bucket_txn
|
823
|
+
apdex_bucket_txn = apdex_bucket(duration, current_apdex_t)
|
777
824
|
|
778
825
|
@metrics.record_unscoped(rollup_metric, apdex_bucket_global, current_apdex_t)
|
779
826
|
@metrics.record_unscoped(APDEX_ALL_METRIC, apdex_bucket_global, current_apdex_t)
|
@@ -791,7 +838,7 @@ module NewRelic
|
|
791
838
|
end
|
792
839
|
|
793
840
|
def threshold
|
794
|
-
|
841
|
+
source_class = Agent.config.source(:'transaction_tracer.transaction_threshold').class
|
795
842
|
if source_class == Configuration::DefaultSource
|
796
843
|
apdex_t * 4
|
797
844
|
else
|
@@ -799,7 +846,7 @@ module NewRelic
|
|
799
846
|
end
|
800
847
|
end
|
801
848
|
|
802
|
-
def with_database_metric_name(model, method, product=nil)
|
849
|
+
def with_database_metric_name(model, method, product = nil)
|
803
850
|
previous = self.instrumentation_state[:datastore_override]
|
804
851
|
model_name = case model
|
805
852
|
when Class
|
@@ -808,7 +855,7 @@ module NewRelic
|
|
808
855
|
model
|
809
856
|
else
|
810
857
|
model.to_s
|
811
|
-
|
858
|
+
end
|
812
859
|
self.instrumentation_state[:datastore_override] = [method, model_name, product]
|
813
860
|
yield
|
814
861
|
ensure
|
@@ -819,6 +866,10 @@ module NewRelic
|
|
819
866
|
attributes.merge_custom_attributes(p)
|
820
867
|
end
|
821
868
|
|
869
|
+
def add_log_event(event)
|
870
|
+
logs.append(event: event)
|
871
|
+
end
|
872
|
+
|
822
873
|
def recording_web_transaction?
|
823
874
|
web_category?(@category)
|
824
875
|
end
|
@@ -837,11 +888,13 @@ module NewRelic
|
|
837
888
|
|
838
889
|
def normal_cpu_burn
|
839
890
|
return unless @process_cpu_start
|
891
|
+
|
840
892
|
process_cpu - @process_cpu_start
|
841
893
|
end
|
842
894
|
|
843
895
|
def jruby_cpu_burn
|
844
896
|
return unless @jruby_cpu_start
|
897
|
+
|
845
898
|
jruby_cpu_time - @jruby_cpu_start
|
846
899
|
end
|
847
900
|
|
@@ -877,19 +930,21 @@ module NewRelic
|
|
877
930
|
|
878
931
|
def process_cpu
|
879
932
|
return nil if defined? JRuby
|
933
|
+
|
880
934
|
p = Process.times
|
881
935
|
p.stime + p.utime
|
882
936
|
end
|
883
937
|
|
884
|
-
JRUBY_CPU_TIME_ERROR = "Error calculating JRuby CPU Time".freeze
|
885
938
|
def jruby_cpu_time
|
886
939
|
return nil unless @@java_classes_loaded
|
940
|
+
|
887
941
|
threadMBean = Java::JavaLangManagement::ManagementFactory.getThreadMXBean()
|
888
942
|
|
889
943
|
return nil unless threadMBean.isCurrentThreadCpuTimeSupported
|
890
|
-
java_utime = threadMBean.getCurrentThreadUserTime() # ns
|
891
944
|
|
892
|
-
|
945
|
+
java_utime = threadMBean.getCurrentThreadUserTime() # ns
|
946
|
+
|
947
|
+
-1 == java_utime ? 0.0 : java_utime / 1e9
|
893
948
|
rescue => e
|
894
949
|
::NewRelic::Agent.logger.log_once(:warn, :jruby_cpu_time, JRUBY_CPU_TIME_ERROR, e)
|
895
950
|
::NewRelic::Agent.logger.debug(JRUBY_CPU_TIME_ERROR, e)
|
@@ -907,18 +962,6 @@ module NewRelic
|
|
907
962
|
def sql_sampler
|
908
963
|
agent.sql_sampler
|
909
964
|
end
|
910
|
-
|
911
|
-
HEX_DIGITS = (0..15).map{|i| i.to_s(16)}
|
912
|
-
GUID_LENGTH = 16
|
913
|
-
|
914
|
-
# generate a random 64 bit uuid
|
915
|
-
def generate_guid
|
916
|
-
guid = ''
|
917
|
-
GUID_LENGTH.times do |a|
|
918
|
-
guid << HEX_DIGITS[rand(16)]
|
919
|
-
end
|
920
|
-
guid
|
921
|
-
end
|
922
965
|
end
|
923
966
|
end
|
924
967
|
end
|