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
|
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
|
@@ -9,7 +9,8 @@ module NewRelic
|
|
9
9
|
SUPPORTED_PREFIXES = /^new_relic_|^newrelic_/i
|
10
10
|
SPECIAL_CASE_KEYS = [
|
11
11
|
'NEW_RELIC_ENV', # read by NewRelic::Control::Frameworks::Ruby
|
12
|
-
'NEW_RELIC_LOG' # read by set_log_file
|
12
|
+
'NEW_RELIC_LOG', # read by set_log_file
|
13
|
+
/^NEW_RELIC_METADATA_/ # read by NewRelic::Agent::Connect::RequestBuilder
|
13
14
|
]
|
14
15
|
|
15
16
|
attr_accessor :alias_map, :type_map
|
@@ -66,7 +67,8 @@ module NewRelic
|
|
66
67
|
nr_env_var_keys = collect_new_relic_environment_variable_keys
|
67
68
|
|
68
69
|
nr_env_var_keys.each do |key|
|
69
|
-
next if SPECIAL_CASE_KEYS.
|
70
|
+
next if SPECIAL_CASE_KEYS.any? { |pattern| pattern === key.upcase }
|
71
|
+
|
70
72
|
set_value_from_environment_variable(key)
|
71
73
|
end
|
72
74
|
end
|
@@ -0,0 +1,45 @@
|
|
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
|
+
module NewRelic
|
6
|
+
module Agent
|
7
|
+
module Configuration
|
8
|
+
module EventHarvestConfig
|
9
|
+
|
10
|
+
extend self
|
11
|
+
|
12
|
+
EVENT_HARVEST_CONFIG_KEY_MAPPING = {
|
13
|
+
:analytic_event_data => :'analytics_events.max_samples_stored',
|
14
|
+
:custom_event_data => :'custom_insights_events.max_samples_stored',
|
15
|
+
:error_event_data => :'error_collector.max_event_samples_stored',
|
16
|
+
:span_event_data => :'span_events.max_samples_stored'
|
17
|
+
}
|
18
|
+
|
19
|
+
def from_config(config)
|
20
|
+
{:harvest_limits => EVENT_HARVEST_CONFIG_KEY_MAPPING.inject({}) do
|
21
|
+
|connect_payload, (connect_payload_key, config_key)|
|
22
|
+
connect_payload[connect_payload_key] = config[config_key]
|
23
|
+
connect_payload
|
24
|
+
end
|
25
|
+
}
|
26
|
+
end
|
27
|
+
|
28
|
+
def to_config_hash(connect_reply)
|
29
|
+
event_harvest_interval = connect_reply['event_harvest_config']['report_period_ms'] / 1000
|
30
|
+
config_hash = EVENT_HARVEST_CONFIG_KEY_MAPPING.inject({}) do
|
31
|
+
|event_harvest_config, (connect_payload_key, config_key)|
|
32
|
+
if harvest_limit = connect_reply['event_harvest_config']['harvest_limits'][connect_payload_key.to_s]
|
33
|
+
event_harvest_config[config_key] = harvest_limit
|
34
|
+
report_period_key = :"event_report_period.#{connect_payload_key}"
|
35
|
+
event_harvest_config[report_period_key] = event_harvest_interval
|
36
|
+
end
|
37
|
+
event_harvest_config
|
38
|
+
end
|
39
|
+
config_hash[:event_report_period] = event_harvest_interval
|
40
|
+
config_hash
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
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 'new_relic/agent/configuration/dotted_hash'
|
6
6
|
|
@@ -10,11 +10,10 @@ module NewRelic
|
|
10
10
|
class HighSecuritySource < DottedHash
|
11
11
|
def initialize(local_settings)
|
12
12
|
super({
|
13
|
-
:ssl => true,
|
14
|
-
|
15
13
|
:capture_params => false,
|
16
14
|
:'resque.capture_params' => false,
|
17
15
|
:'sidekiq.capture_params' => false,
|
16
|
+
:'attributes.include' => [],
|
18
17
|
|
19
18
|
:'transaction_tracer.record_sql' => record_sql_setting(local_settings, :'transaction_tracer.record_sql'),
|
20
19
|
:'slow_sql.record_sql' => record_sql_setting(local_settings, :'slow_sql.record_sql'),
|
@@ -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 'forwardable'
|
6
6
|
require 'new_relic/agent/configuration/mask_defaults'
|
@@ -9,6 +9,7 @@ require 'new_relic/agent/configuration/default_source'
|
|
9
9
|
require 'new_relic/agent/configuration/server_source'
|
10
10
|
require 'new_relic/agent/configuration/environment_source'
|
11
11
|
require 'new_relic/agent/configuration/high_security_source'
|
12
|
+
require 'new_relic/agent/configuration/security_policy_source'
|
12
13
|
|
13
14
|
module NewRelic
|
14
15
|
module Agent
|
@@ -44,12 +45,13 @@ module NewRelic
|
|
44
45
|
|
45
46
|
def remove_config_type(sym)
|
46
47
|
source = case sym
|
47
|
-
when :
|
48
|
-
when :
|
49
|
-
when :
|
50
|
-
when :
|
51
|
-
when :
|
52
|
-
when :
|
48
|
+
when :security_policy then @security_policy_source
|
49
|
+
when :high_security then @high_security_source
|
50
|
+
when :environment then @environment_source
|
51
|
+
when :server then @server_source
|
52
|
+
when :manual then @manual_source
|
53
|
+
when :yaml then @yaml_source
|
54
|
+
when :default then @default_source
|
53
55
|
end
|
54
56
|
|
55
57
|
remove_config(source)
|
@@ -57,12 +59,13 @@ module NewRelic
|
|
57
59
|
|
58
60
|
def remove_config(source)
|
59
61
|
case source
|
60
|
-
when
|
61
|
-
when
|
62
|
-
when
|
63
|
-
when
|
64
|
-
when
|
65
|
-
when
|
62
|
+
when SecurityPolicySource then @security_policy_source = nil
|
63
|
+
when HighSecuritySource then @high_security_source = nil
|
64
|
+
when EnvironmentSource then @environment_source = nil
|
65
|
+
when ServerSource then @server_source = nil
|
66
|
+
when ManualSource then @manual_source = nil
|
67
|
+
when YamlSource then @yaml_source = nil
|
68
|
+
when DefaultSource then @default_source = nil
|
66
69
|
else
|
67
70
|
@configs_for_testing.delete_if {|src,lvl| src == source}
|
68
71
|
end
|
@@ -78,12 +81,13 @@ module NewRelic
|
|
78
81
|
|
79
82
|
invoke_callbacks(:add, source)
|
80
83
|
case source
|
81
|
-
when
|
82
|
-
when
|
83
|
-
when
|
84
|
-
when
|
85
|
-
when
|
86
|
-
when
|
84
|
+
when SecurityPolicySource then @security_policy_source = source
|
85
|
+
when HighSecuritySource then @high_security_source = source
|
86
|
+
when EnvironmentSource then @environment_source = source
|
87
|
+
when ServerSource then @server_source = source
|
88
|
+
when ManualSource then @manual_source = source
|
89
|
+
when YamlSource then @yaml_source = source
|
90
|
+
when DefaultSource then @default_source = source
|
87
91
|
else
|
88
92
|
NewRelic::Agent.logger.warn("Invalid config format; config will be ignored: #{source}")
|
89
93
|
end
|
@@ -91,6 +95,7 @@ module NewRelic
|
|
91
95
|
reset_cache
|
92
96
|
log_config(:add, source)
|
93
97
|
|
98
|
+
notify_server_source_added if ServerSource === source
|
94
99
|
notify_finished_configuring if !was_finished && finished_configuring?
|
95
100
|
end
|
96
101
|
|
@@ -167,8 +172,19 @@ module NewRelic
|
|
167
172
|
end
|
168
173
|
end
|
169
174
|
|
175
|
+
# This event is intended to be fired every time the server source is
|
176
|
+
# applied. This happens after the agent's initial connect, and again
|
177
|
+
# on every forced reconnect.
|
178
|
+
def notify_server_source_added
|
179
|
+
NewRelic::Agent.instance.events.notify(:server_source_configuration_added)
|
180
|
+
end
|
181
|
+
|
182
|
+
# This event is intended to be fired once during the entire lifespan of
|
183
|
+
# an agent run, after the server source has been applied for the first
|
184
|
+
# time. This should indicate that all configuration has been applied,
|
185
|
+
# and the main functions of the agent are safe to start.
|
170
186
|
def notify_finished_configuring
|
171
|
-
NewRelic::Agent.instance.events.notify(:
|
187
|
+
NewRelic::Agent.instance.events.notify(:initial_configuration_complete)
|
172
188
|
end
|
173
189
|
|
174
190
|
def finished_configuring?
|
@@ -212,14 +228,6 @@ module NewRelic
|
|
212
228
|
end
|
213
229
|
end
|
214
230
|
|
215
|
-
def app_names
|
216
|
-
case NewRelic::Agent.config[:app_name]
|
217
|
-
when Array then NewRelic::Agent.config[:app_name]
|
218
|
-
when String then NewRelic::Agent.config[:app_name].split(';')
|
219
|
-
else []
|
220
|
-
end
|
221
|
-
end
|
222
|
-
|
223
231
|
MALFORMED_LABELS_WARNING = "Skipping malformed labels configuration"
|
224
232
|
PARSING_LABELS_FAILURE = "Failure during parsing labels. Ignoring and carrying on with connect."
|
225
233
|
|
@@ -323,14 +331,15 @@ module NewRelic
|
|
323
331
|
|
324
332
|
# Generally only useful during initial construction and tests
|
325
333
|
def reset_to_defaults
|
326
|
-
@
|
327
|
-
@
|
328
|
-
@
|
329
|
-
@
|
330
|
-
@
|
331
|
-
@
|
334
|
+
@security_policy_source = nil
|
335
|
+
@high_security_source = nil
|
336
|
+
@environment_source = EnvironmentSource.new
|
337
|
+
@server_source = nil
|
338
|
+
@manual_source = nil
|
339
|
+
@yaml_source = nil
|
340
|
+
@default_source = DefaultSource.new
|
332
341
|
|
333
|
-
@configs_for_testing
|
342
|
+
@configs_for_testing = []
|
334
343
|
|
335
344
|
reset_cache
|
336
345
|
end
|
@@ -350,13 +359,14 @@ module NewRelic
|
|
350
359
|
end
|
351
360
|
|
352
361
|
def delete_all_configs_for_testing
|
353
|
-
@
|
354
|
-
@
|
355
|
-
@
|
356
|
-
@
|
357
|
-
@
|
358
|
-
@
|
359
|
-
@
|
362
|
+
@security_policy_source = nil
|
363
|
+
@high_security_source = nil
|
364
|
+
@environment_source = nil
|
365
|
+
@server_source = nil
|
366
|
+
@manual_source = nil
|
367
|
+
@yaml_source = nil
|
368
|
+
@default_source = nil
|
369
|
+
@configs_for_testing = []
|
360
370
|
end
|
361
371
|
|
362
372
|
def num_configs_for_testing
|
@@ -370,7 +380,8 @@ module NewRelic
|
|
370
380
|
private
|
371
381
|
|
372
382
|
def config_stack
|
373
|
-
stack = [@
|
383
|
+
stack = [@security_policy_source,
|
384
|
+
@high_security_source,
|
374
385
|
@environment_source,
|
375
386
|
@server_source,
|
376
387
|
@manual_source,
|
@@ -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 'new_relic/agent/configuration/dotted_hash'
|
6
6
|
|
@@ -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
|
@@ -0,0 +1,238 @@
|
|
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/configuration/dotted_hash'
|
6
|
+
|
7
|
+
module NewRelic
|
8
|
+
module Agent
|
9
|
+
module Configuration
|
10
|
+
class SecurityPolicySource < DottedHash
|
11
|
+
class << self
|
12
|
+
def enabled?(option)
|
13
|
+
Agent.config[option]
|
14
|
+
end
|
15
|
+
|
16
|
+
def record_sql_enabled?(option)
|
17
|
+
Agent.config[option] == 'obfuscated' ||
|
18
|
+
Agent.config[option] == 'raw' ||
|
19
|
+
false
|
20
|
+
end
|
21
|
+
|
22
|
+
def not_empty?(option)
|
23
|
+
!Agent.config[option].empty?
|
24
|
+
end
|
25
|
+
|
26
|
+
def change_setting(policies, option, new_value)
|
27
|
+
current_value = Agent.config[option]
|
28
|
+
unless current_value == new_value
|
29
|
+
NewRelic::Agent.logger.info \
|
30
|
+
"Setting changed: {#{option}: from #{current_value} " \
|
31
|
+
"to #{new_value}}. Source: SecurityPolicySource"
|
32
|
+
end
|
33
|
+
policies[option] = new_value
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
# The keys of the security settings map are the names of security
|
38
|
+
# policies received from the server. They map to multiple configuration
|
39
|
+
# options in the local config. There is a hash of metadata that
|
40
|
+
# corresponds to each configuration option with the following keys:
|
41
|
+
#
|
42
|
+
# option: the configuration option name
|
43
|
+
# supported: true if the agent has one or more corresponding
|
44
|
+
# configuration options
|
45
|
+
# enabled_fn: a callable that takes the configuration option and returns
|
46
|
+
# true if the option is enabled, false otherwise
|
47
|
+
# disabled_value: the value of the configuration option when it is
|
48
|
+
# disabled
|
49
|
+
# permitted_fn: a callable, that will be executed if an option is
|
50
|
+
# permitted by the security policy and is also enabled by the config
|
51
|
+
|
52
|
+
SECURITY_SETTINGS_MAP = {
|
53
|
+
"record_sql" => [
|
54
|
+
{
|
55
|
+
option: :'transaction_tracer.record_sql',
|
56
|
+
supported: true,
|
57
|
+
enabled_fn: method(:record_sql_enabled?),
|
58
|
+
disabled_value: 'off',
|
59
|
+
permitted_fn: proc { |policies|
|
60
|
+
change_setting(policies, :'transaction_tracer.record_sql', 'obfuscated')
|
61
|
+
}
|
62
|
+
},
|
63
|
+
{
|
64
|
+
option: :'slow_sql.record_sql',
|
65
|
+
supported: true,
|
66
|
+
enabled_fn: method(:record_sql_enabled?),
|
67
|
+
disabled_value: 'off',
|
68
|
+
permitted_fn: proc { |policies|
|
69
|
+
change_setting(policies, :'slow_sql.record_sql', 'obfuscated')
|
70
|
+
}
|
71
|
+
},
|
72
|
+
{
|
73
|
+
option: :'mongo.capture_queries',
|
74
|
+
supported: true,
|
75
|
+
enabled_fn: method(:enabled?),
|
76
|
+
disabled_value: false,
|
77
|
+
permitted_fn: proc{ |policies|
|
78
|
+
change_setting(policies, :'mongo.obfuscate_queries', true)
|
79
|
+
}
|
80
|
+
},
|
81
|
+
{
|
82
|
+
option: :'transaction_tracer.record_redis_arguments',
|
83
|
+
supported: true,
|
84
|
+
enabled_fn: method(:enabled?),
|
85
|
+
disabled_value: false,
|
86
|
+
permitted_fn: nil
|
87
|
+
}
|
88
|
+
],
|
89
|
+
"attributes_include" => [
|
90
|
+
{
|
91
|
+
option: :'attributes.include',
|
92
|
+
supported: true,
|
93
|
+
enabled_fn: method(:not_empty?),
|
94
|
+
disabled_value: [],
|
95
|
+
permitted_fn: nil
|
96
|
+
},
|
97
|
+
{
|
98
|
+
option: :'transaction_tracer.attributes.include',
|
99
|
+
supported: true,
|
100
|
+
enabled_fn: method(:not_empty?),
|
101
|
+
disabled_value: [],
|
102
|
+
permitted_fn: nil
|
103
|
+
},
|
104
|
+
{
|
105
|
+
option: :'transaction_events.attributes.include',
|
106
|
+
supported: true,
|
107
|
+
enabled_fn: method(:not_empty?),
|
108
|
+
disabled_value: [],
|
109
|
+
permitted_fn: nil
|
110
|
+
},
|
111
|
+
{
|
112
|
+
option: :'error_collector.attributes.include',
|
113
|
+
supported: true,
|
114
|
+
enabled_fn: method(:not_empty?),
|
115
|
+
disabled_value: [],
|
116
|
+
permitted_fn: nil
|
117
|
+
},
|
118
|
+
{
|
119
|
+
option: :'browser_monitoring.attributes.include',
|
120
|
+
supported: true,
|
121
|
+
enabled_fn: method(:not_empty?),
|
122
|
+
disabled_value: [],
|
123
|
+
permitted_fn: nil
|
124
|
+
},
|
125
|
+
{
|
126
|
+
option: :'span_events.attributes.include',
|
127
|
+
supported: true,
|
128
|
+
enabled_fn: method(:not_empty?),
|
129
|
+
disabled_value: [],
|
130
|
+
permitted_fn: nil
|
131
|
+
},
|
132
|
+
{
|
133
|
+
option: :'transaction_segments.attributes.include',
|
134
|
+
supported: true,
|
135
|
+
enabled_fn: method(:not_empty?),
|
136
|
+
disabled_value: [],
|
137
|
+
permitted_fn: nil
|
138
|
+
}
|
139
|
+
],
|
140
|
+
"allow_raw_exception_messages" => [
|
141
|
+
{
|
142
|
+
option: :'strip_exception_messages.enabled',
|
143
|
+
supported: true,
|
144
|
+
enabled_fn: method(:enabled?),
|
145
|
+
disabled_value: false,
|
146
|
+
permitted_fn: nil
|
147
|
+
}
|
148
|
+
],
|
149
|
+
"custom_events" => [
|
150
|
+
{
|
151
|
+
option: :'custom_insights_events.enabled',
|
152
|
+
supported: true,
|
153
|
+
enabled_fn: method(:enabled?),
|
154
|
+
disabled_value: false,
|
155
|
+
permitted_fn: nil
|
156
|
+
}
|
157
|
+
],
|
158
|
+
"custom_parameters" => [
|
159
|
+
{
|
160
|
+
option: :'custom_attributes.enabled',
|
161
|
+
supported: true,
|
162
|
+
enabled_fn: method(:enabled?),
|
163
|
+
disabled_value: false,
|
164
|
+
permitted_fn: nil
|
165
|
+
}
|
166
|
+
],
|
167
|
+
"custom_instrumentation_editor" => [
|
168
|
+
{
|
169
|
+
option: nil,
|
170
|
+
supported: false,
|
171
|
+
enabled_fn: nil,
|
172
|
+
disabled_value: nil,
|
173
|
+
permitted_fn: nil
|
174
|
+
}
|
175
|
+
],
|
176
|
+
"message_parameters" => [
|
177
|
+
{
|
178
|
+
option: :'message_tracer.segment_parameters.enabled',
|
179
|
+
supported: true,
|
180
|
+
enabled_fn: method(:enabled?),
|
181
|
+
disabled_value: false,
|
182
|
+
permitted_fn: nil
|
183
|
+
}
|
184
|
+
],
|
185
|
+
"job_arguments" => [
|
186
|
+
{
|
187
|
+
option: :'resque.capture_params',
|
188
|
+
supported: true,
|
189
|
+
enabled_fn: method(:enabled?),
|
190
|
+
disabled_value: false,
|
191
|
+
permitted_fn: nil
|
192
|
+
},
|
193
|
+
{
|
194
|
+
option: :'sidekiq.capture_params',
|
195
|
+
supported: true,
|
196
|
+
enabled_fn: method(:enabled?),
|
197
|
+
disabled_value: false,
|
198
|
+
permitted_fn: nil
|
199
|
+
}
|
200
|
+
]
|
201
|
+
}
|
202
|
+
|
203
|
+
def initialize(security_policies)
|
204
|
+
super(build_overrides(security_policies))
|
205
|
+
end
|
206
|
+
|
207
|
+
ENABLED = "enabled".freeze
|
208
|
+
COLON_COLON = "::".freeze
|
209
|
+
|
210
|
+
def build_overrides(security_policies)
|
211
|
+
security_policies.inject({}) do |settings, (policy_name, policy_settings)|
|
212
|
+
SECURITY_SETTINGS_MAP[policy_name].each do |policy|
|
213
|
+
next unless policy[:supported]
|
214
|
+
if policy_settings[ENABLED]
|
215
|
+
if policy[:enabled_fn].call(policy[:option])
|
216
|
+
if permitted_fn = policy[:permitted_fn]
|
217
|
+
permitted_fn.call(settings)
|
218
|
+
end
|
219
|
+
else
|
220
|
+
config_source = Agent.config.source(policy[:option]).class.name.split(COLON_COLON).last
|
221
|
+
NewRelic::Agent.logger.info \
|
222
|
+
"Setting applied: {#{policy[:option]}: #{policy[:disabled_value]}}. " \
|
223
|
+
"Source: #{config_source}"
|
224
|
+
end
|
225
|
+
else
|
226
|
+
settings[policy[:option]] = policy[:disabled_value]
|
227
|
+
NewRelic::Agent.logger.info \
|
228
|
+
"Setting applied: {#{policy[:option]}: #{policy[:disabled_value]}}. " \
|
229
|
+
"Source: SecurityPolicySource"
|
230
|
+
end
|
231
|
+
end
|
232
|
+
settings
|
233
|
+
end
|
234
|
+
end
|
235
|
+
end
|
236
|
+
end
|
237
|
+
end
|
238
|
+
end
|