newrelic_rpm 8.15.0 → 9.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.build_ignore +26 -0
- data/CHANGELOG.md +538 -44
- data/CONTRIBUTING.md +1 -1
- data/Gemfile +1 -1
- data/README.md +11 -6
- data/Rakefile +9 -9
- data/Thorfile +1 -1
- data/bin/newrelic +1 -0
- data/bin/newrelic_cmd +1 -0
- data/bin/nrdebug +36 -36
- data/init.rb +1 -1
- data/lib/new_relic/agent/agent.rb +3 -16
- data/lib/new_relic/agent/agent_helpers/connect.rb +5 -10
- data/lib/new_relic/agent/agent_helpers/harvest.rb +4 -4
- data/lib/new_relic/agent/agent_helpers/shutdown.rb +5 -5
- data/lib/new_relic/agent/agent_helpers/special_startup.rb +3 -4
- data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +47 -39
- data/lib/new_relic/agent/agent_helpers/startup.rb +13 -13
- data/lib/new_relic/agent/agent_helpers/transmit.rb +6 -6
- data/lib/new_relic/agent/agent_logger.rb +9 -9
- data/lib/new_relic/agent/attribute_filter.rb +2 -4
- data/lib/new_relic/agent/attribute_pre_filtering.rb +109 -0
- data/lib/new_relic/agent/attribute_processing.rb +2 -2
- data/lib/new_relic/agent/audit_logger.rb +5 -5
- data/lib/new_relic/agent/autostart.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command.rb +2 -2
- data/lib/new_relic/agent/commands/agent_command_router.rb +5 -4
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +8 -8
- data/lib/new_relic/agent/configuration/default_source.rb +428 -586
- data/lib/new_relic/agent/configuration/environment_source.rb +2 -2
- data/lib/new_relic/agent/configuration/high_security_source.rb +3 -5
- data/lib/new_relic/agent/configuration/manager.rb +16 -2
- data/lib/new_relic/agent/configuration/security_policy_source.rb +10 -26
- data/lib/new_relic/agent/configuration/server_source.rb +24 -24
- data/lib/new_relic/agent/configuration/yaml_source.rb +17 -4
- data/lib/new_relic/agent/connect/request_builder.rb +1 -1
- data/lib/new_relic/agent/connect/response_handler.rb +1 -1
- data/lib/new_relic/agent/custom_event_aggregator.rb +4 -4
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
- data/lib/new_relic/agent/database/obfuscator.rb +2 -2
- data/lib/new_relic/agent/database.rb +4 -18
- data/lib/new_relic/agent/datastores/metric_helper.rb +5 -5
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +11 -11
- data/lib/new_relic/agent/datastores/redis.rb +6 -6
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +8 -10
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +10 -10
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +7 -7
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +6 -6
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +7 -7
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +4 -4
- data/lib/new_relic/agent/distributed_tracing.rb +6 -6
- data/lib/new_relic/agent/error_collector.rb +36 -8
- data/lib/new_relic/agent/error_filter.rb +5 -5
- data/lib/new_relic/agent/error_trace_aggregator.rb +5 -4
- data/lib/new_relic/agent/event_loop.rb +3 -3
- data/lib/new_relic/agent/external.rb +1 -1
- data/lib/new_relic/agent/harvester.rb +1 -3
- data/lib/new_relic/agent/heap.rb +2 -1
- data/lib/new_relic/agent/hostname.rb +1 -1
- data/lib/new_relic/agent/http_clients/abstract.rb +9 -21
- data/lib/new_relic/agent/http_clients/async_http_wrappers.rb +83 -0
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +7 -3
- data/lib/new_relic/agent/http_clients/ethon_wrappers.rb +111 -0
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +7 -5
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +4 -0
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +6 -2
- data/lib/new_relic/agent/http_clients/httpx_wrappers.rb +93 -0
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +5 -1
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +8 -5
- data/lib/new_relic/agent/http_clients/uri_util.rb +2 -2
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +6 -19
- data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +42 -0
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +3 -2
- 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 +10 -10
- data/lib/new_relic/agent/instrumentation/active_job.rb +16 -3
- data/lib/new_relic/agent/instrumentation/active_job_subscriber.rb +41 -0
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +3 -3
- data/lib/new_relic/agent/instrumentation/active_record.rb +4 -3
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +38 -36
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +5 -4
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +2 -2
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +3 -2
- data/lib/new_relic/agent/instrumentation/active_storage.rb +4 -0
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +2 -30
- data/lib/new_relic/agent/instrumentation/active_support.rb +21 -6
- data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/chain.rb +69 -0
- data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/instrumentation.rb +13 -0
- data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/prepend.rb +37 -0
- data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger.rb +23 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +4 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger.rb +3 -1
- data/lib/new_relic/agent/instrumentation/active_support_subscriber.rb +41 -0
- data/lib/new_relic/agent/instrumentation/async_http/chain.rb +23 -0
- data/lib/new_relic/agent/instrumentation/async_http/instrumentation.rb +37 -0
- data/lib/new_relic/agent/instrumentation/async_http/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/async_http.rb +26 -0
- data/lib/new_relic/agent/instrumentation/bunny/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +12 -3
- data/lib/new_relic/agent/instrumentation/bunny.rb +1 -1
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/instrumentation.rb +3 -4
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +7 -6
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +9 -5
- data/lib/new_relic/agent/instrumentation/curb.rb +1 -1
- data/lib/new_relic/agent/instrumentation/custom_events.rb +12 -0
- data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +2 -1
- data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +1 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +4 -1
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +2 -1
- data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +8 -4
- data/lib/new_relic/agent/instrumentation/elasticsearch.rb +2 -2
- data/lib/new_relic/agent/instrumentation/ethon/chain.rb +39 -0
- data/lib/new_relic/agent/instrumentation/ethon/instrumentation.rb +105 -0
- data/lib/new_relic/agent/instrumentation/ethon/prepend.rb +35 -0
- data/lib/new_relic/agent/instrumentation/ethon.rb +39 -0
- data/lib/new_relic/agent/instrumentation/excon/middleware.rb +5 -1
- data/lib/new_relic/agent/instrumentation/excon.rb +3 -3
- data/lib/new_relic/agent/instrumentation/fiber/chain.rb +27 -0
- data/lib/new_relic/agent/instrumentation/fiber/instrumentation.rb +23 -0
- data/lib/new_relic/agent/instrumentation/fiber/prepend.rb +25 -0
- data/lib/new_relic/agent/instrumentation/fiber.rb +25 -0
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +8 -4
- data/lib/new_relic/agent/instrumentation/grape.rb +4 -4
- data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +7 -2
- data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +8 -4
- data/lib/new_relic/agent/instrumentation/grpc_client.rb +2 -2
- data/lib/new_relic/agent/instrumentation/grpc_server.rb +2 -2
- data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +4 -0
- data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +4 -0
- data/lib/new_relic/agent/instrumentation/httprb.rb +1 -1
- data/lib/new_relic/agent/instrumentation/httpx/chain.rb +20 -0
- data/lib/new_relic/agent/instrumentation/httpx/instrumentation.rb +51 -0
- data/lib/new_relic/agent/instrumentation/httpx/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/httpx.rb +27 -0
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
- data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +3 -0
- data/lib/new_relic/agent/instrumentation/logger.rb +1 -1
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +3 -1
- data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +14 -5
- data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +3 -1
- data/lib/new_relic/agent/instrumentation/memcache.rb +12 -12
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +3 -3
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +1 -1
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +6 -8
- data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +5 -1
- data/lib/new_relic/agent/instrumentation/net_http.rb +2 -2
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +46 -1
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +7 -3
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +2 -2
- data/lib/new_relic/agent/instrumentation/queue_time.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +7 -1
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +7 -2
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +4 -4
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +14 -1
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +12 -15
- data/lib/new_relic/agent/instrumentation/rake.rb +3 -3
- data/lib/new_relic/agent/instrumentation/redis/constants.rb +1 -1
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +6 -1
- data/lib/new_relic/agent/instrumentation/redis.rb +1 -1
- data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +4 -0
- data/lib/new_relic/agent/instrumentation/resque.rb +1 -1
- data/lib/new_relic/agent/instrumentation/roda/chain.rb +43 -0
- data/lib/new_relic/agent/instrumentation/roda/ignorer.rb +45 -0
- data/lib/new_relic/agent/instrumentation/roda/instrumentation.rb +68 -0
- data/lib/new_relic/agent/instrumentation/roda/prepend.rb +24 -0
- data/lib/new_relic/agent/instrumentation/roda/roda_transaction_namer.rb +29 -0
- data/lib/new_relic/agent/instrumentation/roda.rb +36 -0
- data/lib/new_relic/agent/instrumentation/sequel.rb +8 -9
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +10 -10
- data/lib/new_relic/agent/instrumentation/sidekiq/client.rb +4 -0
- data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +26 -3
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +6 -3
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +10 -5
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +2 -4
- data/lib/new_relic/agent/instrumentation/stripe.rb +28 -0
- data/lib/new_relic/agent/instrumentation/stripe_subscriber.rb +77 -0
- data/lib/new_relic/agent/instrumentation/thread/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +3 -8
- data/lib/new_relic/agent/instrumentation/thread/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +6 -1
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +10 -6
- data/lib/new_relic/agent/javascript_instrumentor.rb +29 -24
- data/lib/new_relic/agent/linking_metadata.rb +2 -2
- data/lib/new_relic/agent/log_event_aggregator.rb +64 -17
- data/lib/new_relic/agent/log_event_attributes.rb +115 -0
- data/lib/new_relic/agent/logging.rb +77 -37
- data/lib/new_relic/agent/messaging.rb +9 -7
- data/lib/new_relic/agent/method_tracer.rb +7 -7
- data/lib/new_relic/agent/method_tracer_helpers.rb +27 -6
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +4 -5
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +1 -1
- data/lib/new_relic/agent/monitors/synthetics_monitor.rb +12 -1
- data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +2 -2
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +0 -1
- data/lib/new_relic/agent/new_relic_service.rb +47 -32
- data/lib/new_relic/agent/obfuscator.rb +1 -1
- data/lib/new_relic/agent/parameter_filtering.rb +6 -6
- data/lib/new_relic/agent/pipe_channel_manager.rb +7 -6
- data/lib/new_relic/agent/pipe_service.rb +5 -3
- data/lib/new_relic/agent/priority_sampled_buffer.rb +1 -1
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +0 -1
- data/lib/new_relic/agent/rules_engine.rb +1 -1
- data/lib/new_relic/agent/sampler.rb +2 -1
- data/lib/new_relic/agent/sampler_collection.rb +1 -1
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +5 -5
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +9 -9
- data/lib/new_relic/agent/samplers/memory_sampler.rb +9 -9
- data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
- data/lib/new_relic/agent/span_event_aggregator.rb +4 -4
- data/lib/new_relic/agent/span_event_primitive.rb +18 -6
- data/lib/new_relic/agent/sql_sampler.rb +2 -2
- data/lib/new_relic/agent/stats.rb +1 -1
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +1 -1
- data/lib/new_relic/agent/system_info.rb +36 -10
- data/lib/new_relic/agent/threading/agent_thread.rb +1 -1
- data/lib/new_relic/agent/threading/backtrace_node.rb +3 -3
- data/lib/new_relic/agent/threading/backtrace_service.rb +3 -7
- data/lib/new_relic/agent/threading/thread_profile.rb +5 -5
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
- data/lib/new_relic/agent/tracer.rb +25 -16
- data/lib/new_relic/agent/transaction/abstract_segment.rb +109 -48
- data/lib/new_relic/agent/transaction/datastore_segment.rb +1 -1
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +7 -6
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +13 -14
- data/lib/new_relic/agent/transaction/external_request_segment.rb +16 -13
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +2 -3
- data/lib/new_relic/agent/transaction/request_attributes.rb +47 -11
- data/lib/new_relic/agent/transaction/segment.rb +1 -1
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/trace.rb +1 -1
- data/lib/new_relic/agent/transaction/trace_context.rb +4 -4
- data/lib/new_relic/agent/transaction/trace_node.rb +8 -7
- data/lib/new_relic/agent/transaction/tracing.rb +10 -4
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction.rb +90 -58
- data/lib/new_relic/agent/transaction_error_primitive.rb +21 -5
- data/lib/new_relic/agent/transaction_event_aggregator.rb +4 -4
- data/lib/new_relic/agent/transaction_event_primitive.rb +22 -3
- data/lib/new_relic/agent/transaction_sampler.rb +3 -3
- data/lib/new_relic/agent/transaction_time_aggregator.rb +7 -3
- data/lib/new_relic/agent/utilization/aws.rb +1 -1
- data/lib/new_relic/agent/utilization/azure.rb +3 -3
- data/lib/new_relic/agent/utilization/gcp.rb +4 -6
- data/lib/new_relic/agent/utilization/pcf.rb +1 -1
- data/lib/new_relic/agent/utilization/vendor.rb +6 -8
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
- data/lib/new_relic/agent/vm/mri_vm.rb +9 -8
- data/lib/new_relic/agent/worker_loop.rb +1 -1
- data/lib/new_relic/agent.rb +133 -36
- data/lib/new_relic/cli/command.rb +4 -3
- data/lib/new_relic/cli/commands/deployments.rb +26 -25
- data/lib/new_relic/cli/commands/install.rb +23 -23
- data/lib/new_relic/collection_helper.rb +2 -2
- data/lib/new_relic/constants.rb +10 -8
- data/lib/new_relic/control/class_methods.rb +4 -10
- data/lib/new_relic/control/frameworks/rails.rb +44 -20
- data/lib/new_relic/control/frameworks/roda.rb +20 -0
- data/lib/new_relic/control/instance_methods.rb +6 -6
- data/lib/new_relic/control/instrumentation.rb +1 -15
- data/lib/new_relic/control/private_instance_methods.rb +1 -1
- data/lib/new_relic/dependency_detection.rb +20 -18
- data/lib/new_relic/environment_report.rb +4 -4
- data/lib/new_relic/helper.rb +2 -1
- data/lib/new_relic/language_support.rb +10 -1
- data/lib/new_relic/latest_changes.rb +6 -6
- data/lib/new_relic/local_environment.rb +0 -10
- data/lib/new_relic/noticed_error.rb +25 -20
- data/lib/new_relic/rack/agent_hooks.rb +1 -1
- data/lib/new_relic/rack/agent_middleware.rb +0 -16
- data/lib/new_relic/rack/browser_monitoring.rb +21 -17
- data/lib/new_relic/recipes/capistrano3.rb +1 -1
- data/lib/new_relic/recipes/capistrano_legacy.rb +6 -6
- data/lib/new_relic/recipes/helpers/send_deployment.rb +5 -5
- data/lib/new_relic/supportability_helper.rb +4 -1
- data/lib/new_relic/traced_thread.rb +2 -3
- data/lib/new_relic/version.rb +2 -2
- data/lib/newrelic_rpm.rb +4 -4
- data/lib/sequel/extensions/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +6 -6
- data/lib/sequel/plugins/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +4 -4
- data/lib/tasks/bump_version.rake +21 -0
- data/lib/tasks/config.rake +13 -12
- data/lib/tasks/coverage_report.rake +4 -4
- data/lib/tasks/helpers/config.html.erb +93 -0
- data/lib/tasks/helpers/format.rb +19 -15
- data/lib/tasks/helpers/newrelicyml.rb +144 -0
- data/lib/tasks/helpers/version_bump.rb +62 -0
- data/lib/tasks/install.rake +4 -4
- data/lib/tasks/instrumentation_generator/instrumentation.thor +16 -19
- data/lib/tasks/instrumentation_generator/templates/Envfile.tt +1 -1
- data/lib/tasks/instrumentation_generator/templates/chain.tt +1 -1
- data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +1 -1
- data/lib/tasks/newrelic.rb +1 -0
- data/lib/tasks/newrelicyml.rake +13 -0
- data/lib/tasks/tests.rake +77 -6
- data/newrelic.yml +393 -274
- data/newrelic_rpm.gemspec +41 -30
- data/test/agent_helper.rb +25 -24
- metadata +172 -35
- data/.gitignore +0 -42
- data/.project +0 -23
- data/.rubocop.yml +0 -1946
- data/.rubocop_todo.yml +0 -62
- data/.simplecov +0 -15
- data/.snyk +0 -11
- data/.yardopts +0 -27
- data/Brewfile +0 -12
- data/DOCKER.md +0 -167
- data/Dockerfile +0 -10
- data/Guardfile +0 -26
- data/config/database.yml +0 -5
- data/config.dot +0 -278
- data/docker-compose.yml +0 -107
- data/lefthook.yml +0 -9
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +0 -83
- data/lib/new_relic/agent/instrumentation/authlogic.rb +0 -33
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +0 -215
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +0 -36
- data/lib/new_relic/agent/instrumentation/sunspot.rb +0 -41
- data/lib/new_relic/agent/range_extensions.rb +0 -27
- data/lib/tasks/helpers/removers.rb +0 -33
- data/lib/tasks/multiverse.rake +0 -6
- data/lib/tasks/multiverse.rb +0 -77
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: newrelic_rpm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 9.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tanna McClure
|
@@ -11,8 +11,22 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2023-
|
14
|
+
date: 2023-10-30 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: base64
|
18
|
+
requirement: !ruby/object:Gem::Requirement
|
19
|
+
requirements:
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '0'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
16
30
|
- !ruby/object:Gem::Dependency
|
17
31
|
name: bundler
|
18
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -69,6 +83,20 @@ dependencies:
|
|
69
83
|
- - "~>"
|
70
84
|
- !ruby/object:Gem::Version
|
71
85
|
version: '1.16'
|
86
|
+
- !ruby/object:Gem::Dependency
|
87
|
+
name: rack
|
88
|
+
requirement: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
type: :development
|
94
|
+
prerelease: false
|
95
|
+
version_requirements: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - ">="
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
72
100
|
- !ruby/object:Gem::Dependency
|
73
101
|
name: rake
|
74
102
|
requirement: !ruby/object:Gem::Requirement
|
@@ -83,6 +111,76 @@ dependencies:
|
|
83
111
|
- - '='
|
84
112
|
- !ruby/object:Gem::Version
|
85
113
|
version: 12.3.3
|
114
|
+
- !ruby/object:Gem::Dependency
|
115
|
+
name: rubocop
|
116
|
+
requirement: !ruby/object:Gem::Requirement
|
117
|
+
requirements:
|
118
|
+
- - '='
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '1.54'
|
121
|
+
type: :development
|
122
|
+
prerelease: false
|
123
|
+
version_requirements: !ruby/object:Gem::Requirement
|
124
|
+
requirements:
|
125
|
+
- - '='
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: '1.54'
|
128
|
+
- !ruby/object:Gem::Dependency
|
129
|
+
name: rubocop-ast
|
130
|
+
requirement: !ruby/object:Gem::Requirement
|
131
|
+
requirements:
|
132
|
+
- - '='
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: 1.28.1
|
135
|
+
type: :development
|
136
|
+
prerelease: false
|
137
|
+
version_requirements: !ruby/object:Gem::Requirement
|
138
|
+
requirements:
|
139
|
+
- - '='
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: 1.28.1
|
142
|
+
- !ruby/object:Gem::Dependency
|
143
|
+
name: rubocop-minitest
|
144
|
+
requirement: !ruby/object:Gem::Requirement
|
145
|
+
requirements:
|
146
|
+
- - '='
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: 0.27.0
|
149
|
+
type: :development
|
150
|
+
prerelease: false
|
151
|
+
version_requirements: !ruby/object:Gem::Requirement
|
152
|
+
requirements:
|
153
|
+
- - '='
|
154
|
+
- !ruby/object:Gem::Version
|
155
|
+
version: 0.27.0
|
156
|
+
- !ruby/object:Gem::Dependency
|
157
|
+
name: rubocop-performance
|
158
|
+
requirement: !ruby/object:Gem::Requirement
|
159
|
+
requirements:
|
160
|
+
- - '='
|
161
|
+
- !ruby/object:Gem::Version
|
162
|
+
version: 1.16.0
|
163
|
+
type: :development
|
164
|
+
prerelease: false
|
165
|
+
version_requirements: !ruby/object:Gem::Requirement
|
166
|
+
requirements:
|
167
|
+
- - '='
|
168
|
+
- !ruby/object:Gem::Version
|
169
|
+
version: 1.16.0
|
170
|
+
- !ruby/object:Gem::Dependency
|
171
|
+
name: rubocop-rake
|
172
|
+
requirement: !ruby/object:Gem::Requirement
|
173
|
+
requirements:
|
174
|
+
- - '='
|
175
|
+
- !ruby/object:Gem::Version
|
176
|
+
version: 0.6.0
|
177
|
+
type: :development
|
178
|
+
prerelease: false
|
179
|
+
version_requirements: !ruby/object:Gem::Requirement
|
180
|
+
requirements:
|
181
|
+
- - '='
|
182
|
+
- !ruby/object:Gem::Version
|
183
|
+
version: 0.6.0
|
86
184
|
- !ruby/object:Gem::Dependency
|
87
185
|
name: simplecov
|
88
186
|
requirement: !ruby/object:Gem::Requirement
|
@@ -97,20 +195,34 @@ dependencies:
|
|
97
195
|
- - ">="
|
98
196
|
- !ruby/object:Gem::Version
|
99
197
|
version: '0'
|
198
|
+
- !ruby/object:Gem::Dependency
|
199
|
+
name: warning
|
200
|
+
requirement: !ruby/object:Gem::Requirement
|
201
|
+
requirements:
|
202
|
+
- - ">="
|
203
|
+
- !ruby/object:Gem::Version
|
204
|
+
version: '0'
|
205
|
+
type: :development
|
206
|
+
prerelease: false
|
207
|
+
version_requirements: !ruby/object:Gem::Requirement
|
208
|
+
requirements:
|
209
|
+
- - ">="
|
210
|
+
- !ruby/object:Gem::Version
|
211
|
+
version: '0'
|
100
212
|
- !ruby/object:Gem::Dependency
|
101
213
|
name: yard
|
102
214
|
requirement: !ruby/object:Gem::Requirement
|
103
215
|
requirements:
|
104
|
-
- - "
|
216
|
+
- - ">="
|
105
217
|
- !ruby/object:Gem::Version
|
106
|
-
version: 0
|
218
|
+
version: '0'
|
107
219
|
type: :development
|
108
220
|
prerelease: false
|
109
221
|
version_requirements: !ruby/object:Gem::Requirement
|
110
222
|
requirements:
|
111
|
-
- - "
|
223
|
+
- - ">="
|
112
224
|
- !ruby/object:Gem::Version
|
113
|
-
version: 0
|
225
|
+
version: '0'
|
114
226
|
description: |
|
115
227
|
New Relic is a performance management system, developed by New Relic,
|
116
228
|
Inc (http://www.newrelic.com). New Relic provides you with deep
|
@@ -131,20 +243,10 @@ extra_rdoc_files:
|
|
131
243
|
- CONTRIBUTING.md
|
132
244
|
- newrelic.yml
|
133
245
|
files:
|
134
|
-
- ".
|
135
|
-
- ".project"
|
136
|
-
- ".rubocop.yml"
|
137
|
-
- ".rubocop_todo.yml"
|
138
|
-
- ".simplecov"
|
139
|
-
- ".snyk"
|
140
|
-
- ".yardopts"
|
141
|
-
- Brewfile
|
246
|
+
- ".build_ignore"
|
142
247
|
- CHANGELOG.md
|
143
248
|
- CONTRIBUTING.md
|
144
|
-
- DOCKER.md
|
145
|
-
- Dockerfile
|
146
249
|
- Gemfile
|
147
|
-
- Guardfile
|
148
250
|
- LICENSE
|
149
251
|
- README.md
|
150
252
|
- Rakefile
|
@@ -153,12 +255,8 @@ files:
|
|
153
255
|
- bin/newrelic
|
154
256
|
- bin/newrelic_cmd
|
155
257
|
- bin/nrdebug
|
156
|
-
- config.dot
|
157
|
-
- config/database.yml
|
158
|
-
- docker-compose.yml
|
159
258
|
- init.rb
|
160
259
|
- install.rb
|
161
|
-
- lefthook.yml
|
162
260
|
- lib/new_relic/agent.rb
|
163
261
|
- lib/new_relic/agent/adaptive_sampler.rb
|
164
262
|
- lib/new_relic/agent/agent.rb
|
@@ -171,6 +269,7 @@ files:
|
|
171
269
|
- lib/new_relic/agent/agent_helpers/transmit.rb
|
172
270
|
- lib/new_relic/agent/agent_logger.rb
|
173
271
|
- lib/new_relic/agent/attribute_filter.rb
|
272
|
+
- lib/new_relic/agent/attribute_pre_filtering.rb
|
174
273
|
- lib/new_relic/agent/attribute_processing.rb
|
175
274
|
- lib/new_relic/agent/attributes.rb
|
176
275
|
- lib/new_relic/agent/audit_logger.rb
|
@@ -232,18 +331,29 @@ files:
|
|
232
331
|
- lib/new_relic/agent/heap.rb
|
233
332
|
- lib/new_relic/agent/hostname.rb
|
234
333
|
- lib/new_relic/agent/http_clients/abstract.rb
|
334
|
+
- lib/new_relic/agent/http_clients/async_http_wrappers.rb
|
235
335
|
- lib/new_relic/agent/http_clients/curb_wrappers.rb
|
336
|
+
- lib/new_relic/agent/http_clients/ethon_wrappers.rb
|
236
337
|
- lib/new_relic/agent/http_clients/excon_wrappers.rb
|
237
338
|
- lib/new_relic/agent/http_clients/http_rb_wrappers.rb
|
238
339
|
- lib/new_relic/agent/http_clients/httpclient_wrappers.rb
|
340
|
+
- lib/new_relic/agent/http_clients/httpx_wrappers.rb
|
239
341
|
- lib/new_relic/agent/http_clients/net_http_wrappers.rb
|
240
342
|
- lib/new_relic/agent/http_clients/typhoeus_wrappers.rb
|
241
343
|
- lib/new_relic/agent/http_clients/uri_util.rb
|
242
344
|
- lib/new_relic/agent/instrumentation.rb
|
243
345
|
- lib/new_relic/agent/instrumentation/action_cable_subscriber.rb
|
346
|
+
- lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb
|
244
347
|
- lib/new_relic/agent/instrumentation/action_controller_subscriber.rb
|
348
|
+
- lib/new_relic/agent/instrumentation/action_dispatch.rb
|
349
|
+
- lib/new_relic/agent/instrumentation/action_dispatch_subscriber.rb
|
350
|
+
- lib/new_relic/agent/instrumentation/action_mailbox.rb
|
351
|
+
- lib/new_relic/agent/instrumentation/action_mailbox_subscriber.rb
|
352
|
+
- lib/new_relic/agent/instrumentation/action_mailer.rb
|
353
|
+
- lib/new_relic/agent/instrumentation/action_mailer_subscriber.rb
|
245
354
|
- lib/new_relic/agent/instrumentation/action_view_subscriber.rb
|
246
355
|
- lib/new_relic/agent/instrumentation/active_job.rb
|
356
|
+
- lib/new_relic/agent/instrumentation/active_job_subscriber.rb
|
247
357
|
- lib/new_relic/agent/instrumentation/active_merchant.rb
|
248
358
|
- lib/new_relic/agent/instrumentation/active_record.rb
|
249
359
|
- lib/new_relic/agent/instrumentation/active_record_helper.rb
|
@@ -253,12 +363,19 @@ files:
|
|
253
363
|
- lib/new_relic/agent/instrumentation/active_storage.rb
|
254
364
|
- lib/new_relic/agent/instrumentation/active_storage_subscriber.rb
|
255
365
|
- lib/new_relic/agent/instrumentation/active_support.rb
|
366
|
+
- lib/new_relic/agent/instrumentation/active_support_broadcast_logger.rb
|
367
|
+
- lib/new_relic/agent/instrumentation/active_support_broadcast_logger/chain.rb
|
368
|
+
- lib/new_relic/agent/instrumentation/active_support_broadcast_logger/instrumentation.rb
|
369
|
+
- lib/new_relic/agent/instrumentation/active_support_broadcast_logger/prepend.rb
|
256
370
|
- lib/new_relic/agent/instrumentation/active_support_logger.rb
|
257
371
|
- lib/new_relic/agent/instrumentation/active_support_logger/chain.rb
|
258
372
|
- lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb
|
259
373
|
- lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb
|
260
|
-
- lib/new_relic/agent/instrumentation/
|
261
|
-
- lib/new_relic/agent/instrumentation/
|
374
|
+
- lib/new_relic/agent/instrumentation/active_support_subscriber.rb
|
375
|
+
- lib/new_relic/agent/instrumentation/async_http.rb
|
376
|
+
- lib/new_relic/agent/instrumentation/async_http/chain.rb
|
377
|
+
- lib/new_relic/agent/instrumentation/async_http/instrumentation.rb
|
378
|
+
- lib/new_relic/agent/instrumentation/async_http/prepend.rb
|
262
379
|
- lib/new_relic/agent/instrumentation/bunny.rb
|
263
380
|
- lib/new_relic/agent/instrumentation/bunny/chain.rb
|
264
381
|
- lib/new_relic/agent/instrumentation/bunny/instrumentation.rb
|
@@ -272,8 +389,8 @@ files:
|
|
272
389
|
- lib/new_relic/agent/instrumentation/curb/chain.rb
|
273
390
|
- lib/new_relic/agent/instrumentation/curb/instrumentation.rb
|
274
391
|
- lib/new_relic/agent/instrumentation/curb/prepend.rb
|
392
|
+
- lib/new_relic/agent/instrumentation/custom_events.rb
|
275
393
|
- lib/new_relic/agent/instrumentation/custom_events_subscriber.rb
|
276
|
-
- lib/new_relic/agent/instrumentation/data_mapper.rb
|
277
394
|
- lib/new_relic/agent/instrumentation/delayed_job/chain.rb
|
278
395
|
- lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb
|
279
396
|
- lib/new_relic/agent/instrumentation/delayed_job/prepend.rb
|
@@ -282,8 +399,16 @@ files:
|
|
282
399
|
- lib/new_relic/agent/instrumentation/elasticsearch/chain.rb
|
283
400
|
- lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb
|
284
401
|
- lib/new_relic/agent/instrumentation/elasticsearch/prepend.rb
|
402
|
+
- lib/new_relic/agent/instrumentation/ethon.rb
|
403
|
+
- lib/new_relic/agent/instrumentation/ethon/chain.rb
|
404
|
+
- lib/new_relic/agent/instrumentation/ethon/instrumentation.rb
|
405
|
+
- lib/new_relic/agent/instrumentation/ethon/prepend.rb
|
285
406
|
- lib/new_relic/agent/instrumentation/excon.rb
|
286
407
|
- lib/new_relic/agent/instrumentation/excon/middleware.rb
|
408
|
+
- lib/new_relic/agent/instrumentation/fiber.rb
|
409
|
+
- lib/new_relic/agent/instrumentation/fiber/chain.rb
|
410
|
+
- lib/new_relic/agent/instrumentation/fiber/instrumentation.rb
|
411
|
+
- lib/new_relic/agent/instrumentation/fiber/prepend.rb
|
287
412
|
- lib/new_relic/agent/instrumentation/grape.rb
|
288
413
|
- lib/new_relic/agent/instrumentation/grape/chain.rb
|
289
414
|
- lib/new_relic/agent/instrumentation/grape/instrumentation.rb
|
@@ -307,6 +432,10 @@ files:
|
|
307
432
|
- lib/new_relic/agent/instrumentation/httprb/chain.rb
|
308
433
|
- lib/new_relic/agent/instrumentation/httprb/instrumentation.rb
|
309
434
|
- lib/new_relic/agent/instrumentation/httprb/prepend.rb
|
435
|
+
- lib/new_relic/agent/instrumentation/httpx.rb
|
436
|
+
- lib/new_relic/agent/instrumentation/httpx/chain.rb
|
437
|
+
- lib/new_relic/agent/instrumentation/httpx/instrumentation.rb
|
438
|
+
- lib/new_relic/agent/instrumentation/httpx/prepend.rb
|
310
439
|
- lib/new_relic/agent/instrumentation/ignore_actions.rb
|
311
440
|
- lib/new_relic/agent/instrumentation/logger.rb
|
312
441
|
- lib/new_relic/agent/instrumentation/logger/chain.rb
|
@@ -344,7 +473,6 @@ files:
|
|
344
473
|
- lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
|
345
474
|
- lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
|
346
475
|
- lib/new_relic/agent/instrumentation/rails_notifications/custom_events.rb
|
347
|
-
- lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
|
348
476
|
- lib/new_relic/agent/instrumentation/rake.rb
|
349
477
|
- lib/new_relic/agent/instrumentation/rake/chain.rb
|
350
478
|
- lib/new_relic/agent/instrumentation/rake/instrumentation.rb
|
@@ -360,6 +488,12 @@ files:
|
|
360
488
|
- lib/new_relic/agent/instrumentation/resque/helper.rb
|
361
489
|
- lib/new_relic/agent/instrumentation/resque/instrumentation.rb
|
362
490
|
- lib/new_relic/agent/instrumentation/resque/prepend.rb
|
491
|
+
- lib/new_relic/agent/instrumentation/roda.rb
|
492
|
+
- lib/new_relic/agent/instrumentation/roda/chain.rb
|
493
|
+
- lib/new_relic/agent/instrumentation/roda/ignorer.rb
|
494
|
+
- lib/new_relic/agent/instrumentation/roda/instrumentation.rb
|
495
|
+
- lib/new_relic/agent/instrumentation/roda/prepend.rb
|
496
|
+
- lib/new_relic/agent/instrumentation/roda/roda_transaction_namer.rb
|
363
497
|
- lib/new_relic/agent/instrumentation/sequel.rb
|
364
498
|
- lib/new_relic/agent/instrumentation/sequel_helper.rb
|
365
499
|
- lib/new_relic/agent/instrumentation/sidekiq.rb
|
@@ -372,7 +506,8 @@ files:
|
|
372
506
|
- lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb
|
373
507
|
- lib/new_relic/agent/instrumentation/sinatra/prepend.rb
|
374
508
|
- lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb
|
375
|
-
- lib/new_relic/agent/instrumentation/
|
509
|
+
- lib/new_relic/agent/instrumentation/stripe.rb
|
510
|
+
- lib/new_relic/agent/instrumentation/stripe_subscriber.rb
|
376
511
|
- lib/new_relic/agent/instrumentation/thread.rb
|
377
512
|
- lib/new_relic/agent/instrumentation/thread/chain.rb
|
378
513
|
- lib/new_relic/agent/instrumentation/thread/instrumentation.rb
|
@@ -390,6 +525,7 @@ files:
|
|
390
525
|
- lib/new_relic/agent/linking_metadata.rb
|
391
526
|
- lib/new_relic/agent/local_log_decorator.rb
|
392
527
|
- lib/new_relic/agent/log_event_aggregator.rb
|
528
|
+
- lib/new_relic/agent/log_event_attributes.rb
|
393
529
|
- lib/new_relic/agent/log_once.rb
|
394
530
|
- lib/new_relic/agent/log_priority.rb
|
395
531
|
- lib/new_relic/agent/logging.rb
|
@@ -416,7 +552,6 @@ files:
|
|
416
552
|
- lib/new_relic/agent/pipe_service.rb
|
417
553
|
- lib/new_relic/agent/prepend_supportability.rb
|
418
554
|
- lib/new_relic/agent/priority_sampled_buffer.rb
|
419
|
-
- lib/new_relic/agent/range_extensions.rb
|
420
555
|
- lib/new_relic/agent/rules_engine.rb
|
421
556
|
- lib/new_relic/agent/rules_engine/replacement_rule.rb
|
422
557
|
- lib/new_relic/agent/rules_engine/segment_terms_rule.rb
|
@@ -492,6 +627,7 @@ files:
|
|
492
627
|
- lib/new_relic/control/frameworks/rails3.rb
|
493
628
|
- lib/new_relic/control/frameworks/rails4.rb
|
494
629
|
- lib/new_relic/control/frameworks/rails_notifications.rb
|
630
|
+
- lib/new_relic/control/frameworks/roda.rb
|
495
631
|
- lib/new_relic/control/frameworks/ruby.rb
|
496
632
|
- lib/new_relic/control/frameworks/sinatra.rb
|
497
633
|
- lib/new_relic/control/instance_methods.rb
|
@@ -520,17 +656,19 @@ files:
|
|
520
656
|
- lib/new_relic/traced_thread.rb
|
521
657
|
- lib/new_relic/version.rb
|
522
658
|
- lib/newrelic_rpm.rb
|
523
|
-
- lib/sequel/extensions/
|
524
|
-
- lib/sequel/plugins/
|
659
|
+
- lib/sequel/extensions/new_relic_instrumentation.rb
|
660
|
+
- lib/sequel/plugins/new_relic_instrumentation.rb
|
525
661
|
- lib/tasks/all.rb
|
662
|
+
- lib/tasks/bump_version.rake
|
526
663
|
- lib/tasks/config.rake
|
527
664
|
- lib/tasks/coverage_report.rake
|
528
665
|
- lib/tasks/helpers/config.html.erb
|
529
666
|
- lib/tasks/helpers/config.text.erb
|
530
667
|
- lib/tasks/helpers/format.rb
|
531
668
|
- lib/tasks/helpers/matches.rb
|
669
|
+
- lib/tasks/helpers/newrelicyml.rb
|
532
670
|
- lib/tasks/helpers/prompt.rb
|
533
|
-
- lib/tasks/helpers/
|
671
|
+
- lib/tasks/helpers/version_bump.rb
|
534
672
|
- lib/tasks/install.rake
|
535
673
|
- lib/tasks/instrumentation_generator/README.md
|
536
674
|
- lib/tasks/instrumentation_generator/TODO.md
|
@@ -545,15 +683,14 @@ files:
|
|
545
683
|
- lib/tasks/instrumentation_generator/templates/prepend.tt
|
546
684
|
- lib/tasks/instrumentation_generator/templates/prepend_method.tt
|
547
685
|
- lib/tasks/instrumentation_generator/templates/test.tt
|
548
|
-
- lib/tasks/multiverse.rake
|
549
|
-
- lib/tasks/multiverse.rb
|
550
686
|
- lib/tasks/newrelic.rb
|
687
|
+
- lib/tasks/newrelicyml.rake
|
551
688
|
- lib/tasks/tests.rake
|
552
689
|
- newrelic.yml
|
553
690
|
- newrelic_rpm.gemspec
|
554
691
|
- recipes/newrelic.rb
|
555
692
|
- test/agent_helper.rb
|
556
|
-
homepage: https://github.com/newrelic/
|
693
|
+
homepage: https://github.com/newrelic/newrelic-ruby-agent
|
557
694
|
licenses:
|
558
695
|
- Apache-2.0
|
559
696
|
metadata:
|
@@ -570,14 +707,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
570
707
|
requirements:
|
571
708
|
- - ">="
|
572
709
|
- !ruby/object:Gem::Version
|
573
|
-
version: 2.
|
710
|
+
version: 2.4.0
|
574
711
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
575
712
|
requirements:
|
576
713
|
- - ">"
|
577
714
|
- !ruby/object:Gem::Version
|
578
715
|
version: 1.3.1
|
579
716
|
requirements: []
|
580
|
-
rubygems_version: 3.
|
717
|
+
rubygems_version: 3.4.10
|
581
718
|
signing_key:
|
582
719
|
specification_version: 4
|
583
720
|
summary: New Relic Ruby Agent
|
data/.gitignore
DELETED
@@ -1,42 +0,0 @@
|
|
1
|
-
.ruby-version
|
2
|
-
Gemfile.lock
|
3
|
-
Guard*
|
4
|
-
.DS\_Store
|
5
|
-
.svn/
|
6
|
-
*~
|
7
|
-
*.rbc
|
8
|
-
pkg/
|
9
|
-
*.gem
|
10
|
-
!rails
|
11
|
-
.idea/
|
12
|
-
tmp/
|
13
|
-
TAGS
|
14
|
-
tags
|
15
|
-
*.swp
|
16
|
-
*.swo
|
17
|
-
|
18
|
-
coverage
|
19
|
-
/doc/
|
20
|
-
/log/
|
21
|
-
/lerg/
|
22
|
-
gems/newrelic_rpm.gemspec
|
23
|
-
gems/newrelic_rpm*.tar.gz
|
24
|
-
lib/new_relic/build.rb
|
25
|
-
.pryrc
|
26
|
-
.tm_properties
|
27
|
-
.bundle
|
28
|
-
.yardoc
|
29
|
-
artifacts/
|
30
|
-
test/performance/log/
|
31
|
-
test/performance/script/log/
|
32
|
-
infinite_tracing/log/
|
33
|
-
test/fixtures/cross_agent_tests/*/README.md
|
34
|
-
node_modules/
|
35
|
-
yarn.lock
|
36
|
-
package-lock.json
|
37
|
-
errors.txt
|
38
|
-
.history/
|
39
|
-
vendor/
|
40
|
-
Brewfile.lock.json
|
41
|
-
.github/actions/simplecov-report/lib/
|
42
|
-
test/minitest/minitest_time_report
|
data/.project
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<projectDescription>
|
3
|
-
<name>New Relic Agent</name>
|
4
|
-
<comment></comment>
|
5
|
-
<projects>
|
6
|
-
</projects>
|
7
|
-
<buildSpec>
|
8
|
-
<buildCommand>
|
9
|
-
<name>com.aptana.ide.core.unifiedBuilder</name>
|
10
|
-
<arguments>
|
11
|
-
</arguments>
|
12
|
-
</buildCommand>
|
13
|
-
<buildCommand>
|
14
|
-
<name>org.rubypeople.rdt.core.rubybuilder</name>
|
15
|
-
<arguments>
|
16
|
-
</arguments>
|
17
|
-
</buildCommand>
|
18
|
-
</buildSpec>
|
19
|
-
<natures>
|
20
|
-
<nature>com.aptana.ruby.core.rubynature</nature>
|
21
|
-
<nature>org.rubypeople.rdt.core.rubynature</nature>
|
22
|
-
</natures>
|
23
|
-
</projectDescription>
|