newrelic_rpm 4.8.0.341 → 6.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/ISSUE_TEMPLATE/bug_report.md +31 -0
- data/.github/ISSUE_TEMPLATE/config.yml +5 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +24 -0
- data/.github/actions/annotate/README.md +79 -0
- data/.github/actions/annotate/action.yml +6 -0
- data/.github/actions/annotate/dist/index.js +433 -0
- data/.github/actions/annotate/index.js +25 -0
- data/.github/actions/annotate/package-lock.json +172 -0
- data/.github/actions/annotate/package.json +30 -0
- data/.github/actions/annotate/pre-commit +5 -0
- data/.github/actions/build-ruby/README.md +79 -0
- data/.github/actions/build-ruby/action.yml +15 -0
- data/.github/actions/build-ruby/dist/index.js +52683 -0
- data/.github/actions/build-ruby/index.js +514 -0
- data/.github/actions/build-ruby/package-lock.json +581 -0
- data/.github/actions/build-ruby/package.json +32 -0
- data/.github/actions/build-ruby/pre-commit +5 -0
- data/.github/pull_request_template.md +16 -0
- data/.github/workflows/ci.yml +212 -0
- data/.github/workflows/pr_review_checklist.yml +22 -0
- data/.github/workflows/release.yml +78 -0
- data/.github/workflows/scripts/rubygems-authenticate.py +13 -0
- data/.github/workflows/scripts/rubygems-publish.rb +32 -0
- data/.github/workflows/snyk.yml +27 -0
- data/.github/workflows/stale.yml +21 -0
- data/.gitignore +9 -0
- data/.yardopts +4 -1
- data/CHANGELOG.md +868 -3
- data/CONTRIBUTING.md +106 -19
- data/Gemfile +6 -2
- data/Guardfile +18 -1
- data/LICENSE +208 -38
- data/README.md +81 -88
- data/ROADMAP.md +24 -0
- data/Rakefile +2 -0
- data/THIRD_PARTY_NOTICES.md +213 -0
- data/bin/nrdebug +1 -1
- data/config.dot +3 -12
- data/init.rb +1 -1
- data/install.rb +1 -1
- data/lib/new_relic/agent.rb +145 -31
- data/lib/new_relic/agent/adaptive_sampler.rb +104 -0
- data/lib/new_relic/agent/agent.rb +192 -190
- data/lib/new_relic/agent/agent_logger.rb +5 -1
- data/lib/new_relic/agent/attribute_filter.rb +85 -25
- data/lib/new_relic/agent/attribute_processing.rb +1 -1
- data/lib/new_relic/agent/attributes.rb +152 -0
- data/lib/new_relic/agent/audit_logger.rb +1 -1
- data/lib/new_relic/agent/autostart.rb +20 -15
- data/lib/new_relic/agent/chained_call.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command_router.rb +3 -22
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +1 -1
- data/lib/new_relic/agent/configuration.rb +1 -1
- data/lib/new_relic/agent/configuration/default_source.rb +375 -67
- data/lib/new_relic/agent/configuration/dotted_hash.rb +1 -1
- data/lib/new_relic/agent/configuration/environment_source.rb +5 -3
- data/lib/new_relic/agent/configuration/event_harvest_config.rb +45 -0
- data/lib/new_relic/agent/configuration/high_security_source.rb +2 -3
- data/lib/new_relic/agent/configuration/manager.rb +54 -43
- data/lib/new_relic/agent/configuration/manual_source.rb +1 -1
- data/lib/new_relic/agent/configuration/mask_defaults.rb +1 -1
- data/lib/new_relic/agent/configuration/security_policy_source.rb +238 -0
- data/lib/new_relic/agent/configuration/server_source.rb +46 -5
- data/lib/new_relic/agent/configuration/yaml_source.rb +12 -7
- data/lib/new_relic/agent/connect/request_builder.rb +61 -0
- data/lib/new_relic/agent/connect/response_handler.rb +61 -0
- data/lib/new_relic/agent/custom_event_aggregator.rb +17 -6
- data/lib/new_relic/agent/database.rb +21 -3
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +12 -1
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
- data/lib/new_relic/agent/database/obfuscator.rb +1 -1
- data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +1 -1
- data/lib/new_relic/agent/datastores.rb +12 -11
- data/lib/new_relic/agent/datastores/metric_helper.rb +2 -3
- data/lib/new_relic/agent/datastores/mongo.rb +2 -2
- data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +3 -3
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +1 -1
- data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +9 -9
- data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +1 -1
- data/lib/new_relic/agent/datastores/redis.rb +1 -1
- data/lib/new_relic/agent/deprecator.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing.rb +216 -0
- data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +44 -0
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +248 -0
- 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 +165 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +39 -0
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +246 -0
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +126 -0
- data/lib/new_relic/agent/encoding_normalizer.rb +1 -1
- data/lib/new_relic/agent/error_collector.rb +51 -20
- data/lib/new_relic/agent/error_event_aggregator.rb +14 -7
- data/lib/new_relic/agent/error_trace_aggregator.rb +2 -1
- data/lib/new_relic/agent/event_aggregator.rb +34 -15
- data/lib/new_relic/agent/event_buffer.rb +1 -1
- data/lib/new_relic/agent/event_listener.rb +1 -1
- data/lib/new_relic/agent/event_loop.rb +1 -1
- data/lib/new_relic/agent/external.rb +31 -29
- data/lib/new_relic/agent/guid_generator.rb +28 -0
- data/lib/new_relic/agent/harvester.rb +1 -1
- data/lib/new_relic/agent/heap.rb +140 -0
- data/lib/new_relic/agent/hostname.rb +16 -2
- data/lib/new_relic/agent/http_clients/abstract.rb +82 -0
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +25 -20
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +29 -14
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +18 -22
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +11 -12
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +17 -5
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +5 -7
- data/lib/new_relic/agent/http_clients/uri_util.rb +12 -11
- data/lib/new_relic/agent/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +26 -43
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +56 -74
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +82 -56
- data/lib/new_relic/agent/instrumentation/active_job.rb +19 -17
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_record.rb +85 -38
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +82 -24
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +168 -0
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +102 -31
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +47 -57
- data/lib/new_relic/agent/instrumentation/active_storage.rb +23 -0
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +63 -0
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +24 -8
- data/lib/new_relic/agent/instrumentation/authlogic.rb +1 -1
- data/lib/new_relic/agent/instrumentation/bunny.rb +115 -44
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +18 -12
- data/lib/new_relic/agent/instrumentation/curb.rb +121 -35
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +6 -4
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +61 -25
- data/lib/new_relic/agent/instrumentation/excon.rb +2 -2
- data/lib/new_relic/agent/instrumentation/excon/connection.rb +8 -5
- data/lib/new_relic/agent/instrumentation/excon/middleware.rb +4 -3
- data/lib/new_relic/agent/instrumentation/grape.rb +46 -35
- data/lib/new_relic/agent/instrumentation/http.rb +8 -5
- data/lib/new_relic/agent/instrumentation/httpclient.rb +7 -5
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
- data/lib/new_relic/agent/instrumentation/memcache.rb +5 -3
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +10 -6
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +1 -1
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +1 -1
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +13 -5
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +20 -11
- data/lib/new_relic/agent/instrumentation/mongo.rb +11 -5
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +39 -7
- data/lib/new_relic/agent/instrumentation/net.rb +60 -23
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +100 -0
- data/lib/new_relic/agent/instrumentation/padrino.rb +40 -16
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/queue_time.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rack.rb +36 -13
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
- data/lib/new_relic/agent/instrumentation/{rails5 → rails_notifications}/action_cable.rb +8 -5
- data/lib/new_relic/agent/instrumentation/{rails5 → rails_notifications}/action_controller.rb +4 -4
- data/lib/new_relic/agent/instrumentation/{rails4 → rails_notifications}/action_view.rb +4 -4
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rake.rb +56 -22
- data/lib/new_relic/agent/instrumentation/redis.rb +141 -56
- data/lib/new_relic/agent/instrumentation/resque.rb +21 -37
- data/lib/new_relic/agent/instrumentation/sequel.rb +2 -3
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +48 -24
- data/lib/new_relic/agent/instrumentation/sinatra.rb +62 -23
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sunspot.rb +1 -1
- data/lib/new_relic/agent/instrumentation/typhoeus.rb +27 -10
- data/lib/new_relic/agent/internal_agent_error.rb +1 -1
- data/lib/new_relic/agent/javascript_instrumentor.rb +19 -16
- data/lib/new_relic/agent/log_once.rb +1 -1
- data/lib/new_relic/agent/logging.rb +139 -0
- data/lib/new_relic/agent/memory_logger.rb +1 -1
- data/lib/new_relic/agent/messaging.rb +15 -59
- data/lib/new_relic/agent/method_tracer.rb +42 -25
- data/lib/new_relic/agent/method_tracer_helpers.rb +5 -5
- data/lib/new_relic/agent/monitors.rb +27 -0
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +110 -0
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +27 -0
- data/lib/new_relic/agent/{inbound_request_monitor.rb → monitors/inbound_request_monitor.rb} +4 -4
- data/lib/new_relic/agent/{synthetics_monitor.rb → monitors/synthetics_monitor.rb} +4 -7
- data/lib/new_relic/agent/new_relic_service.rb +174 -63
- data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +1 -2
- data/lib/new_relic/agent/new_relic_service/marshaller.rb +6 -27
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +61 -0
- data/lib/new_relic/agent/noticible_error.rb +22 -0
- data/lib/new_relic/agent/null_logger.rb +1 -1
- data/lib/new_relic/agent/obfuscator.rb +1 -1
- data/lib/new_relic/agent/parameter_filtering.rb +19 -6
- data/lib/new_relic/agent/payload_metric_mapping.rb +1 -1
- data/lib/new_relic/agent/pipe_channel_manager.rb +1 -1
- data/lib/new_relic/agent/pipe_service.rb +5 -1
- data/lib/new_relic/agent/prepend_supportability.rb +1 -1
- data/lib/new_relic/agent/priority_sampled_buffer.rb +95 -0
- data/lib/new_relic/agent/range_extensions.rb +1 -1
- data/lib/new_relic/agent/rules_engine.rb +1 -1
- data/lib/new_relic/agent/rules_engine/replacement_rule.rb +1 -1
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +1 -1
- data/lib/new_relic/agent/sampler.rb +1 -1
- data/lib/new_relic/agent/sampler_collection.rb +1 -1
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/memory_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/vm_sampler.rb +1 -1
- data/lib/new_relic/agent/span_event_aggregator.rb +49 -0
- data/lib/new_relic/agent/span_event_primitive.rb +206 -0
- data/lib/new_relic/agent/sql_sampler.rb +23 -7
- data/lib/new_relic/agent/stats.rb +1 -1
- data/lib/new_relic/agent/stats_engine.rb +4 -4
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +1 -1
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +1 -1
- data/lib/new_relic/agent/supported_versions.rb +3 -3
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +6 -13
- data/lib/new_relic/agent/system_info.rb +18 -8
- data/lib/new_relic/agent/threading/agent_thread.rb +6 -4
- data/lib/new_relic/agent/threading/backtrace_node.rb +1 -1
- data/lib/new_relic/agent/threading/backtrace_service.rb +4 -4
- data/lib/new_relic/agent/threading/thread_profile.rb +10 -24
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +19 -0
- data/lib/new_relic/agent/tracer.rb +509 -0
- data/lib/new_relic/agent/transaction.rb +191 -278
- data/lib/new_relic/agent/transaction/abstract_segment.rb +38 -5
- data/lib/new_relic/agent/transaction/datastore_segment.rb +30 -5
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +171 -0
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +123 -71
- data/lib/new_relic/agent/transaction/external_request_segment.rb +41 -89
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +7 -8
- data/lib/new_relic/agent/transaction/request_attributes.rb +1 -1
- data/lib/new_relic/agent/transaction/segment.rb +42 -2
- data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/trace.rb +7 -23
- data/lib/new_relic/agent/transaction/trace_builder.rb +1 -2
- data/lib/new_relic/agent/transaction/trace_context.rb +168 -0
- data/lib/new_relic/agent/transaction/trace_node.rb +12 -8
- data/lib/new_relic/agent/transaction/tracing.rb +2 -100
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction_error_primitive.rb +13 -22
- data/lib/new_relic/agent/transaction_event_aggregator.rb +7 -16
- data/lib/new_relic/agent/transaction_event_primitive.rb +31 -42
- data/lib/new_relic/agent/transaction_event_recorder.rb +8 -16
- data/lib/new_relic/agent/transaction_metrics.rb +1 -1
- data/lib/new_relic/agent/transaction_sampler.rb +3 -14
- data/lib/new_relic/agent/transaction_time_aggregator.rb +155 -0
- data/lib/new_relic/agent/utilization/aws.rb +1 -1
- data/lib/new_relic/agent/utilization/azure.rb +1 -1
- data/lib/new_relic/agent/utilization/gcp.rb +1 -1
- data/lib/new_relic/agent/utilization/pcf.rb +1 -1
- data/lib/new_relic/agent/utilization/vendor.rb +1 -1
- data/lib/new_relic/agent/utilization_data.rb +37 -2
- data/lib/new_relic/agent/vm.rb +1 -1
- data/lib/new_relic/agent/vm/jruby_vm.rb +1 -1
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
- data/lib/new_relic/agent/vm/mri_vm.rb +1 -1
- data/lib/new_relic/agent/vm/snapshot.rb +1 -1
- data/lib/new_relic/agent/worker_loop.rb +1 -1
- data/lib/new_relic/cli/command.rb +1 -1
- data/lib/new_relic/cli/commands/deployments.rb +2 -2
- data/lib/new_relic/cli/commands/install.rb +4 -3
- data/lib/new_relic/coerce.rb +32 -7
- data/lib/new_relic/collection_helper.rb +1 -1
- data/lib/new_relic/constants.rb +38 -0
- data/lib/new_relic/control.rb +1 -1
- data/lib/new_relic/control/class_methods.rb +8 -2
- data/lib/new_relic/control/frameworks.rb +1 -1
- data/lib/new_relic/control/frameworks/external.rb +1 -1
- data/lib/new_relic/control/frameworks/merb.rb +1 -1
- data/lib/new_relic/control/frameworks/rails.rb +1 -1
- data/lib/new_relic/control/frameworks/rails3.rb +1 -1
- data/lib/new_relic/control/frameworks/rails4.rb +1 -1
- data/lib/new_relic/control/frameworks/{rails5.rb → rails_notifications.rb} +2 -2
- data/lib/new_relic/control/frameworks/ruby.rb +1 -1
- data/lib/new_relic/control/frameworks/sinatra.rb +1 -1
- data/lib/new_relic/control/instance_methods.rb +30 -4
- data/lib/new_relic/control/instrumentation.rb +1 -1
- data/lib/new_relic/control/server_methods.rb +1 -1
- data/lib/new_relic/delayed_job_injection.rb +1 -1
- data/lib/new_relic/dependency_detection.rb +5 -5
- data/lib/new_relic/environment_report.rb +6 -2
- data/lib/new_relic/helper.rb +1 -1
- data/lib/new_relic/language_support.rb +1 -1
- data/lib/new_relic/latest_changes.rb +4 -4
- data/lib/new_relic/local_environment.rb +1 -1
- data/lib/new_relic/metric_data.rb +1 -1
- data/lib/new_relic/metric_spec.rb +1 -1
- data/lib/new_relic/noticed_error.rb +39 -18
- data/lib/new_relic/rack.rb +1 -1
- data/lib/new_relic/rack/agent_hooks.rb +1 -1
- data/lib/new_relic/rack/agent_middleware.rb +2 -2
- data/lib/new_relic/rack/browser_monitoring.rb +16 -9
- data/lib/new_relic/recipes.rb +1 -1
- data/lib/new_relic/recipes/capistrano3.rb +6 -3
- data/lib/new_relic/recipes/capistrano_legacy.rb +1 -1
- data/lib/new_relic/supportability_helper.rb +15 -1
- data/lib/new_relic/version.rb +4 -4
- data/lib/newrelic_rpm.rb +1 -1
- data/lib/sequel/extensions/newrelic_instrumentation.rb +3 -3
- data/lib/sequel/plugins/newrelic_instrumentation.rb +2 -2
- data/lib/tasks/all.rb +1 -1
- data/lib/tasks/config.rake +1 -2
- data/lib/tasks/multiverse.rb +35 -1
- data/lib/tasks/newrelic.rb +1 -1
- data/lib/tasks/tests.rake +6 -1
- data/newrelic_rpm.gemspec +23 -17
- data/recipes/newrelic.rb +1 -1
- data/test/agent_helper.rb +357 -78
- metadata +154 -60
- data/.travis.yml +0 -173
- data/lib/new_relic/agent/busy_calculator.rb +0 -117
- 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/cross_app_monitor.rb +0 -140
- data/lib/new_relic/agent/cross_app_tracing.rb +0 -143
- data/lib/new_relic/agent/distributed_trace_monitor.rb +0 -29
- data/lib/new_relic/agent/distributed_trace_payload.rb +0 -223
- data/lib/new_relic/agent/distributed_trace_priority_sampled_buffer.rb +0 -72
- data/lib/new_relic/agent/http_clients/abstract_request.rb +0 -31
- data/lib/new_relic/agent/instrumentation/active_record_4.rb +0 -42
- data/lib/new_relic/agent/instrumentation/active_record_5.rb +0 -36
- data/lib/new_relic/agent/instrumentation/evented_subscriber.rb +0 -104
- data/lib/new_relic/agent/instrumentation/rails4/action_controller.rb +0 -32
- data/lib/new_relic/agent/instrumentation/rails5/action_view.rb +0 -27
- data/lib/new_relic/agent/sampled_buffer.rb +0 -68
- data/lib/new_relic/agent/sized_buffer.rb +0 -23
- data/lib/new_relic/agent/synthetics_event_buffer.rb +0 -40
- data/lib/new_relic/agent/throughput_monitor.rb +0 -59
- data/lib/new_relic/agent/transaction/attributes.rb +0 -153
- data/lib/new_relic/agent/transaction/xray_sample_buffer.rb +0 -64
- data/lib/new_relic/agent/transaction_state.rb +0 -145
- data/lib/new_relic/agent/transaction_timings.rb +0 -57
- data/lib/new_relic/metrics.rb +0 -13
- 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
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
|
5
5
|
# This module is intended to provide access to information about the host OS and
|
6
6
|
# [virtual] machine. It intentionally does no caching and maintains no state -
|
@@ -8,6 +8,7 @@
|
|
8
8
|
# the requested information is unavailable.
|
9
9
|
|
10
10
|
require 'rbconfig'
|
11
|
+
require 'socket'
|
11
12
|
|
12
13
|
module NewRelic
|
13
14
|
module Agent
|
@@ -30,6 +31,10 @@ module NewRelic
|
|
30
31
|
|
31
32
|
@processor_info = nil
|
32
33
|
|
34
|
+
def self.ip_addresses
|
35
|
+
Socket.ip_address_list.map(&:ip_address)
|
36
|
+
end
|
37
|
+
|
33
38
|
def self.clear_processor_info
|
34
39
|
@processor_info = nil
|
35
40
|
end
|
@@ -165,15 +170,20 @@ module NewRelic
|
|
165
170
|
|
166
171
|
container_id = case cpu_cgroup
|
167
172
|
# docker native driver w/out systemd (fs)
|
168
|
-
when
|
173
|
+
when /[0-9a-f]{64,}/
|
174
|
+
if $&.length == 64
|
175
|
+
$&
|
176
|
+
else # container ID is too long
|
177
|
+
::NewRelic::Agent.logger.debug("Ignoring docker ID of invalid length: '#{cpu_cgroup}'")
|
178
|
+
return
|
179
|
+
end
|
169
180
|
# docker native driver with systemd
|
170
|
-
when
|
171
|
-
# docker lxc driver
|
172
|
-
when %r{^/lxc/([0-9a-f]+)$} then $1
|
173
|
-
# not in any cgroup
|
174
|
-
when '/' then nil
|
181
|
+
when '/' then nil
|
175
182
|
# in a cgroup, but we don't recognize its format
|
176
|
-
when
|
183
|
+
when /docker\/.*[^0-9a-f]/ then
|
184
|
+
::NewRelic::Agent.logger.debug("Cgroup indicates docker but container_id has invalid characters: '#{cpu_cgroup}'")
|
185
|
+
return
|
186
|
+
when /docker/ then
|
177
187
|
::NewRelic::Agent.logger.debug("Cgroup indicates docker but container_id unrecognized: '#{cpu_cgroup}'")
|
178
188
|
::NewRelic::Agent.increment_metric "Supportability/utilization/docker/error"
|
179
189
|
return
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
|
5
5
|
module NewRelic
|
6
6
|
module Agent
|
@@ -37,10 +37,12 @@ module NewRelic
|
|
37
37
|
if thread.key?(:newrelic_label)
|
38
38
|
profile_agent_code ? :agent : :ignore
|
39
39
|
else
|
40
|
-
state =
|
41
|
-
|
40
|
+
state = Tracer.state_for(thread)
|
41
|
+
txn = state.current_transaction
|
42
|
+
|
43
|
+
if txn && !txn.recording_web_transaction?
|
42
44
|
:background
|
43
|
-
elsif
|
45
|
+
elsif txn && txn.recording_web_transaction?
|
44
46
|
:request
|
45
47
|
else
|
46
48
|
:other
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
|
5
5
|
module NewRelic
|
6
6
|
module Agent
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
|
5
5
|
module NewRelic
|
6
6
|
module Agent
|
@@ -36,8 +36,8 @@ module NewRelic
|
|
36
36
|
@worker_loop = NewRelic::Agent::WorkerLoop.new
|
37
37
|
|
38
38
|
# Memoize overhead % to avoid getting stale OR looked up every poll
|
39
|
-
@overhead_percent_threshold = NewRelic::Agent.config[:'
|
40
|
-
NewRelic::Agent.config.register_callback(:'
|
39
|
+
@overhead_percent_threshold = NewRelic::Agent.config[:'thread_profiler.max_profile_overhead']
|
40
|
+
NewRelic::Agent.config.register_callback(:'thread_profiler.max_profile_overhead') do |new_value|
|
41
41
|
@overhead_percent_threshold = new_value
|
42
42
|
end
|
43
43
|
|
@@ -213,7 +213,7 @@ module NewRelic
|
|
213
213
|
if @buffer[thread].length < MAX_BUFFER_LENGTH
|
214
214
|
@buffer[thread] << [timestamp, backtrace]
|
215
215
|
else
|
216
|
-
NewRelic::Agent.increment_metric('Supportability/
|
216
|
+
NewRelic::Agent.increment_metric('Supportability/ThreadProfiler/DroppedBacktraces')
|
217
217
|
end
|
218
218
|
end
|
219
219
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
|
5
5
|
require 'set'
|
6
6
|
require 'new_relic/agent/worker_loop'
|
@@ -16,7 +16,7 @@ module NewRelic
|
|
16
16
|
|
17
17
|
attr_reader :profile_id, :traces, :sample_period,
|
18
18
|
:duration, :poll_count, :backtrace_count, :failure_count,
|
19
|
-
:created_at, :
|
19
|
+
:created_at, :command_arguments, :profile_agent_code
|
20
20
|
attr_accessor :finished_at
|
21
21
|
|
22
22
|
def initialize(command_arguments={})
|
@@ -25,7 +25,6 @@ module NewRelic
|
|
25
25
|
@duration = command_arguments.fetch('duration', 120)
|
26
26
|
@sample_period = command_arguments.fetch('sample_period', 0.1)
|
27
27
|
@profile_agent_code = command_arguments.fetch('profile_agent_code', false)
|
28
|
-
@xray_id = command_arguments.fetch('x_ray_id', nil)
|
29
28
|
@finished = false
|
30
29
|
|
31
30
|
@traces = {
|
@@ -51,14 +50,6 @@ module NewRelic
|
|
51
50
|
@poll_count += 1
|
52
51
|
end
|
53
52
|
|
54
|
-
def sample_count
|
55
|
-
xray? ? @backtrace_count : @poll_count
|
56
|
-
end
|
57
|
-
|
58
|
-
def xray?
|
59
|
-
!!@xray_id
|
60
|
-
end
|
61
|
-
|
62
53
|
def empty?
|
63
54
|
@backtrace_count == 0
|
64
55
|
end
|
@@ -121,26 +112,21 @@ module NewRelic
|
|
121
112
|
def to_collector_array(encoder)
|
122
113
|
encoded_trace_tree = encoder.encode(generate_traces, :skip_normalization => true)
|
123
114
|
result = [
|
124
|
-
int(
|
125
|
-
float(
|
126
|
-
float(
|
127
|
-
int(
|
115
|
+
int(profile_id),
|
116
|
+
float(created_at),
|
117
|
+
float(finished_at),
|
118
|
+
int(poll_count),
|
128
119
|
encoded_trace_tree,
|
129
|
-
int(
|
120
|
+
int(unique_thread_count),
|
130
121
|
0 # runnable thread count, which we don't track
|
131
122
|
]
|
132
|
-
result << int(@xray_id) if xray?
|
133
123
|
result
|
134
124
|
end
|
135
125
|
|
136
126
|
def to_log_description
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
"@profile_id: #{profile_id}"
|
141
|
-
end
|
142
|
-
|
143
|
-
"#<ThreadProfile:#{object_id} #{id} @command_arguments=#{@command_arguments.inspect}>"
|
127
|
+
"#<ThreadProfile:#{object_id} "\
|
128
|
+
"@profile_id: #{profile_id} "\
|
129
|
+
"@command_arguments=#{@command_arguments.inspect}>"
|
144
130
|
end
|
145
131
|
|
146
132
|
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# This file is distributed under New Relic's license terms.
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
|
+
|
5
|
+
require 'new_relic/agent/heap'
|
6
|
+
|
7
|
+
module NewRelic
|
8
|
+
module Agent
|
9
|
+
class TimestampSampledBuffer < PrioritySampledBuffer
|
10
|
+
TIMESTAMP_KEY = "timestamp".freeze
|
11
|
+
|
12
|
+
private
|
13
|
+
|
14
|
+
def priority_for(event)
|
15
|
+
-event[0][TIMESTAMP_KEY]
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,509 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# This file is distributed under New Relic's license terms.
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
|
+
|
5
|
+
require 'new_relic/agent/transaction'
|
6
|
+
require 'new_relic/agent/transaction/segment'
|
7
|
+
require 'new_relic/agent/transaction/datastore_segment'
|
8
|
+
require 'new_relic/agent/transaction/external_request_segment'
|
9
|
+
require 'new_relic/agent/transaction/message_broker_segment'
|
10
|
+
|
11
|
+
module NewRelic
|
12
|
+
module Agent
|
13
|
+
#
|
14
|
+
# This class helps you interact with the current transaction (if
|
15
|
+
# it exists), start new transactions/segments, etc.
|
16
|
+
#
|
17
|
+
# @api public
|
18
|
+
class Tracer
|
19
|
+
class << self
|
20
|
+
def state
|
21
|
+
state_for(Thread.current)
|
22
|
+
end
|
23
|
+
|
24
|
+
alias_method :tl_get, :state
|
25
|
+
|
26
|
+
# Returns +true+ unless called from within an
|
27
|
+
# +NewRelic::Agent.disable_all_tracing+ block.
|
28
|
+
#
|
29
|
+
# @api public
|
30
|
+
def tracing_enabled?
|
31
|
+
state.tracing_enabled?
|
32
|
+
end
|
33
|
+
|
34
|
+
# Returns the transaction in progress for this thread, or
|
35
|
+
# +nil+ if none exists.
|
36
|
+
#
|
37
|
+
# @api public
|
38
|
+
def current_transaction
|
39
|
+
state.current_transaction
|
40
|
+
end
|
41
|
+
|
42
|
+
# Returns the trace_id of the current_transaction, or +nil+ if
|
43
|
+
# none exists.
|
44
|
+
#
|
45
|
+
# @api public
|
46
|
+
def current_trace_id
|
47
|
+
if txn = current_transaction
|
48
|
+
txn.trace_id
|
49
|
+
end
|
50
|
+
end
|
51
|
+
alias_method :trace_id, :current_trace_id
|
52
|
+
|
53
|
+
# Returns the id of the current span, or +nil+ if none exists.
|
54
|
+
#
|
55
|
+
# @api public
|
56
|
+
def current_span_id
|
57
|
+
if span = current_segment
|
58
|
+
span.guid
|
59
|
+
end
|
60
|
+
end
|
61
|
+
alias_method :span_id, :current_span_id
|
62
|
+
|
63
|
+
# Returns a boolean indicating whether the current_transaction
|
64
|
+
# is sampled, or +nil+ if there is no current transaction.
|
65
|
+
#
|
66
|
+
# @api public
|
67
|
+
def transaction_sampled?
|
68
|
+
if txn = current_transaction
|
69
|
+
txn.sampled?
|
70
|
+
end
|
71
|
+
end
|
72
|
+
alias_method :sampled?, :transaction_sampled?
|
73
|
+
|
74
|
+
# Runs the given block of code in a transaction.
|
75
|
+
#
|
76
|
+
# @param [String] name reserved for New Relic internal use
|
77
|
+
#
|
78
|
+
# @param [String] partial_name a meaningful name for this
|
79
|
+
# transaction (e.g., +blogs/index+); the Ruby agent will add a
|
80
|
+
# New-Relic-specific prefix
|
81
|
+
#
|
82
|
+
# @param [Symbol] category +:web+ for web transactions or
|
83
|
+
# +:background+ for background transactions
|
84
|
+
#
|
85
|
+
# @param [Hash] options reserved for New Relic internal use
|
86
|
+
#
|
87
|
+
# @api public
|
88
|
+
def in_transaction(name: nil,
|
89
|
+
partial_name: nil,
|
90
|
+
category: nil,
|
91
|
+
options: {})
|
92
|
+
|
93
|
+
finishable = start_transaction_or_segment(
|
94
|
+
name: name,
|
95
|
+
partial_name: partial_name,
|
96
|
+
category: category,
|
97
|
+
options: options
|
98
|
+
)
|
99
|
+
|
100
|
+
begin
|
101
|
+
# We shouldn't raise from Tracer.start_transaction_or_segment, but
|
102
|
+
# only wrap the yield to be absolutely sure we don't report agent
|
103
|
+
# problems as app errors
|
104
|
+
yield
|
105
|
+
rescue => exception
|
106
|
+
current_transaction.notice_error(exception)
|
107
|
+
raise
|
108
|
+
ensure
|
109
|
+
finishable.finish if finishable
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
# Starts a segment on the current transaction (if one exists)
|
114
|
+
# or starts a new transaction otherwise.
|
115
|
+
#
|
116
|
+
# @param [String] name reserved for New Relic internal use
|
117
|
+
#
|
118
|
+
# @param [String] partial_name a meaningful name for this
|
119
|
+
# transaction (e.g., +blogs/index+); the Ruby agent will add a
|
120
|
+
# New-Relic-specific prefix
|
121
|
+
#
|
122
|
+
# @param [Symbol] category +:web+ for web transactions or
|
123
|
+
# +:task+ for background transactions
|
124
|
+
#
|
125
|
+
# @param [Hash] options reserved for New Relic internal use
|
126
|
+
#
|
127
|
+
# @return [Object, #finish] an object that responds to
|
128
|
+
# +finish+; you _must_ call +finish+ on it at the end of the
|
129
|
+
# code you're tracing
|
130
|
+
#
|
131
|
+
# @api public
|
132
|
+
def start_transaction_or_segment(name: nil,
|
133
|
+
partial_name: nil,
|
134
|
+
category: nil,
|
135
|
+
options: {})
|
136
|
+
if name.nil? && partial_name.nil?
|
137
|
+
raise ArgumentError, 'missing required argument: name or partial_name'
|
138
|
+
end
|
139
|
+
if category.nil?
|
140
|
+
raise ArgumentError, 'missing required argument: category'
|
141
|
+
end
|
142
|
+
|
143
|
+
if name
|
144
|
+
options[:transaction_name] = name
|
145
|
+
else
|
146
|
+
options[:transaction_name] = Transaction.name_from_partial(
|
147
|
+
partial_name,
|
148
|
+
category
|
149
|
+
)
|
150
|
+
end
|
151
|
+
|
152
|
+
if (txn = current_transaction)
|
153
|
+
txn.create_nested_segment(category, options)
|
154
|
+
else
|
155
|
+
Transaction.start_new_transaction(state, category, options)
|
156
|
+
end
|
157
|
+
|
158
|
+
rescue ArgumentError
|
159
|
+
raise
|
160
|
+
rescue => exception
|
161
|
+
log_error('start_transaction_or_segment', exception)
|
162
|
+
end
|
163
|
+
|
164
|
+
# Takes name or partial_name and a category.
|
165
|
+
# Returns a transaction instance or nil
|
166
|
+
def start_transaction(name: nil,
|
167
|
+
partial_name: nil,
|
168
|
+
category: nil,
|
169
|
+
**options)
|
170
|
+
if name.nil? && partial_name.nil?
|
171
|
+
raise ArgumentError, 'missing required argument: name or partial_name'
|
172
|
+
end
|
173
|
+
if category.nil?
|
174
|
+
raise ArgumentError, 'missing required argument: category'
|
175
|
+
end
|
176
|
+
|
177
|
+
return current_transaction if current_transaction
|
178
|
+
|
179
|
+
if name
|
180
|
+
options[:transaction_name] = name
|
181
|
+
else
|
182
|
+
options[:transaction_name] = Transaction.name_from_partial(
|
183
|
+
partial_name,
|
184
|
+
category
|
185
|
+
)
|
186
|
+
end
|
187
|
+
|
188
|
+
Transaction.start_new_transaction(state,
|
189
|
+
category,
|
190
|
+
options)
|
191
|
+
rescue ArgumentError
|
192
|
+
raise
|
193
|
+
rescue => exception
|
194
|
+
log_error('start_transaction', exception)
|
195
|
+
end
|
196
|
+
|
197
|
+
def create_distributed_trace_payload
|
198
|
+
return unless txn = current_transaction
|
199
|
+
txn.distributed_tracer.create_distributed_trace_payload
|
200
|
+
end
|
201
|
+
|
202
|
+
def accept_distributed_trace_payload(payload)
|
203
|
+
return unless txn = current_transaction
|
204
|
+
txn.distributed_tracer.accept_distributed_trace_payload(payload)
|
205
|
+
end
|
206
|
+
|
207
|
+
# Returns the currently active segment in the transaction in
|
208
|
+
# progress for this thread, or +nil+ if no segment or
|
209
|
+
# transaction exists.
|
210
|
+
#
|
211
|
+
# @api public
|
212
|
+
def current_segment
|
213
|
+
return unless txn = current_transaction
|
214
|
+
txn.current_segment
|
215
|
+
end
|
216
|
+
|
217
|
+
# Creates and starts a general-purpose segment used to time
|
218
|
+
# arbitrary code.
|
219
|
+
#
|
220
|
+
# @param [String] name full name of the segment; the agent
|
221
|
+
# will not add a prefix. Third-party users should begin the
|
222
|
+
# name with +Custom/+; e.g.,
|
223
|
+
# +Custom/UserMailer/send_welcome_email+
|
224
|
+
#
|
225
|
+
# @param [optional, String, Array] unscoped_metrics additional
|
226
|
+
# unscoped metrics to record using this segment's timing
|
227
|
+
# information
|
228
|
+
#
|
229
|
+
# @param start_time [optional, Time] a +Time+ instance
|
230
|
+
# denoting the start time of the segment. Value is set by
|
231
|
+
# AbstractSegment#start if not given.
|
232
|
+
#
|
233
|
+
# @param parent [optional, Segment] Use for the rare cases
|
234
|
+
# (such as async) where the parent segment should be something
|
235
|
+
# other than the current segment
|
236
|
+
#
|
237
|
+
# @return [Segment] the newly created segment; you _must_ call
|
238
|
+
# +finish+ on it at the end of the code you're tracing
|
239
|
+
#
|
240
|
+
# @api public
|
241
|
+
def start_segment(name:nil,
|
242
|
+
unscoped_metrics:nil,
|
243
|
+
start_time: nil,
|
244
|
+
parent: nil)
|
245
|
+
|
246
|
+
# ruby 2.0.0 does not support required kwargs
|
247
|
+
raise ArgumentError, 'missing required argument: name' if name.nil?
|
248
|
+
|
249
|
+
segment = Transaction::Segment.new name, unscoped_metrics, start_time
|
250
|
+
start_and_add_segment segment, parent
|
251
|
+
|
252
|
+
rescue ArgumentError
|
253
|
+
raise
|
254
|
+
rescue => exception
|
255
|
+
log_error('start_segment', exception)
|
256
|
+
end
|
257
|
+
|
258
|
+
UNKNOWN = "Unknown".freeze
|
259
|
+
OTHER = "other".freeze
|
260
|
+
|
261
|
+
# Creates and starts a datastore segment used to time
|
262
|
+
# datastore operations.
|
263
|
+
#
|
264
|
+
# @param [String] product the datastore name for use in metric
|
265
|
+
# naming, e.g. "FauxDB"
|
266
|
+
#
|
267
|
+
# @param [String] operation the name of the operation
|
268
|
+
# (e.g. "select"), often named after the method that's being
|
269
|
+
# instrumented.
|
270
|
+
#
|
271
|
+
# @param [optional, String] collection the collection name for use in
|
272
|
+
# statement-level metrics (i.e. table or model name)
|
273
|
+
#
|
274
|
+
# @param [optional, String] host the host this database
|
275
|
+
# instance is running on
|
276
|
+
#
|
277
|
+
# @param [optional, String] port_path_or_id TCP port, file
|
278
|
+
# path, UNIX domain socket, or other connection-related info
|
279
|
+
#
|
280
|
+
# @param [optional, String] database_name the name of this
|
281
|
+
# database
|
282
|
+
#
|
283
|
+
# @param start_time [optional, Time] a +Time+ instance
|
284
|
+
# denoting the start time of the segment. Value is set by
|
285
|
+
# AbstractSegment#start if not given.
|
286
|
+
#
|
287
|
+
# @param parent [optional, Segment] Use for the rare cases
|
288
|
+
# (such as async) where the parent segment should be something
|
289
|
+
# other than the current segment
|
290
|
+
#
|
291
|
+
# @return [DatastoreSegment] the newly created segment; you
|
292
|
+
# _must_ call +finish+ on it at the end of the code you're
|
293
|
+
# tracing
|
294
|
+
#
|
295
|
+
# @api public
|
296
|
+
def start_datastore_segment(product: nil,
|
297
|
+
operation: nil,
|
298
|
+
collection: nil,
|
299
|
+
host: nil,
|
300
|
+
port_path_or_id: nil,
|
301
|
+
database_name: nil,
|
302
|
+
start_time: nil,
|
303
|
+
parent: nil)
|
304
|
+
|
305
|
+
product ||= UNKNOWN
|
306
|
+
operation ||= OTHER
|
307
|
+
|
308
|
+
segment = Transaction::DatastoreSegment.new product, operation, collection, host, port_path_or_id, database_name
|
309
|
+
start_and_add_segment segment, parent
|
310
|
+
|
311
|
+
rescue ArgumentError
|
312
|
+
raise
|
313
|
+
rescue => exception
|
314
|
+
log_error('start_datastore_segment', exception)
|
315
|
+
end
|
316
|
+
|
317
|
+
# Creates and starts an external request segment using the
|
318
|
+
# given library, URI, and procedure. This is used to time
|
319
|
+
# external calls made over HTTP.
|
320
|
+
#
|
321
|
+
# @param [String] library a string of the class name of the library used to
|
322
|
+
# make the external call, for example, 'Net::HTTP'.
|
323
|
+
#
|
324
|
+
# @param [String, URI] uri indicates the URI to which the
|
325
|
+
# external request is being made. The URI should begin with the protocol,
|
326
|
+
# for example, 'https://github.com'.
|
327
|
+
#
|
328
|
+
# @param [String] procedure the HTTP method being used for the external
|
329
|
+
# request as a string, for example, 'GET'.
|
330
|
+
#
|
331
|
+
# @param start_time [optional, Time] a +Time+ instance
|
332
|
+
# denoting the start time of the segment. Value is set by
|
333
|
+
# AbstractSegment#start if not given.
|
334
|
+
#
|
335
|
+
# @param parent [optional, Segment] Use for the rare cases
|
336
|
+
# (such as async) where the parent segment should be something
|
337
|
+
# other than the current segment
|
338
|
+
#
|
339
|
+
# @return [ExternalRequestSegment] the newly created segment;
|
340
|
+
# you _must_ call +finish+ on it at the end of the code
|
341
|
+
# you're tracing
|
342
|
+
#
|
343
|
+
# @api public
|
344
|
+
def start_external_request_segment(library: nil,
|
345
|
+
uri: nil,
|
346
|
+
procedure: nil,
|
347
|
+
start_time: nil,
|
348
|
+
parent: nil)
|
349
|
+
|
350
|
+
# ruby 2.0.0 does not support required kwargs
|
351
|
+
raise ArgumentError, 'missing required argument: library' if library.nil?
|
352
|
+
raise ArgumentError, 'missing required argument: uri' if uri.nil?
|
353
|
+
raise ArgumentError, 'missing required argument: procedure' if procedure.nil?
|
354
|
+
|
355
|
+
segment = Transaction::ExternalRequestSegment.new library, uri, procedure, start_time
|
356
|
+
start_and_add_segment segment, parent
|
357
|
+
|
358
|
+
rescue ArgumentError
|
359
|
+
raise
|
360
|
+
rescue => exception
|
361
|
+
log_error('start_external_request_segment', exception)
|
362
|
+
end
|
363
|
+
|
364
|
+
# Will potentially capture and notice an error at the
|
365
|
+
# segment that was executing when error occurred.
|
366
|
+
# if passed +segment+ is something that doesn't
|
367
|
+
# respond to +notice_segment_error+ then this method
|
368
|
+
# is effectively just a yield to the given &block
|
369
|
+
def capture_segment_error segment
|
370
|
+
return unless block_given?
|
371
|
+
yield
|
372
|
+
rescue => exception
|
373
|
+
if segment && segment.is_a?(Transaction::AbstractSegment)
|
374
|
+
segment.notice_error exception
|
375
|
+
end
|
376
|
+
raise
|
377
|
+
end
|
378
|
+
|
379
|
+
# For New Relic internal use only.
|
380
|
+
def start_message_broker_segment(action: nil,
|
381
|
+
library: nil,
|
382
|
+
destination_type: nil,
|
383
|
+
destination_name: nil,
|
384
|
+
headers: nil,
|
385
|
+
parameters: nil,
|
386
|
+
start_time: nil,
|
387
|
+
parent: nil)
|
388
|
+
|
389
|
+
# ruby 2.0.0 does not support required kwargs
|
390
|
+
raise ArgumentError, 'missing required argument: action' if action.nil?
|
391
|
+
raise ArgumentError, 'missing required argument: library' if library.nil?
|
392
|
+
raise ArgumentError, 'missing required argument: destination_type' if destination_type.nil?
|
393
|
+
raise ArgumentError, 'missing required argument: destination_name' if destination_name.nil?
|
394
|
+
|
395
|
+
segment = Transaction::MessageBrokerSegment.new(
|
396
|
+
action: action,
|
397
|
+
library: library,
|
398
|
+
destination_type: destination_type,
|
399
|
+
destination_name: destination_name,
|
400
|
+
headers: headers,
|
401
|
+
parameters: parameters,
|
402
|
+
start_time: start_time
|
403
|
+
)
|
404
|
+
start_and_add_segment segment, parent
|
405
|
+
|
406
|
+
rescue ArgumentError
|
407
|
+
raise
|
408
|
+
rescue => exception
|
409
|
+
log_error('start_datastore_segment', exception)
|
410
|
+
end
|
411
|
+
|
412
|
+
# This method should only be used by Tracer for access to the
|
413
|
+
# current thread's state or to provide read-only accessors for other threads
|
414
|
+
#
|
415
|
+
# If ever exposed, this requires additional synchronization
|
416
|
+
def state_for(thread)
|
417
|
+
state = thread[:newrelic_tracer_state]
|
418
|
+
|
419
|
+
if state.nil?
|
420
|
+
state = Tracer::State.new
|
421
|
+
thread[:newrelic_tracer_state] = state
|
422
|
+
end
|
423
|
+
|
424
|
+
state
|
425
|
+
end
|
426
|
+
|
427
|
+
alias_method :tl_state_for, :state_for
|
428
|
+
|
429
|
+
def clear_state
|
430
|
+
Thread.current[:newrelic_tracer_state] = nil
|
431
|
+
end
|
432
|
+
|
433
|
+
alias_method :tl_clear, :clear_state
|
434
|
+
|
435
|
+
private
|
436
|
+
|
437
|
+
def start_and_add_segment segment, parent = nil
|
438
|
+
tracer_state = state
|
439
|
+
if (txn = tracer_state.current_transaction) &&
|
440
|
+
tracer_state.tracing_enabled?
|
441
|
+
txn.add_segment segment, parent
|
442
|
+
else
|
443
|
+
segment.record_metrics = false
|
444
|
+
end
|
445
|
+
segment.start
|
446
|
+
segment
|
447
|
+
end
|
448
|
+
|
449
|
+
def log_error(method_name, exception)
|
450
|
+
NewRelic::Agent.logger.error("Exception during Tracer.#{method_name}", exception)
|
451
|
+
nil
|
452
|
+
end
|
453
|
+
end
|
454
|
+
|
455
|
+
# This is THE location to store thread local information during a transaction
|
456
|
+
# Need a new piece of data? Add a method here, NOT a new thread local variable.
|
457
|
+
class State
|
458
|
+
|
459
|
+
def initialize
|
460
|
+
@untraced = []
|
461
|
+
@current_transaction = nil
|
462
|
+
@record_sql = nil
|
463
|
+
end
|
464
|
+
|
465
|
+
# This starts the timer for the transaction.
|
466
|
+
def reset(transaction=nil)
|
467
|
+
# We purposefully don't reset @untraced or @record_sql
|
468
|
+
# since those are managed by NewRelic::Agent.disable_* calls explicitly
|
469
|
+
# and (more importantly) outside the scope of a transaction
|
470
|
+
|
471
|
+
@current_transaction = transaction
|
472
|
+
@sql_sampler_transaction_data = nil
|
473
|
+
end
|
474
|
+
|
475
|
+
# Current transaction stack
|
476
|
+
attr_reader :current_transaction
|
477
|
+
|
478
|
+
# Execution tracing on current thread
|
479
|
+
attr_accessor :untraced
|
480
|
+
|
481
|
+
def push_traced(should_trace)
|
482
|
+
@untraced << should_trace
|
483
|
+
end
|
484
|
+
|
485
|
+
def pop_traced
|
486
|
+
@untraced.pop if @untraced
|
487
|
+
end
|
488
|
+
|
489
|
+
def is_execution_traced?
|
490
|
+
@untraced.nil? || @untraced.last != false
|
491
|
+
end
|
492
|
+
|
493
|
+
alias_method :tracing_enabled?, :is_execution_traced?
|
494
|
+
|
495
|
+
# TT's and SQL
|
496
|
+
attr_accessor :record_sql
|
497
|
+
|
498
|
+
def is_sql_recorded?
|
499
|
+
@record_sql != false
|
500
|
+
end
|
501
|
+
|
502
|
+
# Sql Sampler Transaction Data
|
503
|
+
attr_accessor :sql_sampler_transaction_data
|
504
|
+
end
|
505
|
+
end
|
506
|
+
|
507
|
+
TransactionState = Tracer
|
508
|
+
end
|
509
|
+
end
|