newrelic_rpm 3.12.0.288 → 9.10.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.build_ignore +26 -0
- data/CHANGELOG.md +5681 -0
- data/CONTRIBUTING.md +194 -0
- data/Gemfile +5 -2
- data/LICENSE +201 -150
- data/README.md +87 -143
- data/Rakefile +39 -55
- data/THIRD_PARTY_NOTICES.md +28 -0
- data/Thorfile +5 -0
- data/bin/newrelic +4 -9
- data/bin/newrelic_rpm +15 -0
- data/bin/nrdebug +86 -63
- data/init.rb +7 -9
- data/install.rb +3 -3
- data/lib/boot/strap.rb +101 -0
- data/lib/new_relic/agent/adaptive_sampler.rb +108 -0
- data/lib/new_relic/agent/agent.rb +158 -1000
- data/lib/new_relic/agent/agent_helpers/connect.rb +224 -0
- data/lib/new_relic/agent/agent_helpers/harvest.rb +153 -0
- data/lib/new_relic/agent/agent_helpers/shutdown.rb +72 -0
- data/lib/new_relic/agent/agent_helpers/special_startup.rb +74 -0
- data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +175 -0
- data/lib/new_relic/agent/agent_helpers/startup.rb +203 -0
- data/lib/new_relic/agent/agent_helpers/transmit.rb +76 -0
- data/lib/new_relic/agent/agent_logger.rb +39 -54
- data/lib/new_relic/agent/attribute_filter.rb +111 -35
- data/lib/new_relic/agent/attribute_pre_filtering.rb +109 -0
- data/lib/new_relic/agent/attribute_processing.rb +12 -12
- data/lib/new_relic/agent/attributes.rb +153 -0
- data/lib/new_relic/agent/audit_logger.rb +23 -7
- data/lib/new_relic/agent/autostart.rb +36 -47
- data/lib/new_relic/agent/aws.rb +62 -0
- data/lib/new_relic/agent/chained_call.rb +2 -2
- data/lib/new_relic/agent/commands/agent_command.rb +5 -5
- data/lib/new_relic/agent/commands/agent_command_router.rb +18 -35
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +20 -19
- data/lib/new_relic/agent/configuration/default_source.rb +1903 -823
- data/lib/new_relic/agent/configuration/dotted_hash.rb +7 -8
- data/lib/new_relic/agent/configuration/environment_source.rb +26 -14
- data/lib/new_relic/agent/configuration/event_harvest_config.rb +68 -0
- data/lib/new_relic/agent/configuration/high_security_source.rb +15 -15
- data/lib/new_relic/agent/configuration/manager.rb +143 -114
- data/lib/new_relic/agent/configuration/manual_source.rb +2 -2
- data/lib/new_relic/agent/configuration/mask_defaults.rb +4 -4
- data/lib/new_relic/agent/configuration/security_policy_source.rb +246 -0
- data/lib/new_relic/agent/configuration/server_source.rb +70 -27
- data/lib/new_relic/agent/configuration/yaml_source.rb +85 -35
- data/lib/new_relic/agent/configuration.rb +2 -2
- data/lib/new_relic/agent/connect/request_builder.rb +61 -0
- data/lib/new_relic/agent/connect/response_handler.rb +58 -0
- data/lib/new_relic/agent/custom_event_aggregator.rb +68 -56
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +138 -0
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +73 -49
- data/lib/new_relic/agent/database/obfuscator.rb +7 -25
- data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +5 -8
- data/lib/new_relic/agent/database.rb +166 -202
- data/lib/new_relic/agent/database_adapter.rb +35 -0
- data/lib/new_relic/agent/datastores/metric_helper.rb +62 -22
- data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +50 -0
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +21 -31
- data/lib/new_relic/agent/datastores/mongo.rb +8 -12
- data/lib/new_relic/agent/datastores/nosql_obfuscator.rb +41 -0
- data/lib/new_relic/agent/datastores/redis.rb +125 -0
- data/lib/new_relic/agent/datastores.rb +45 -30
- data/lib/new_relic/agent/deprecator.rb +2 -2
- data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +44 -0
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +253 -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 +159 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +38 -0
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +245 -0
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +127 -0
- data/lib/new_relic/agent/distributed_tracing.rb +148 -0
- data/lib/new_relic/agent/encoding_normalizer.rb +9 -24
- data/lib/new_relic/agent/error_collector.rb +200 -142
- data/lib/new_relic/agent/error_event_aggregator.rb +41 -0
- data/lib/new_relic/agent/error_filter.rb +174 -0
- data/lib/new_relic/agent/error_trace_aggregator.rb +102 -0
- data/lib/new_relic/agent/event_aggregator.rb +150 -0
- data/lib/new_relic/agent/event_buffer.rb +15 -9
- data/lib/new_relic/agent/event_listener.rb +2 -3
- data/lib/new_relic/agent/event_loop.rb +28 -26
- data/lib/new_relic/agent/external.rb +110 -0
- data/lib/new_relic/agent/guid_generator.rb +30 -0
- data/lib/new_relic/agent/harvester.rb +7 -10
- data/lib/new_relic/agent/heap.rb +139 -0
- data/lib/new_relic/agent/hostname.rb +44 -5
- data/lib/new_relic/agent/http_clients/abstract.rb +73 -0
- data/lib/new_relic/agent/http_clients/async_http_wrappers.rb +80 -0
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +36 -24
- data/lib/new_relic/agent/http_clients/ethon_wrappers.rb +109 -0
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +49 -23
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +64 -0
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +29 -22
- data/lib/new_relic/agent/http_clients/httpx_wrappers.rb +91 -0
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +39 -11
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +30 -20
- data/lib/new_relic/agent/http_clients/uri_util.rb +23 -19
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +47 -0
- data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +42 -0
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +61 -74
- 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 +82 -66
- data/lib/new_relic/agent/instrumentation/active_job.rb +52 -20
- data/lib/new_relic/agent/instrumentation/active_job_subscriber.rb +41 -0
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +21 -7
- data/lib/new_relic/agent/instrumentation/active_record.rb +112 -42
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +217 -56
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +156 -0
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +98 -0
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +104 -59
- data/lib/new_relic/agent/instrumentation/active_storage.rb +27 -0
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +38 -0
- data/lib/new_relic/agent/instrumentation/active_support.rb +27 -0
- 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 +17 -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/chain.rb +23 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +24 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb +12 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger.rb +26 -0
- 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 +28 -0
- data/lib/new_relic/agent/instrumentation/bunny/chain.rb +45 -0
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +159 -0
- data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +35 -0
- data/lib/new_relic/agent/instrumentation/bunny.rb +32 -0
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/chain.rb +36 -0
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/instrumentation.rb +20 -0
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/prepend.rb +27 -0
- data/lib/new_relic/agent/instrumentation/concurrent_ruby.rb +32 -0
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +106 -74
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +91 -0
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +225 -0
- data/lib/new_relic/agent/instrumentation/curb/prepend.rb +61 -0
- data/lib/new_relic/agent/instrumentation/curb.rb +16 -175
- data/lib/new_relic/agent/instrumentation/custom_events.rb +12 -0
- data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +38 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +36 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +51 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +33 -0
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +95 -36
- data/lib/new_relic/agent/instrumentation/dynamodb/chain.rb +27 -0
- data/lib/new_relic/agent/instrumentation/dynamodb/instrumentation.rb +64 -0
- data/lib/new_relic/agent/instrumentation/dynamodb/prepend.rb +19 -0
- data/lib/new_relic/agent/instrumentation/dynamodb.rb +25 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +29 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +120 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch.rb +31 -0
- data/lib/new_relic/agent/instrumentation/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 +29 -16
- data/lib/new_relic/agent/instrumentation/excon.rb +29 -31
- data/lib/new_relic/agent/instrumentation/fiber/chain.rb +27 -0
- data/lib/new_relic/agent/instrumentation/fiber/instrumentation.rb +20 -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/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +104 -0
- data/lib/new_relic/agent/instrumentation/grape/prepend.rb +17 -0
- data/lib/new_relic/agent/instrumentation/grape.rb +18 -85
- data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +97 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +93 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +111 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +30 -0
- data/lib/new_relic/agent/instrumentation/grpc/helper.rb +32 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/chain.rb +69 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +138 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb +35 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/rpc_server_prepend.rb +26 -0
- data/lib/new_relic/agent/instrumentation/grpc_client.rb +23 -0
- data/lib/new_relic/agent/instrumentation/grpc_server.rb +25 -0
- data/lib/new_relic/agent/instrumentation/httpclient/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +41 -0
- data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/httpclient.rb +14 -22
- data/lib/new_relic/agent/instrumentation/httprb/chain.rb +22 -0
- data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +34 -0
- data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/httprb.rb +29 -0
- data/lib/new_relic/agent/instrumentation/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 +6 -7
- data/lib/new_relic/agent/instrumentation/logger/chain.rb +21 -0
- data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +69 -0
- data/lib/new_relic/agent/instrumentation/logger/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/logger.rb +26 -0
- data/lib/new_relic/agent/instrumentation/memcache/chain.rb +15 -0
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +97 -0
- data/lib/new_relic/agent/instrumentation/memcache/helper.rb +59 -0
- data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +99 -0
- data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +103 -0
- data/lib/new_relic/agent/instrumentation/memcache.rb +53 -109
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +17 -16
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +48 -14
- data/lib/new_relic/agent/instrumentation/mongo.rb +14 -110
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +140 -0
- data/lib/new_relic/agent/instrumentation/net_http/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +50 -0
- data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +21 -0
- data/lib/new_relic/agent/instrumentation/net_http.rb +44 -0
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +146 -0
- data/lib/new_relic/agent/instrumentation/padrino/chain.rb +38 -0
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +32 -0
- data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +20 -0
- data/lib/new_relic/agent/instrumentation/padrino.rb +21 -21
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +7 -7
- data/lib/new_relic/agent/instrumentation/queue_time.rb +19 -22
- data/lib/new_relic/agent/instrumentation/rack/chain.rb +66 -0
- data/lib/new_relic/agent/instrumentation/rack/helpers.rb +33 -0
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +81 -0
- data/lib/new_relic/agent/instrumentation/rack/prepend.rb +43 -0
- data/lib/new_relic/agent/instrumentation/rack.rb +49 -152
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +28 -55
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +5 -5
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +36 -0
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +46 -0
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +30 -0
- data/lib/new_relic/agent/instrumentation/rails_notifications/custom_events.rb +30 -0
- data/lib/new_relic/agent/instrumentation/rake/chain.rb +20 -0
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +146 -0
- data/lib/new_relic/agent/instrumentation/rake/prepend.rb +14 -0
- data/lib/new_relic/agent/instrumentation/rake.rb +31 -0
- data/lib/new_relic/agent/instrumentation/redis/chain.rb +45 -0
- data/lib/new_relic/agent/instrumentation/redis/constants.rb +17 -0
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +98 -0
- data/lib/new_relic/agent/instrumentation/redis/middleware.rb +16 -0
- data/lib/new_relic/agent/instrumentation/redis/prepend.rb +29 -0
- data/lib/new_relic/agent/instrumentation/redis.rb +44 -0
- data/lib/new_relic/agent/instrumentation/resque/chain.rb +21 -0
- data/lib/new_relic/agent/instrumentation/resque/helper.rb +19 -0
- data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +38 -0
- data/lib/new_relic/agent/instrumentation/resque/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/resque.rb +38 -78
- 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/ruby_openai/chain.rb +36 -0
- data/lib/new_relic/agent/instrumentation/ruby_openai/instrumentation.rb +196 -0
- data/lib/new_relic/agent/instrumentation/ruby_openai/prepend.rb +20 -0
- data/lib/new_relic/agent/instrumentation/ruby_openai.rb +35 -0
- data/lib/new_relic/agent/instrumentation/sequel.rb +17 -23
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +13 -13
- data/lib/new_relic/agent/instrumentation/sidekiq/client.rb +24 -0
- data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +30 -0
- data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +60 -0
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +37 -45
- data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +55 -0
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +31 -37
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +130 -0
- data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +33 -0
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +13 -7
- data/lib/new_relic/agent/instrumentation/sinatra.rb +35 -165
- 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 +24 -0
- data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +24 -0
- data/lib/new_relic/agent/instrumentation/thread/prepend.rb +22 -0
- data/lib/new_relic/agent/instrumentation/thread.rb +20 -0
- data/lib/new_relic/agent/instrumentation/tilt/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +46 -0
- data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/tilt.rb +25 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +22 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +84 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +14 -0
- data/lib/new_relic/agent/instrumentation/typhoeus.rb +14 -47
- data/lib/new_relic/agent/instrumentation/view_component/chain.rb +21 -0
- data/lib/new_relic/agent/instrumentation/view_component/instrumentation.rb +39 -0
- data/lib/new_relic/agent/instrumentation/view_component/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/view_component.rb +26 -0
- data/lib/new_relic/agent/instrumentation.rb +2 -2
- data/lib/new_relic/agent/internal_agent_error.rb +3 -3
- data/lib/new_relic/agent/javascript_instrumentor.rb +72 -58
- data/lib/new_relic/agent/linking_metadata.rb +44 -0
- data/lib/new_relic/agent/llm/chat_completion_message.rb +25 -0
- data/lib/new_relic/agent/llm/chat_completion_summary.rb +66 -0
- data/lib/new_relic/agent/llm/embedding.rb +60 -0
- data/lib/new_relic/agent/llm/llm_event.rb +95 -0
- data/lib/new_relic/agent/llm/response_headers.rb +80 -0
- data/lib/new_relic/agent/llm.rb +49 -0
- data/lib/new_relic/agent/local_log_decorator.rb +37 -0
- data/lib/new_relic/agent/log_event_aggregator.rb +267 -0
- data/lib/new_relic/agent/log_event_attributes.rb +115 -0
- data/lib/new_relic/agent/log_once.rb +39 -0
- data/lib/new_relic/agent/log_priority.rb +20 -0
- data/lib/new_relic/agent/logging.rb +182 -0
- data/lib/new_relic/agent/memory_logger.rb +11 -4
- data/lib/new_relic/agent/messaging.rb +358 -0
- data/lib/new_relic/agent/method_tracer.rb +173 -195
- data/lib/new_relic/agent/method_tracer_helpers.rb +109 -66
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +117 -0
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +28 -0
- data/lib/new_relic/agent/monitors/inbound_request_monitor.rb +43 -0
- data/lib/new_relic/agent/monitors/synthetics_monitor.rb +64 -0
- data/lib/new_relic/agent/monitors.rb +26 -0
- data/lib/new_relic/agent/new_relic_service/encoders.rb +29 -13
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +18 -24
- data/lib/new_relic/agent/new_relic_service/marshaller.rb +8 -29
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +61 -0
- data/lib/new_relic/agent/new_relic_service.rb +406 -226
- data/lib/new_relic/agent/noticeable_error.rb +19 -0
- data/lib/new_relic/agent/null_logger.rb +8 -4
- data/lib/new_relic/agent/obfuscator.rb +8 -12
- data/lib/new_relic/agent/parameter_filtering.rb +41 -14
- data/lib/new_relic/agent/payload_metric_mapping.rb +57 -0
- data/lib/new_relic/agent/pipe_channel_manager.rb +37 -27
- data/lib/new_relic/agent/pipe_service.rb +23 -16
- data/lib/new_relic/agent/prepend_supportability.rb +16 -0
- data/lib/new_relic/agent/priority_sampled_buffer.rb +92 -0
- data/lib/new_relic/agent/rules_engine/replacement_rule.rb +12 -12
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +32 -12
- data/lib/new_relic/agent/rules_engine.rb +30 -7
- data/lib/new_relic/agent/sampler.rb +13 -13
- data/lib/new_relic/agent/sampler_collection.rb +5 -6
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +13 -10
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +22 -19
- data/lib/new_relic/agent/samplers/memory_sampler.rb +41 -25
- data/lib/new_relic/agent/samplers/object_sampler.rb +3 -3
- data/lib/new_relic/agent/samplers/vm_sampler.rb +22 -20
- data/lib/new_relic/agent/serverless_handler.rb +171 -0
- data/lib/new_relic/agent/span_event_aggregator.rb +49 -0
- data/lib/new_relic/agent/span_event_primitive.rb +222 -0
- data/lib/new_relic/agent/sql_sampler.rb +83 -47
- data/lib/new_relic/agent/stats.rb +80 -57
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +12 -13
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +97 -40
- data/lib/new_relic/agent/stats_engine.rb +175 -9
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +44 -0
- data/lib/new_relic/agent/system_info.rb +203 -61
- data/lib/new_relic/agent/threading/agent_thread.rb +20 -15
- data/lib/new_relic/agent/threading/backtrace_node.rb +13 -14
- data/lib/new_relic/agent/threading/backtrace_service.rb +23 -26
- data/lib/new_relic/agent/threading/thread_profile.rb +32 -46
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +19 -0
- data/lib/new_relic/agent/tracer.rb +514 -0
- data/lib/new_relic/agent/transaction/abstract_segment.rb +388 -0
- data/lib/new_relic/agent/transaction/datastore_segment.rb +155 -0
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +185 -0
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +171 -0
- data/lib/new_relic/agent/transaction/external_request_segment.rb +265 -0
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +98 -0
- data/lib/new_relic/agent/transaction/request_attributes.rb +158 -0
- data/lib/new_relic/agent/transaction/segment.rb +102 -0
- data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +2 -4
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +3 -3
- data/lib/new_relic/agent/transaction/trace.rb +43 -37
- data/lib/new_relic/agent/transaction/trace_builder.rb +56 -0
- data/lib/new_relic/agent/transaction/trace_context.rb +168 -0
- data/lib/new_relic/agent/transaction/trace_node.rb +57 -66
- data/lib/new_relic/agent/transaction/tracing.rb +87 -0
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +7 -7
- data/lib/new_relic/agent/transaction.rb +438 -396
- data/lib/new_relic/agent/transaction_error_primitive.rb +105 -0
- data/lib/new_relic/agent/transaction_event_aggregator.rb +43 -260
- data/lib/new_relic/agent/transaction_event_primitive.rb +127 -0
- data/lib/new_relic/agent/transaction_event_recorder.rb +49 -0
- data/lib/new_relic/agent/transaction_metrics.rb +19 -10
- data/lib/new_relic/agent/transaction_sampler.rb +22 -219
- data/lib/new_relic/agent/transaction_time_aggregator.rb +160 -0
- data/lib/new_relic/agent/utilization/aws.rb +48 -0
- data/lib/new_relic/agent/utilization/azure.rb +17 -0
- data/lib/new_relic/agent/utilization/gcp.rb +33 -0
- data/lib/new_relic/agent/utilization/pcf.rb +33 -0
- data/lib/new_relic/agent/utilization/vendor.rb +157 -0
- data/lib/new_relic/agent/utilization_data.rb +124 -37
- data/lib/new_relic/agent/vm/c_ruby_vm.rb +99 -0
- data/lib/new_relic/agent/vm/jruby_vm.rb +3 -5
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +4 -4
- data/lib/new_relic/agent/vm/snapshot.rb +6 -6
- data/lib/new_relic/agent/vm.rb +5 -8
- data/lib/new_relic/agent/worker_loop.rb +16 -18
- data/lib/new_relic/agent.rb +476 -210
- data/lib/new_relic/base64.rb +25 -0
- data/lib/new_relic/cli/command.rb +27 -26
- data/lib/new_relic/cli/commands/deployments.rb +108 -50
- data/lib/new_relic/cli/commands/install.rb +35 -36
- data/lib/new_relic/coerce.rb +43 -16
- data/lib/new_relic/collection_helper.rb +49 -67
- data/lib/new_relic/constants.rb +45 -0
- data/lib/new_relic/control/class_methods.rb +7 -7
- data/lib/new_relic/control/frameworks/external.rb +3 -3
- data/lib/new_relic/control/frameworks/rails.rb +59 -49
- data/lib/new_relic/control/frameworks/rails3.rb +5 -7
- data/lib/new_relic/control/frameworks/rails4.rb +3 -3
- data/lib/new_relic/control/frameworks/rails_notifications.rb +14 -0
- data/lib/new_relic/control/frameworks/roda.rb +20 -0
- data/lib/new_relic/control/frameworks/ruby.rb +5 -5
- data/lib/new_relic/control/frameworks/sinatra.rb +8 -2
- data/lib/new_relic/control/frameworks.rb +2 -2
- data/lib/new_relic/control/instance_methods.rb +47 -29
- data/lib/new_relic/control/instrumentation.rb +27 -21
- data/lib/new_relic/control/private_instance_methods.rb +48 -0
- data/lib/new_relic/control/server_methods.rb +6 -60
- data/lib/new_relic/control.rb +3 -5
- data/lib/new_relic/delayed_job_injection.rb +2 -2
- data/lib/new_relic/dependency_detection.rb +234 -0
- data/lib/new_relic/environment_report.rb +42 -36
- data/lib/new_relic/helper.rb +54 -22
- data/lib/new_relic/language_support.rb +73 -99
- data/lib/new_relic/latest_changes.rb +13 -12
- data/lib/new_relic/local_environment.rb +55 -42
- data/lib/new_relic/metric_data.rb +37 -39
- data/lib/new_relic/metric_spec.rb +9 -24
- data/lib/new_relic/noticed_error.rb +103 -62
- data/lib/new_relic/rack/agent_hooks.rb +3 -3
- data/lib/new_relic/rack/agent_middleware.rb +5 -5
- data/lib/new_relic/rack/browser_monitoring.rb +147 -114
- data/lib/new_relic/rack.rb +2 -2
- data/lib/new_relic/recipes/capistrano3.rb +12 -55
- data/lib/new_relic/recipes/capistrano_legacy.rb +26 -29
- data/lib/new_relic/recipes/helpers/send_deployment.rb +70 -0
- data/lib/new_relic/recipes.rb +2 -2
- data/lib/new_relic/supportability_helper.rb +88 -0
- data/lib/new_relic/thread_local_storage.rb +31 -0
- data/lib/new_relic/traced_thread.rb +38 -0
- data/lib/new_relic/version.rb +7 -63
- data/lib/newrelic_rpm.rb +21 -34
- data/lib/sequel/extensions/new_relic_instrumentation.rb +99 -0
- data/lib/sequel/plugins/new_relic_instrumentation.rb +64 -0
- data/lib/tasks/all.rb +4 -4
- data/lib/tasks/bump_version.rake +21 -0
- data/lib/tasks/config.rake +27 -119
- data/lib/tasks/coverage_report.rake +28 -0
- data/lib/tasks/helpers/config.html.erb +115 -0
- data/lib/tasks/helpers/config.text.erb +8 -0
- data/lib/tasks/helpers/format.rb +127 -0
- data/lib/tasks/helpers/matches.rb +12 -0
- data/lib/tasks/helpers/newrelicyml.rb +144 -0
- data/lib/tasks/helpers/prompt.rb +24 -0
- data/lib/tasks/helpers/version_bump.rb +62 -0
- data/lib/tasks/install.rake +8 -4
- data/lib/tasks/instrumentation_generator/README.md +63 -0
- data/lib/tasks/instrumentation_generator/TODO.md +33 -0
- data/lib/tasks/instrumentation_generator/instrumentation.thor +129 -0
- data/lib/tasks/instrumentation_generator/templates/Envfile.tt +9 -0
- data/lib/tasks/instrumentation_generator/templates/chain.tt +21 -0
- data/lib/tasks/instrumentation_generator/templates/chain_method.tt +7 -0
- data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +29 -0
- data/lib/tasks/instrumentation_generator/templates/instrumentation.tt +13 -0
- data/lib/tasks/instrumentation_generator/templates/instrumentation_method.tt +3 -0
- data/lib/tasks/instrumentation_generator/templates/newrelic.yml.tt +19 -0
- data/lib/tasks/instrumentation_generator/templates/prepend.tt +13 -0
- data/lib/tasks/instrumentation_generator/templates/prepend_method.tt +3 -0
- data/lib/tasks/instrumentation_generator/templates/test.tt +15 -0
- data/lib/tasks/newrelic.rb +10 -0
- data/lib/tasks/newrelicyml.rake +13 -0
- data/lib/tasks/tests.rake +87 -16
- data/newrelic.yml +832 -10
- data/newrelic_rpm.gemspec +56 -56
- data/recipes/newrelic.rb +3 -3
- data/test/agent_helper.rb +513 -115
- metadata +384 -912
- data/.gitignore +0 -27
- data/.project +0 -23
- data/.travis.yml +0 -12
- data/.yardopts +0 -21
- data/CHANGELOG +0 -2300
- data/GUIDELINES_FOR_CONTRIBUTING.md +0 -80
- data/Guardfile +0 -8
- data/bin/mongrel_rpm +0 -33
- data/bin/newrelic_cmd +0 -5
- data/cert/cacert.pem +0 -1177
- data/config/database.yml +0 -5
- data/config.dot +0 -287
- data/lib/conditional_vendored_dependency_detection.rb +0 -7
- data/lib/conditional_vendored_metric_parser.rb +0 -9
- 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 -178
- data/lib/new_relic/agent/cross_app_tracing.rb +0 -339
- data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +0 -39
- data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +0 -53
- data/lib/new_relic/agent/hash_extensions.rb +0 -26
- data/lib/new_relic/agent/inbound_request_monitor.rb +0 -41
- data/lib/new_relic/agent/instrumentation/active_record_4.rb +0 -28
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +0 -72
- data/lib/new_relic/agent/instrumentation/authlogic.rb +0 -25
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +0 -167
- data/lib/new_relic/agent/instrumentation/evented_subscriber.rb +0 -100
- data/lib/new_relic/agent/instrumentation/excon/connection.rb +0 -33
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +0 -44
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +0 -33
- data/lib/new_relic/agent/instrumentation/metric_frame.rb +0 -39
- data/lib/new_relic/agent/instrumentation/net.rb +0 -36
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +0 -123
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +0 -46
- data/lib/new_relic/agent/instrumentation/rails/errors.rb +0 -51
- data/lib/new_relic/agent/instrumentation/rails3/errors.rb +0 -47
- data/lib/new_relic/agent/instrumentation/rails4/action_controller.rb +0 -29
- data/lib/new_relic/agent/instrumentation/rails4/action_view.rb +0 -25
- data/lib/new_relic/agent/instrumentation/rails4/errors.rb +0 -46
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +0 -26
- data/lib/new_relic/agent/instrumentation/rubyprof.rb +0 -26
- data/lib/new_relic/agent/instrumentation/sunspot.rb +0 -33
- data/lib/new_relic/agent/new_relic_service/pruby_marshaller.rb +0 -56
- data/lib/new_relic/agent/sampled_buffer.rb +0 -51
- data/lib/new_relic/agent/shim_agent.rb +0 -33
- data/lib/new_relic/agent/sized_buffer.rb +0 -23
- data/lib/new_relic/agent/stats_engine/metric_stats.rb +0 -237
- data/lib/new_relic/agent/stats_engine/samplers.rb +0 -28
- data/lib/new_relic/agent/supported_versions.rb +0 -259
- data/lib/new_relic/agent/synthetics_event_buffer.rb +0 -42
- data/lib/new_relic/agent/synthetics_monitor.rb +0 -50
- data/lib/new_relic/agent/traced_method_stack.rb +0 -99
- data/lib/new_relic/agent/transaction/attributes.rb +0 -161
- data/lib/new_relic/agent/transaction/developer_mode_sample_buffer.rb +0 -62
- data/lib/new_relic/agent/transaction/xray_sample_buffer.rb +0 -64
- data/lib/new_relic/agent/transaction_sample_builder.rb +0 -147
- data/lib/new_relic/agent/transaction_state.rb +0 -153
- data/lib/new_relic/agent/transaction_timings.rb +0 -57
- data/lib/new_relic/agent/vm/mri_vm.rb +0 -87
- data/lib/new_relic/agent/vm/rubinius_vm.rb +0 -132
- data/lib/new_relic/build.rb +0 -2
- data/lib/new_relic/control/frameworks/merb.rb +0 -29
- data/lib/new_relic/json_wrapper.rb +0 -78
- data/lib/new_relic/merbtasks.rb +0 -10
- data/lib/new_relic/metrics.rb +0 -13
- data/lib/new_relic/okjson.rb +0 -602
- data/lib/new_relic/rack/developer_mode/segment_summary.rb +0 -56
- data/lib/new_relic/rack/developer_mode.rb +0 -321
- data/lib/new_relic/rack/error_collector.rb +0 -27
- data/lib/new_relic/timer_lib.rb +0 -31
- data/lib/sequel/extensions/newrelic_instrumentation.rb +0 -79
- data/lib/sequel/plugins/newrelic_instrumentation.rb +0 -65
- data/lib/tasks/config.html.erb +0 -28
- data/lib/tasks/config.text.erb +0 -7
- data/lib/tasks/versions.html.erb +0 -27
- data/lib/tasks/versions.rake +0 -53
- data/lib/tasks/versions.txt.erb +0 -14
- data/test/config/newrelic.yml +0 -46
- data/test/config/test.cert.crt +0 -18
- data/test/config/test.cert.key +0 -15
- data/test/config/test_control.rb +0 -54
- data/test/environments/.gitignore +0 -16
- data/test/environments/lib/environments/runner.rb +0 -113
- data/test/environments/norails/Gemfile +0 -21
- data/test/environments/norails/Rakefile +0 -9
- data/test/environments/rails21/Gemfile +0 -25
- data/test/environments/rails21/Rakefile +0 -16
- data/test/environments/rails21/app/controllers/application.rb +0 -20
- data/test/environments/rails21/config/boot.rb +0 -113
- data/test/environments/rails21/config/database.yml +0 -26
- data/test/environments/rails21/config/environment.rb +0 -26
- data/test/environments/rails21/config/environments/development.rb +0 -10
- data/test/environments/rails21/config/environments/production.rb +0 -8
- data/test/environments/rails21/config/environments/test.rb +0 -10
- data/test/environments/rails21/config/routes.rb +0 -5
- data/test/environments/rails21/db/schema.rb +0 -5
- data/test/environments/rails22/Gemfile +0 -25
- data/test/environments/rails22/Rakefile +0 -16
- data/test/environments/rails22/app/controllers/application.rb +0 -20
- data/test/environments/rails22/config/boot.rb +0 -113
- data/test/environments/rails22/config/database.yml +0 -26
- data/test/environments/rails22/config/environment.rb +0 -25
- data/test/environments/rails22/config/environments/development.rb +0 -10
- data/test/environments/rails22/config/environments/production.rb +0 -8
- data/test/environments/rails22/config/environments/test.rb +0 -10
- data/test/environments/rails22/config/routes.rb +0 -5
- data/test/environments/rails22/db/schema.rb +0 -5
- data/test/environments/rails23/Gemfile +0 -24
- data/test/environments/rails23/Rakefile +0 -16
- data/test/environments/rails23/app/controllers/application.rb +0 -20
- data/test/environments/rails23/config/boot.rb +0 -127
- data/test/environments/rails23/config/database.yml +0 -26
- data/test/environments/rails23/config/environment.rb +0 -16
- data/test/environments/rails23/config/environments/production.rb +0 -8
- data/test/environments/rails23/config/environments/test.rb +0 -10
- data/test/environments/rails23/config/preinitializer.rb +0 -25
- data/test/environments/rails23/config/routes.rb +0 -5
- data/test/environments/rails23/db/schema.rb +0 -5
- data/test/environments/rails30/Gemfile +0 -23
- data/test/environments/rails30/Rakefile +0 -11
- data/test/environments/rails30/config/application.rb +0 -17
- data/test/environments/rails30/config/boot.rb +0 -10
- data/test/environments/rails30/config/database.yml +0 -26
- data/test/environments/rails30/config/environment.rb +0 -6
- data/test/environments/rails30/config/initializers/new_rails_defaults.rb +0 -11
- data/test/environments/rails30/db/schema.rb +0 -5
- data/test/environments/rails31/Gemfile +0 -24
- data/test/environments/rails31/Rakefile +0 -11
- data/test/environments/rails31/config/application.rb +0 -18
- data/test/environments/rails31/config/boot.rb +0 -10
- data/test/environments/rails31/config/database.yml +0 -26
- data/test/environments/rails31/config/environment.rb +0 -6
- data/test/environments/rails31/config/initializers/new_rails_defaults.rb +0 -21
- data/test/environments/rails31/db/schema.rb +0 -5
- data/test/environments/rails32/Gemfile +0 -26
- data/test/environments/rails32/Rakefile +0 -11
- data/test/environments/rails32/config/application.rb +0 -19
- data/test/environments/rails32/config/boot.rb +0 -10
- data/test/environments/rails32/config/database.yml +0 -31
- data/test/environments/rails32/config/environment.rb +0 -6
- data/test/environments/rails32/db/schema.rb +0 -5
- data/test/environments/rails40/Gemfile +0 -43
- data/test/environments/rails40/Rakefile +0 -11
- data/test/environments/rails40/config/application.rb +0 -18
- data/test/environments/rails40/config/boot.rb +0 -10
- data/test/environments/rails40/config/database.yml +0 -26
- data/test/environments/rails40/config/environment.rb +0 -6
- data/test/environments/rails40/db/schema.rb +0 -5
- data/test/environments/rails41/Gemfile +0 -35
- data/test/environments/rails41/Rakefile +0 -11
- data/test/environments/rails41/config/application.rb +0 -18
- data/test/environments/rails41/config/boot.rb +0 -10
- data/test/environments/rails41/config/database.yml +0 -26
- data/test/environments/rails41/config/environment.rb +0 -6
- data/test/environments/rails41/db/schema.rb +0 -5
- data/test/environments/rails42/Gemfile +0 -39
- data/test/environments/rails42/Rakefile +0 -11
- data/test/environments/rails42/config/application.rb +0 -18
- data/test/environments/rails42/config/boot.rb +0 -10
- data/test/environments/rails42/config/database.yml +0 -26
- data/test/environments/rails42/config/environment.rb +0 -6
- data/test/environments/rails42/db/schema.rb +0 -5
- data/test/fixtures/cross_agent_tests/README.md +0 -56
- data/test/fixtures/cross_agent_tests/attribute_configuration.json +0 -384
- data/test/fixtures/cross_agent_tests/cat_map.json +0 -597
- data/test/fixtures/cross_agent_tests/docker_container_id/README.md +0 -6
- data/test/fixtures/cross_agent_tests/docker_container_id/cases.json +0 -46
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-0.9.1.txt +0 -10
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.0.0.txt +0 -10
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-lxc-driver.txt +0 -10
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-fs.txt +0 -10
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-systemd.txt +0 -10
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.3.txt +0 -9
- data/test/fixtures/cross_agent_tests/docker_container_id/empty.txt +0 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/heroku.txt +0 -1
- data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-lxc-container.txt +0 -10
- data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-no-container.txt +0 -10
- data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.10-no-container.txt +0 -10
- data/test/fixtures/cross_agent_tests/labels.json +0 -133
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/README.md +0 -16
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.colon_obfuscated.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.explain.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.obfuscated.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.explain.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.colon_obfuscated.txt +0 -5
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.explain.txt +0 -5
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.obfuscated.txt +0 -5
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.colon_obfuscated.txt +0 -5
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.explain.txt +0 -5
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.obfuscated.txt +0 -5
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.colon_obfuscated.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.explain.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.obfuscated.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.explain.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_1logical.txt +0 -3
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_2logical.txt +0 -14
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_2core_2logical.txt +0 -14
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_4core_4logical.txt +0 -28
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_12core_24logical.txt +0 -575
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_20core_40logical.txt +0 -999
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_2logical.txt +0 -51
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_4logical.txt +0 -28
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_4core_4logical.txt +0 -28
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/4pack_4core_4logical.txt +0 -103
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/8pack_8core_8logical.txt +0 -199
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/README.md +0 -24
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/Xpack_Xcore_2logical.txt +0 -43
- data/test/fixtures/cross_agent_tests/proc_meminfo/README.md +0 -7
- data/test/fixtures/cross_agent_tests/proc_meminfo/meminfo_4096MB.txt +0 -47
- data/test/fixtures/cross_agent_tests/rules.json +0 -165
- data/test/fixtures/cross_agent_tests/rum_client_config.json +0 -62
- data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/close-body-in-comment.html +0 -10
- data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/dynamic-iframe.html +0 -19
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/basic.html +0 -10
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/body_with_attributes.html +0 -3
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_after_x_ua_tag.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_before_x_ua_tag.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_with_spaces.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments1.html +0 -24
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments2.html +0 -24
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_after_x_ua_tag.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_before_x_ua_tag.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/empty_head +0 -4
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes1.html +0 -27
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes2.html +0 -24
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes_mismatch.html +0 -24
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes1.html +0 -25
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes_mismatch.html +0 -25
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/head_with_attributes.html +0 -10
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/incomplete_non_meta_tags.html +0 -10
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_end_header.html +0 -6
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_header.html +0 -7
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_html_and_no_header.html +0 -3
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_start_header.html +0 -9
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script1.html +0 -19
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script2.html +0 -17
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag.html +0 -10
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiline.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiple_tags.html +0 -12
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_spaces_around_equals.html +0 -10
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_others.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_spaces.html +0 -10
- data/test/fixtures/cross_agent_tests/sql_obfuscation/README.md +0 -30
- data/test/fixtures/cross_agent_tests/sql_obfuscation/sql_obfuscation.json +0 -365
- data/test/fixtures/cross_agent_tests/sql_parsing.json +0 -55
- data/test/fixtures/cross_agent_tests/synthetics/README.md +0 -65
- data/test/fixtures/cross_agent_tests/synthetics/synthetics.json +0 -317
- data/test/fixtures/cross_agent_tests/transaction_segment_terms.json +0 -101
- data/test/fixtures/cross_agent_tests/url_clean.json +0 -15
- data/test/fixtures/cross_agent_tests/url_domain_extraction.json +0 -35
- data/test/helpers/exceptions.rb +0 -16
- data/test/helpers/file_searching.rb +0 -28
- data/test/helpers/mongo_metric_builder.rb +0 -28
- data/test/helpers/runtime_detection.rb +0 -17
- data/test/intentional_fail.rb +0 -13
- data/test/multiverse/.gitignore +0 -13
- data/test/multiverse/README.md +0 -85
- data/test/multiverse/lib/multiverse/color.rb +0 -23
- data/test/multiverse/lib/multiverse/envfile.rb +0 -66
- data/test/multiverse/lib/multiverse/environment.rb +0 -19
- data/test/multiverse/lib/multiverse/output_collector.rb +0 -82
- data/test/multiverse/lib/multiverse/runner.rb +0 -117
- data/test/multiverse/lib/multiverse/suite.rb +0 -525
- data/test/multiverse/script/runner +0 -5
- data/test/multiverse/suites/active_record/.gitignore +0 -1
- data/test/multiverse/suites/active_record/Envfile +0 -67
- data/test/multiverse/suites/active_record/Rakefile +0 -9
- data/test/multiverse/suites/active_record/active_record_test.rb +0 -374
- data/test/multiverse/suites/active_record/app/models/models.rb +0 -27
- data/test/multiverse/suites/active_record/ar_method_aliasing.rb +0 -43
- data/test/multiverse/suites/active_record/before_suite.rb +0 -23
- data/test/multiverse/suites/active_record/config/database.rb +0 -79
- data/test/multiverse/suites/active_record/config/database.yml +0 -19
- data/test/multiverse/suites/active_record/config/newrelic.yml +0 -18
- data/test/multiverse/suites/active_record/db/migrate/20141105131800_create_users_and_aliases.rb +0 -21
- data/test/multiverse/suites/active_record/db/migrate/20141106082200_create_orders_and_shipments.rb +0 -25
- data/test/multiverse/suites/activemerchant/Envfile +0 -36
- data/test/multiverse/suites/activemerchant/activemerchant_test.rb +0 -62
- data/test/multiverse/suites/agent_only/Envfile +0 -4
- data/test/multiverse/suites/agent_only/agent_attributes_test.rb +0 -145
- data/test/multiverse/suites/agent_only/agent_run_id_handling_test.rb +0 -39
- data/test/multiverse/suites/agent_only/audit_log_test.rb +0 -58
- data/test/multiverse/suites/agent_only/collector_exception_handling_test.rb +0 -87
- data/test/multiverse/suites/agent_only/config/newrelic.yml +0 -27
- data/test/multiverse/suites/agent_only/cross_application_tracing_test.rb +0 -94
- data/test/multiverse/suites/agent_only/custom_analytics_events_test.rb +0 -67
- data/test/multiverse/suites/agent_only/custom_queue_time_test.rb +0 -60
- data/test/multiverse/suites/agent_only/encoding_handling_test.rb +0 -130
- data/test/multiverse/suites/agent_only/exclusive_time_test.rb +0 -176
- data/test/multiverse/suites/agent_only/harvest_timestamps_test.rb +0 -83
- data/test/multiverse/suites/agent_only/http_response_code_test.rb +0 -38
- data/test/multiverse/suites/agent_only/keepalive_test.rb +0 -24
- data/test/multiverse/suites/agent_only/key_transactions_test.rb +0 -118
- data/test/multiverse/suites/agent_only/labels_test.rb +0 -83
- data/test/multiverse/suites/agent_only/logging_test.rb +0 -162
- data/test/multiverse/suites/agent_only/marshaling_test.rb +0 -88
- data/test/multiverse/suites/agent_only/pipe_manager_test.rb +0 -41
- data/test/multiverse/suites/agent_only/rename_rule_test.rb +0 -91
- data/test/multiverse/suites/agent_only/rum_instrumentation_test.rb +0 -97
- data/test/multiverse/suites/agent_only/script/env_change.rb +0 -10
- data/test/multiverse/suites/agent_only/script/loading.rb +0 -20
- data/test/multiverse/suites/agent_only/script/symbol_env.rb +0 -10
- data/test/multiverse/suites/agent_only/service_timeout_test.rb +0 -39
- data/test/multiverse/suites/agent_only/set_transaction_name_test.rb +0 -118
- data/test/multiverse/suites/agent_only/ssl_test.rb +0 -20
- data/test/multiverse/suites/agent_only/start_up_test.rb +0 -55
- data/test/multiverse/suites/agent_only/synthetics_test.rb +0 -131
- data/test/multiverse/suites/agent_only/testing_app.rb +0 -58
- data/test/multiverse/suites/agent_only/thread_profiling_test.rb +0 -160
- data/test/multiverse/suites/agent_only/transaction_ignoring_test.rb +0 -42
- data/test/multiverse/suites/agent_only/utilization_data_collection_test.rb +0 -171
- data/test/multiverse/suites/agent_only/xray_sessions_test.rb +0 -199
- data/test/multiverse/suites/bare/Envfile +0 -3
- data/test/multiverse/suites/bare/standalone_instrumentation_test.rb +0 -43
- data/test/multiverse/suites/capistrano/Capfile +0 -26
- data/test/multiverse/suites/capistrano/Envfile +0 -18
- data/test/multiverse/suites/capistrano/config/deploy/production.rb +0 -9
- data/test/multiverse/suites/capistrano/config/deploy.rb +0 -14
- data/test/multiverse/suites/capistrano/config/newrelic.yml +0 -21
- data/test/multiverse/suites/capistrano/deployment_test.rb +0 -54
- data/test/multiverse/suites/capistrano2/Capfile +0 -4
- data/test/multiverse/suites/capistrano2/Envfile +0 -8
- data/test/multiverse/suites/capistrano2/config/deploy.rb +0 -19
- data/test/multiverse/suites/capistrano2/config/newrelic.yml +0 -21
- data/test/multiverse/suites/capistrano2/deployment_test.rb +0 -37
- data/test/multiverse/suites/config_file_loading/Envfile +0 -13
- data/test/multiverse/suites/config_file_loading/config_file_loading_test.rb +0 -213
- data/test/multiverse/suites/curb/Envfile +0 -31
- data/test/multiverse/suites/curb/config/newrelic.yml +0 -18
- data/test/multiverse/suites/curb/curb_test.rb +0 -213
- data/test/multiverse/suites/datamapper/Envfile +0 -30
- data/test/multiverse/suites/datamapper/config/newrelic.yml +0 -20
- data/test/multiverse/suites/datamapper/datamapper_test.rb +0 -335
- data/test/multiverse/suites/deferred_instrumentation/Envfile +0 -15
- data/test/multiverse/suites/deferred_instrumentation/config/newrelic.yml +0 -20
- data/test/multiverse/suites/deferred_instrumentation/sinatra_test.rb +0 -107
- data/test/multiverse/suites/delayed_job/Envfile +0 -102
- data/test/multiverse/suites/delayed_job/before_suite.rb +0 -33
- data/test/multiverse/suites/delayed_job/config/newrelic.yml +0 -18
- data/test/multiverse/suites/delayed_job/delayed_job_sampler_test.rb +0 -128
- data/test/multiverse/suites/delayed_job/unsupported_backend_test.rb +0 -21
- data/test/multiverse/suites/excon/Envfile +0 -21
- data/test/multiverse/suites/excon/config/newrelic.yml +0 -18
- data/test/multiverse/suites/excon/excon_test.rb +0 -81
- data/test/multiverse/suites/grape/Envfile +0 -13
- data/test/multiverse/suites/grape/config/newrelic.yml +0 -19
- data/test/multiverse/suites/grape/grape_test.rb +0 -202
- data/test/multiverse/suites/grape/grape_test_api.rb +0 -64
- data/test/multiverse/suites/grape/grape_versioning_test.rb +0 -64
- data/test/multiverse/suites/grape/grape_versioning_test_api.rb +0 -72
- data/test/multiverse/suites/grape/unsupported_version_test.rb +0 -28
- data/test/multiverse/suites/high_security/Envfile +0 -3
- data/test/multiverse/suites/high_security/config/newrelic.yml +0 -70
- data/test/multiverse/suites/high_security/high_security_test.rb +0 -214
- data/test/multiverse/suites/httpclient/Envfile +0 -13
- data/test/multiverse/suites/httpclient/config/newrelic.yml +0 -18
- data/test/multiverse/suites/httpclient/httpclient_test.rb +0 -75
- data/test/multiverse/suites/json/Envfile +0 -25
- data/test/multiverse/suites/json/config/newrelic.yml +0 -22
- data/test/multiverse/suites/json/json_test.rb +0 -16
- data/test/multiverse/suites/marshalling/Envfile +0 -12
- data/test/multiverse/suites/marshalling/config/newrelic.yml +0 -20
- data/test/multiverse/suites/marshalling/marshalling_test.rb +0 -16
- data/test/multiverse/suites/memcached/Envfile +0 -52
- data/test/multiverse/suites/memcached/dalli_test.rb +0 -89
- data/test/multiverse/suites/memcached/memcache_client_test.rb +0 -25
- data/test/multiverse/suites/memcached/memcache_test_cases.rb +0 -302
- data/test/multiverse/suites/memcached/memcached_test.rb +0 -159
- data/test/multiverse/suites/mongo/Envfile +0 -69
- data/test/multiverse/suites/mongo/config/newrelic.yml +0 -18
- data/test/multiverse/suites/mongo/helpers/mongo_operation_tests.rb +0 -489
- data/test/multiverse/suites/mongo/helpers/mongo_replica_set.rb +0 -97
- data/test/multiverse/suites/mongo/helpers/mongo_replica_set_test.rb +0 -82
- data/test/multiverse/suites/mongo/helpers/mongo_server.rb +0 -241
- data/test/multiverse/suites/mongo/helpers/mongo_server_test.rb +0 -176
- data/test/multiverse/suites/mongo/mongo_connection_test.rb +0 -39
- data/test/multiverse/suites/mongo/mongo_instrumentation_test.rb +0 -39
- data/test/multiverse/suites/mongo/mongo_unsupported_version_test.rb +0 -72
- data/test/multiverse/suites/net_http/Envfile +0 -4
- data/test/multiverse/suites/net_http/config/newrelic.yml +0 -18
- data/test/multiverse/suites/net_http/net_http_test.rb +0 -111
- data/test/multiverse/suites/padrino/Envfile +0 -14
- data/test/multiverse/suites/padrino/config/newrelic.yml +0 -20
- data/test/multiverse/suites/padrino/padrino_test.rb +0 -52
- data/test/multiverse/suites/rack/Envfile +0 -35
- data/test/multiverse/suites/rack/builder_map_test.rb +0 -128
- data/test/multiverse/suites/rack/example_app.rb +0 -100
- data/test/multiverse/suites/rack/http_response_code_test.rb +0 -50
- data/test/multiverse/suites/rack/nested_non_rack_app_test.rb +0 -66
- data/test/multiverse/suites/rack/rack_auto_instrumentation_test.rb +0 -144
- data/test/multiverse/suites/rack/rack_cascade_test.rb +0 -45
- data/test/multiverse/suites/rack/rack_env_mutation_test.rb +0 -53
- data/test/multiverse/suites/rack/rack_parameter_filtering_test.rb +0 -49
- data/test/multiverse/suites/rack/rack_unsupported_version_test.rb +0 -43
- data/test/multiverse/suites/rack/url_map_test.rb +0 -117
- data/test/multiverse/suites/rails/Envfile +0 -61
- data/test/multiverse/suites/rails/action_controller_live_rum_test.rb +0 -39
- data/test/multiverse/suites/rails/activejob_test.rb +0 -152
- data/test/multiverse/suites/rails/app/views/foos/_foo.html.haml +0 -1
- data/test/multiverse/suites/rails/app/views/views/_a_partial.html.erb +0 -2
- data/test/multiverse/suites/rails/app/views/views/_mid_partial.html.erb +0 -1
- data/test/multiverse/suites/rails/app/views/views/_top_partial.html.erb +0 -3
- data/test/multiverse/suites/rails/app/views/views/deep_partial.html.erb +0 -3
- data/test/multiverse/suites/rails/app/views/views/haml_view.html.haml +0 -6
- data/test/multiverse/suites/rails/app/views/views/index.html.erb +0 -4
- data/test/multiverse/suites/rails/app.rb +0 -44
- data/test/multiverse/suites/rails/bad_instrumentation_test.rb +0 -29
- data/test/multiverse/suites/rails/config/newrelic.yml +0 -30
- data/test/multiverse/suites/rails/dummy.txt +0 -1
- data/test/multiverse/suites/rails/error_tracing_test.rb +0 -322
- data/test/multiverse/suites/rails/gc_instrumentation_test.rb +0 -93
- data/test/multiverse/suites/rails/ignore_test.rb +0 -79
- data/test/multiverse/suites/rails/middleware_instrumentation_test.rb +0 -41
- data/test/multiverse/suites/rails/middlewares.rb +0 -19
- data/test/multiverse/suites/rails/parameter_capture_test.rb +0 -299
- data/test/multiverse/suites/rails/queue_time_test.rb +0 -89
- data/test/multiverse/suites/rails/rails2_app/app/controllers/application.rb +0 -7
- data/test/multiverse/suites/rails/rails2_app/config/boot.rb +0 -127
- data/test/multiverse/suites/rails/rails2_app/config/database.yml +0 -18
- data/test/multiverse/suites/rails/rails2_app/config/environment.rb +0 -16
- data/test/multiverse/suites/rails/rails2_app/config/environments/development.rb +0 -10
- data/test/multiverse/suites/rails/rails2_app/config/initializers/load_newrelic_rpm.rb +0 -9
- data/test/multiverse/suites/rails/rails2_app/config/preinitializer.rb +0 -25
- data/test/multiverse/suites/rails/rails2_app/config/routes.rb +0 -19
- data/test/multiverse/suites/rails/rails2_app/db/schema.rb +0 -5
- data/test/multiverse/suites/rails/rails3_app/app_rails3_plus.rb +0 -92
- data/test/multiverse/suites/rails/request_statistics_test.rb +0 -192
- data/test/multiverse/suites/rails/transaction_ignoring_test.rb +0 -41
- data/test/multiverse/suites/rails/view_instrumentation_test.rb +0 -254
- data/test/multiverse/suites/resque/Envfile +0 -11
- data/test/multiverse/suites/resque/Rakefile +0 -3
- data/test/multiverse/suites/resque/config/newrelic.yml +0 -19
- data/test/multiverse/suites/resque/instrumentation_test.rb +0 -155
- data/test/multiverse/suites/resque/resque_marshalling_test.rb +0 -53
- data/test/multiverse/suites/sequel/Envfile +0 -34
- data/test/multiverse/suites/sequel/config/newrelic.yml +0 -18
- data/test/multiverse/suites/sequel/database.rb +0 -57
- data/test/multiverse/suites/sequel/sequel_extension_test.rb +0 -142
- data/test/multiverse/suites/sequel/sequel_helpers.rb +0 -62
- data/test/multiverse/suites/sequel/sequel_plugin_test.rb +0 -230
- data/test/multiverse/suites/sequel/sequel_safety_test.rb +0 -30
- data/test/multiverse/suites/sidekiq/Envfile +0 -31
- data/test/multiverse/suites/sidekiq/after_suite.rb +0 -16
- data/test/multiverse/suites/sidekiq/config/newrelic.yml +0 -20
- data/test/multiverse/suites/sidekiq/log/.gitkeep +0 -0
- data/test/multiverse/suites/sidekiq/sidekiq_instrumentation_test.rb +0 -181
- data/test/multiverse/suites/sidekiq/sidekiq_server.rb +0 -31
- data/test/multiverse/suites/sidekiq/test_worker.rb +0 -59
- data/test/multiverse/suites/sinatra/Envfile +0 -17
- data/test/multiverse/suites/sinatra/config/newrelic.yml +0 -21
- data/test/multiverse/suites/sinatra/ignoring_test.rb +0 -208
- data/test/multiverse/suites/sinatra/nested_middleware_test.rb +0 -39
- data/test/multiverse/suites/sinatra/sinatra_classic_test.rb +0 -99
- data/test/multiverse/suites/sinatra/sinatra_error_tracing_test.rb +0 -45
- data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +0 -96
- data/test/multiverse/suites/sinatra/sinatra_modular_test.rb +0 -89
- data/test/multiverse/suites/sinatra/sinatra_parameter_capture_test.rb +0 -65
- data/test/multiverse/suites/sinatra/sinatra_routes_test.rb +0 -49
- data/test/multiverse/suites/sinatra/sinatra_test_cases.rb +0 -137
- data/test/multiverse/suites/typhoeus/Envfile +0 -57
- data/test/multiverse/suites/typhoeus/config/newrelic.yml +0 -18
- data/test/multiverse/suites/typhoeus/typhoeus_test.rb +0 -144
- data/test/multiverse/suites/yajl/Envfile +0 -13
- data/test/multiverse/suites/yajl/config/newrelic.yml +0 -21
- data/test/multiverse/suites/yajl/yajl_test.rb +0 -18
- data/test/multiverse/test/multiverse_test.rb +0 -59
- data/test/multiverse/test/suite_examples/one/a/Envfile +0 -3
- data/test/multiverse/test/suite_examples/one/a/a_test.rb +0 -14
- data/test/multiverse/test/suite_examples/one/a/config/newrelic.yml +0 -22
- data/test/multiverse/test/suite_examples/one/b/Envfile +0 -3
- data/test/multiverse/test/suite_examples/one/b/b_test.rb +0 -14
- data/test/multiverse/test/suite_examples/one/b/config/newrelic.yml +0 -22
- data/test/multiverse/test/suite_examples/three/a/Envfile +0 -2
- data/test/multiverse/test/suite_examples/three/a/fail_test.rb +0 -10
- data/test/multiverse/test/suite_examples/three/b/Envfile +0 -2
- data/test/multiverse/test/suite_examples/three/b/win_test.rb +0 -10
- data/test/multiverse/test/suite_examples/two/a/Envfile +0 -1
- data/test/multiverse/test/suite_examples/two/a/fail_test.rb +0 -10
- data/test/new_relic/FAKECHANGELOG +0 -21
- data/test/new_relic/agent/agent/connect_test.rb +0 -308
- data/test/new_relic/agent/agent/start_test.rb +0 -191
- data/test/new_relic/agent/agent/start_worker_thread_test.rb +0 -74
- data/test/new_relic/agent/agent_logger_test.rb +0 -392
- data/test/new_relic/agent/agent_test.rb +0 -701
- data/test/new_relic/agent/agent_test_controller.rb +0 -84
- data/test/new_relic/agent/apdex_from_server_test.rb +0 -13
- data/test/new_relic/agent/attribute_filter_test.rb +0 -218
- data/test/new_relic/agent/attribute_processing_test.rb +0 -160
- data/test/new_relic/agent/audit_logger_test.rb +0 -213
- data/test/new_relic/agent/autostart_test.rb +0 -110
- data/test/new_relic/agent/busy_calculator_test.rb +0 -98
- data/test/new_relic/agent/commands/agent_command_router_test.rb +0 -256
- data/test/new_relic/agent/commands/agent_command_test.rb +0 -37
- data/test/new_relic/agent/commands/thread_profiler_session_test.rb +0 -215
- data/test/new_relic/agent/commands/xray_session_collection_test.rb +0 -332
- data/test/new_relic/agent/commands/xray_session_test.rb +0 -42
- data/test/new_relic/agent/configuration/default_source_test.rb +0 -226
- data/test/new_relic/agent/configuration/dotted_hash_test.rb +0 -53
- data/test/new_relic/agent/configuration/environment_source_test.rb +0 -201
- data/test/new_relic/agent/configuration/high_security_source_test.rb +0 -83
- data/test/new_relic/agent/configuration/manager_test.rb +0 -460
- data/test/new_relic/agent/configuration/manual_source_test.rb +0 -18
- data/test/new_relic/agent/configuration/orphan_configuration_test.rb +0 -89
- data/test/new_relic/agent/configuration/server_source_test.rb +0 -202
- data/test/new_relic/agent/configuration/yaml_source_test.rb +0 -93
- data/test/new_relic/agent/cross_app_monitor_test.rb +0 -248
- data/test/new_relic/agent/cross_app_tracing_test.rb +0 -71
- data/test/new_relic/agent/custom_event_aggregator_test.rb +0 -88
- data/test/new_relic/agent/database/postgres_explain_obfuscator_test.rb +0 -34
- data/test/new_relic/agent/database/sql_obfuscation_test.rb +0 -59
- data/test/new_relic/agent/database_test.rb +0 -400
- data/test/new_relic/agent/datastores/metric_helper_test.rb +0 -97
- data/test/new_relic/agent/datastores/mongo/metric_translator_test.rb +0 -320
- data/test/new_relic/agent/datastores/mongo/obfuscator_test.rb +0 -91
- data/test/new_relic/agent/datastores/mongo/statement_formatter_test.rb +0 -72
- data/test/new_relic/agent/datastores_test.rb +0 -195
- data/test/new_relic/agent/deprecator_test.rb +0 -52
- data/test/new_relic/agent/encoding_normalizer_test.rb +0 -66
- data/test/new_relic/agent/error_collector_test.rb +0 -595
- data/test/new_relic/agent/event_buffer_test_cases.rb +0 -152
- data/test/new_relic/agent/event_listener_test.rb +0 -70
- data/test/new_relic/agent/event_loop_test.rb +0 -202
- data/test/new_relic/agent/harvester_test.rb +0 -79
- data/test/new_relic/agent/hash_extensions_test.rb +0 -34
- data/test/new_relic/agent/hostname_test.rb +0 -93
- data/test/new_relic/agent/http_clients/uri_util_test.rb +0 -64
- data/test/new_relic/agent/inbound_request_monitor_test.rb +0 -49
- data/test/new_relic/agent/instrumentation/action_controller_subscriber_test.rb +0 -299
- data/test/new_relic/agent/instrumentation/action_view_subscriber_test.rb +0 -239
- data/test/new_relic/agent/instrumentation/active_job_test.rb +0 -20
- data/test/new_relic/agent/instrumentation/active_record_helper_test.rb +0 -77
- data/test/new_relic/agent/instrumentation/active_record_subscriber_test.rb +0 -132
- data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +0 -325
- data/test/new_relic/agent/instrumentation/instrumentation_test.rb +0 -14
- data/test/new_relic/agent/instrumentation/metric_frame_test.rb +0 -22
- data/test/new_relic/agent/instrumentation/middleware_proxy_test.rb +0 -257
- data/test/new_relic/agent/instrumentation/middleware_tracing_test.rb +0 -49
- data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +0 -35
- data/test/new_relic/agent/instrumentation/queue_time_test.rb +0 -103
- data/test/new_relic/agent/instrumentation/rack_test.rb +0 -47
- data/test/new_relic/agent/instrumentation/sequel_helper_test.rb +0 -36
- data/test/new_relic/agent/instrumentation/sinatra/transaction_namer_test.rb +0 -55
- data/test/new_relic/agent/instrumentation/sinatra_test.rb +0 -80
- data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +0 -196
- data/test/new_relic/agent/javascript_instrumentor_test.rb +0 -340
- data/test/new_relic/agent/memory_logger_test.rb +0 -67
- data/test/new_relic/agent/method_interrobang_test.rb +0 -31
- data/test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb +0 -122
- data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +0 -224
- data/test/new_relic/agent/method_tracer_test.rb +0 -474
- data/test/new_relic/agent/method_visibility_test.rb +0 -90
- data/test/new_relic/agent/mock_scope_listener.rb +0 -27
- data/test/new_relic/agent/new_relic_service_test.rb +0 -1063
- data/test/new_relic/agent/obfuscator_test.rb +0 -77
- data/test/new_relic/agent/parameter_filtering_test.rb +0 -39
- data/test/new_relic/agent/pipe_channel_manager_test.rb +0 -278
- data/test/new_relic/agent/pipe_service_test.rb +0 -145
- data/test/new_relic/agent/rpm_agent_test.rb +0 -104
- data/test/new_relic/agent/rules_engine_test.rb +0 -136
- data/test/new_relic/agent/sampled_buffer_test.rb +0 -106
- data/test/new_relic/agent/sampler_collection_test.rb +0 -90
- data/test/new_relic/agent/sampler_test.rb +0 -66
- data/test/new_relic/agent/samplers/cpu_sampler_test.rb +0 -51
- data/test/new_relic/agent/samplers/vm_sampler_test.rb +0 -349
- data/test/new_relic/agent/shim_agent_test.rb +0 -20
- data/test/new_relic/agent/sized_buffer_test.rb +0 -29
- data/test/new_relic/agent/sql_sampler_test.rb +0 -403
- data/test/new_relic/agent/stats_engine/gc_profiler_test.rb +0 -188
- data/test/new_relic/agent/stats_engine/metric_stats_test.rb +0 -347
- data/test/new_relic/agent/stats_engine/samplers_test.rb +0 -98
- data/test/new_relic/agent/stats_engine/stats_hash_test.rb +0 -198
- data/test/new_relic/agent/stats_engine_test.rb +0 -32
- data/test/new_relic/agent/stats_test.rb +0 -189
- data/test/new_relic/agent/synthetics_event_buffer_test.rb +0 -54
- data/test/new_relic/agent/synthetics_monitor_test.rb +0 -93
- data/test/new_relic/agent/system_info_test.rb +0 -61
- data/test/new_relic/agent/threading/agent_thread_test.rb +0 -149
- data/test/new_relic/agent/threading/backtrace_node_test.rb +0 -184
- data/test/new_relic/agent/threading/backtrace_service_test.rb +0 -595
- data/test/new_relic/agent/threading/fake_thread.rb +0 -43
- data/test/new_relic/agent/threading/thread_profile_test.rb +0 -272
- data/test/new_relic/agent/threading/threaded_test_case.rb +0 -18
- data/test/new_relic/agent/traced_method_stack_test.rb +0 -187
- data/test/new_relic/agent/transaction/attributes_test.rb +0 -276
- data/test/new_relic/agent/transaction/developer_mode_sample_buffer_test.rb +0 -75
- data/test/new_relic/agent/transaction/slowest_sample_buffer_test.rb +0 -67
- data/test/new_relic/agent/transaction/synthetics_sample_buffer_test.rb +0 -38
- data/test/new_relic/agent/transaction/trace_node_test.rb +0 -361
- data/test/new_relic/agent/transaction/trace_test.rb +0 -394
- data/test/new_relic/agent/transaction/xray_sample_buffer_test.rb +0 -71
- data/test/new_relic/agent/transaction_event_aggregator_test.rb +0 -433
- data/test/new_relic/agent/transaction_interrobang_test.rb +0 -33
- data/test/new_relic/agent/transaction_metrics_test.rb +0 -113
- data/test/new_relic/agent/transaction_sample_builder_test.rb +0 -215
- data/test/new_relic/agent/transaction_sampler_test.rb +0 -849
- data/test/new_relic/agent/transaction_state_test.rb +0 -122
- data/test/new_relic/agent/transaction_test.rb +0 -1435
- data/test/new_relic/agent/transaction_timings_test.rb +0 -91
- data/test/new_relic/agent/utilization_data_test.rb +0 -18
- data/test/new_relic/agent/vm/monotonic_gc_profiler_test.rb +0 -42
- data/test/new_relic/agent/vm/mri_vm_test.rb +0 -42
- data/test/new_relic/agent/vm/rubinius_vm_test.rb +0 -69
- data/test/new_relic/agent/vm/snapshot_test.rb +0 -13
- data/test/new_relic/agent/vm_test.rb +0 -48
- data/test/new_relic/agent/worker_loop_test.rb +0 -98
- data/test/new_relic/agent_test.rb +0 -471
- data/test/new_relic/cli/commands/deployments_test.rb +0 -121
- data/test/new_relic/cli/commands/install_test.rb +0 -27
- data/test/new_relic/coerce_test.rb +0 -95
- data/test/new_relic/collection_helper_test.rb +0 -151
- data/test/new_relic/control/class_methods_test.rb +0 -48
- data/test/new_relic/control/frameworks/rails_test.rb +0 -29
- data/test/new_relic/control/instance_methods_test.rb +0 -50
- data/test/new_relic/control/instrumentation_test.rb +0 -56
- data/test/new_relic/control_test.rb +0 -232
- data/test/new_relic/data_container_tests.rb +0 -76
- data/test/new_relic/dependency_detection_test.rb +0 -155
- data/test/new_relic/dispatcher_test.rb +0 -59
- data/test/new_relic/environment_report_test.rb +0 -107
- data/test/new_relic/evil_server.rb +0 -55
- data/test/new_relic/fake_collector.rb +0 -398
- data/test/new_relic/fake_external_server.rb +0 -65
- data/test/new_relic/fake_instance_metadata_service.rb +0 -45
- data/test/new_relic/fake_rpm_site.rb +0 -35
- data/test/new_relic/fake_server.rb +0 -104
- data/test/new_relic/filtering_test_app.rb +0 -19
- data/test/new_relic/framework_test.rb +0 -58
- data/test/new_relic/http_client_test_cases.rb +0 -621
- data/test/new_relic/json_wrapper_test.rb +0 -32
- data/test/new_relic/language_support_test.rb +0 -74
- data/test/new_relic/latest_changes_test.rb +0 -45
- data/test/new_relic/license_test.rb +0 -126
- data/test/new_relic/load_test.rb +0 -15
- data/test/new_relic/local_environment_test.rb +0 -103
- data/test/new_relic/marshalling_test_cases.rb +0 -140
- data/test/new_relic/metric_data_test.rb +0 -191
- data/test/new_relic/metric_parser/metric_parser_test.rb +0 -17
- data/test/new_relic/metric_spec_test.rb +0 -145
- data/test/new_relic/multiverse_helpers.rb +0 -271
- data/test/new_relic/noticed_error_test.rb +0 -197
- data/test/new_relic/rack/agent_hooks_test.rb +0 -44
- data/test/new_relic/rack/agent_middleware_test.rb +0 -32
- data/test/new_relic/rack/browser_monitoring_test.rb +0 -197
- data/test/new_relic/rack/deferred_instrumentation_test.rb +0 -33
- data/test/new_relic/rack/developer_mode/segment_summary_test.rb +0 -96
- data/test/new_relic/rack/developer_mode_helper_test.rb +0 -136
- data/test/new_relic/rack/developer_mode_test.rb +0 -93
- data/test/new_relic/rack/error_collector_test.rb +0 -77
- data/test/new_relic/transaction_ignoring_test_cases.rb +0 -102
- data/test/new_relic/version_number_test.rb +0 -101
- data/test/performance/README.md +0 -182
- data/test/performance/lib/performance/baseline.rb +0 -36
- data/test/performance/lib/performance/baseline_compare_reporter.rb +0 -103
- data/test/performance/lib/performance/baseline_save_reporter.rb +0 -24
- data/test/performance/lib/performance/console_reporter.rb +0 -66
- data/test/performance/lib/performance/formatting_helpers.rb +0 -22
- data/test/performance/lib/performance/hako_client.rb +0 -31
- data/test/performance/lib/performance/hako_reporter.rb +0 -26
- data/test/performance/lib/performance/instrumentation/cpu_usage.rb +0 -26
- data/test/performance/lib/performance/instrumentation/gc_stats.rb +0 -58
- data/test/performance/lib/performance/instrumentation/perf_tools.rb +0 -30
- data/test/performance/lib/performance/instrumentation/stackprof.rb +0 -46
- data/test/performance/lib/performance/instrumentor.rb +0 -96
- data/test/performance/lib/performance/json_reporter.rb +0 -15
- data/test/performance/lib/performance/platform.rb +0 -37
- data/test/performance/lib/performance/reporting.rb +0 -36
- data/test/performance/lib/performance/result.rb +0 -104
- data/test/performance/lib/performance/runner.rb +0 -221
- data/test/performance/lib/performance/table.rb +0 -105
- data/test/performance/lib/performance/test_case.rb +0 -152
- data/test/performance/lib/performance/timer.rb +0 -40
- data/test/performance/lib/performance.rb +0 -38
- data/test/performance/script/baselines +0 -102
- data/test/performance/script/mega-runner +0 -37
- data/test/performance/script/runner +0 -133
- data/test/performance/suites/active_record.rb +0 -47
- data/test/performance/suites/agent_attributes.rb +0 -62
- data/test/performance/suites/config.rb +0 -35
- data/test/performance/suites/marshalling.rb +0 -156
- data/test/performance/suites/queue_time.rb +0 -21
- data/test/performance/suites/rack_middleware.rb +0 -136
- data/test/performance/suites/rum_autoinsertion.rb +0 -75
- data/test/performance/suites/sql_obfuscation.rb +0 -30
- data/test/performance/suites/startup.rb +0 -12
- data/test/performance/suites/stats_hash.rb +0 -30
- data/test/performance/suites/thread_profiling.rb +0 -116
- data/test/performance/suites/trace_execution_scoped.rb +0 -32
- data/test/performance/suites/transaction_tracing.rb +0 -106
- data/test/script/build_test_gem.sh +0 -57
- data/test/script/ci.sh +0 -170
- data/test/script/ci_agent-tests_runner.sh +0 -82
- data/test/script/ci_bench.sh +0 -52
- data/test/script/ci_multiverse_runner.sh +0 -63
- data/test/script/path_hash.rb +0 -49
- data/test/test_helper.rb +0 -267
- data/ui/helpers/developer_mode_helper.rb +0 -324
- data/ui/helpers/google_pie_chart.rb +0 -53
- data/ui/views/layouts/newrelic_default.rhtml +0 -48
- data/ui/views/newrelic/_explain_plans.rhtml +0 -27
- data/ui/views/newrelic/_sample.rhtml +0 -20
- data/ui/views/newrelic/_segment.rhtml +0 -28
- data/ui/views/newrelic/_segment_limit_message.rhtml +0 -1
- data/ui/views/newrelic/_segment_row.rhtml +0 -12
- data/ui/views/newrelic/_show_sample_detail.rhtml +0 -24
- data/ui/views/newrelic/_show_sample_sql.rhtml +0 -24
- data/ui/views/newrelic/_show_sample_summary.rhtml +0 -3
- data/ui/views/newrelic/_sql_row.rhtml +0 -16
- data/ui/views/newrelic/_stack_trace.rhtml +0 -15
- data/ui/views/newrelic/_table.rhtml +0 -12
- data/ui/views/newrelic/explain_sql.rhtml +0 -43
- data/ui/views/newrelic/file/images/arrow-close.png +0 -0
- data/ui/views/newrelic/file/images/arrow-open.png +0 -0
- data/ui/views/newrelic/file/images/blue_bar.gif +0 -0
- data/ui/views/newrelic/file/images/file_icon.png +0 -0
- data/ui/views/newrelic/file/images/gray_bar.gif +0 -0
- data/ui/views/newrelic/file/images/new-relic-rpm-desktop.gif +0 -0
- data/ui/views/newrelic/file/images/new_relic_rpm_desktop.gif +0 -0
- data/ui/views/newrelic/file/images/textmate.png +0 -0
- data/ui/views/newrelic/file/javascript/jquery-1.4.2.js +0 -6243
- data/ui/views/newrelic/file/javascript/transaction_sample.js +0 -123
- data/ui/views/newrelic/file/stylesheets/style.css +0 -490
- data/ui/views/newrelic/index.rhtml +0 -70
- data/ui/views/newrelic/sample_not_found.rhtml +0 -2
- data/ui/views/newrelic/show_sample.rhtml +0 -81
- data/ui/views/newrelic/threads.rhtml +0 -45
- data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection/version.rb +0 -7
- data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb +0 -122
- data/vendor/gems/metric_parser-0.1.0.pre1/.specification +0 -116
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb +0 -5
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/action_mailer.rb +0 -18
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_merchant.rb +0 -35
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_record.rb +0 -37
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/apdex.rb +0 -93
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/background_transaction.rb +0 -11
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/client.rb +0 -50
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller.rb +0 -71
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_cpu.rb +0 -47
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_ext.rb +0 -21
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database.rb +0 -52
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database_pool.rb +0 -28
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net.rb +0 -32
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net_parser.rb +0 -21
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/errors.rb +0 -15
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/external.rb +0 -59
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/frontend.rb +0 -44
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/gc.rb +0 -24
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/hibernate_session.rb +0 -11
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java.rb +0 -35
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java_parser.rb +0 -21
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp.rb +0 -38
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp_tag.rb +0 -11
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/mem_cache.rb +0 -59
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/metric_parser.rb +0 -138
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/middleware.rb +0 -34
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/nested.rb +0 -24
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/orm.rb +0 -31
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/other_transaction.rb +0 -44
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet.rb +0 -11
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_context_listener.rb +0 -11
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_filter.rb +0 -11
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_init.rb +0 -11
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr.rb +0 -31
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr_request_handler.rb +0 -19
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring.rb +0 -58
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_controller.rb +0 -10
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_view.rb +0 -10
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_action.rb +0 -24
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_result.rb +0 -24
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/version.rb +0 -9
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/view.rb +0 -74
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_frontend.rb +0 -22
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_service.rb +0 -18
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_transaction.rb +0 -137
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb +0 -70
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
2
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'socket'
|
6
6
|
require 'net/https'
|
@@ -8,7 +8,9 @@ require 'net/http'
|
|
8
8
|
require 'logger'
|
9
9
|
require 'zlib'
|
10
10
|
require 'stringio'
|
11
|
-
require 'new_relic/
|
11
|
+
require 'new_relic/constants'
|
12
|
+
require 'new_relic/traced_thread'
|
13
|
+
require 'new_relic/coerce'
|
12
14
|
require 'new_relic/agent/autostart'
|
13
15
|
require 'new_relic/agent/harvester'
|
14
16
|
require 'new_relic/agent/hostname'
|
@@ -16,24 +18,37 @@ require 'new_relic/agent/new_relic_service'
|
|
16
18
|
require 'new_relic/agent/pipe_service'
|
17
19
|
require 'new_relic/agent/configuration/manager'
|
18
20
|
require 'new_relic/agent/database'
|
21
|
+
require 'new_relic/agent/instrumentation/resque/helper'
|
19
22
|
require 'new_relic/agent/commands/agent_command_router'
|
20
23
|
require 'new_relic/agent/event_listener'
|
21
|
-
require 'new_relic/agent/
|
22
|
-
require 'new_relic/agent/
|
23
|
-
require 'new_relic/agent/
|
24
|
-
require 'new_relic/agent/transaction_event_aggregator'
|
24
|
+
require 'new_relic/agent/distributed_tracing'
|
25
|
+
require 'new_relic/agent/monitors'
|
26
|
+
require 'new_relic/agent/transaction_event_recorder'
|
25
27
|
require 'new_relic/agent/custom_event_aggregator'
|
28
|
+
require 'new_relic/agent/span_event_aggregator'
|
29
|
+
require 'new_relic/agent/log_event_aggregator'
|
26
30
|
require 'new_relic/agent/sampler_collection'
|
27
31
|
require 'new_relic/agent/javascript_instrumentor'
|
28
32
|
require 'new_relic/agent/vm/monotonic_gc_profiler'
|
29
33
|
require 'new_relic/agent/utilization_data'
|
30
34
|
require 'new_relic/environment_report'
|
31
35
|
require 'new_relic/agent/attribute_filter'
|
36
|
+
require 'new_relic/agent/adaptive_sampler'
|
37
|
+
require 'new_relic/agent/serverless_handler'
|
38
|
+
require 'new_relic/agent/connect/request_builder'
|
39
|
+
require 'new_relic/agent/connect/response_handler'
|
40
|
+
|
41
|
+
require 'new_relic/agent/agent_helpers/connect'
|
42
|
+
require 'new_relic/agent/agent_helpers/harvest'
|
43
|
+
require 'new_relic/agent/agent_helpers/start_worker_thread'
|
44
|
+
require 'new_relic/agent/agent_helpers/startup'
|
45
|
+
require 'new_relic/agent/agent_helpers/special_startup'
|
46
|
+
require 'new_relic/agent/agent_helpers/shutdown'
|
47
|
+
require 'new_relic/agent/agent_helpers/transmit'
|
32
48
|
|
33
49
|
module NewRelic
|
34
50
|
module Agent
|
35
|
-
|
36
|
-
# The Agent is a singleton that is instantiated when the plugin is
|
51
|
+
# The agent is a singleton that is instantiated when the plugin is
|
37
52
|
# activated. It collects performance data from ruby applications
|
38
53
|
# in realtime as the application runs, and periodically sends that
|
39
54
|
# data to the NewRelic server.
|
@@ -42,51 +57,74 @@ module NewRelic
|
|
42
57
|
::NewRelic::Agent.config
|
43
58
|
end
|
44
59
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
60
|
+
include NewRelic::Agent::AgentHelpers::Connect
|
61
|
+
include NewRelic::Agent::AgentHelpers::Harvest
|
62
|
+
include NewRelic::Agent::AgentHelpers::StartWorkerThread
|
63
|
+
include NewRelic::Agent::AgentHelpers::SpecialStartup
|
64
|
+
include NewRelic::Agent::AgentHelpers::Startup
|
65
|
+
include NewRelic::Agent::AgentHelpers::Shutdown
|
66
|
+
include NewRelic::Agent::AgentHelpers::Transmit
|
49
67
|
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
@synthetics_monitor = NewRelic::Agent::SyntheticsMonitor.new(@events)
|
57
|
-
@error_collector = NewRelic::Agent::ErrorCollector.new
|
58
|
-
@utilization_data = NewRelic::Agent::UtilizationData.new
|
59
|
-
@transaction_rules = NewRelic::Agent::RulesEngine.new
|
60
|
-
@harvest_samplers = NewRelic::Agent::SamplerCollection.new(@events)
|
61
|
-
@monotonic_gc_profiler = NewRelic::Agent::VM::MonotonicGCProfiler.new
|
62
|
-
@javascript_instrumentor = NewRelic::Agent::JavascriptInstrumentor.new(@events)
|
68
|
+
def initialize
|
69
|
+
init_basics
|
70
|
+
init_components
|
71
|
+
init_event_handlers
|
72
|
+
setup_attribute_filter
|
73
|
+
end
|
63
74
|
|
64
|
-
|
75
|
+
private
|
76
|
+
|
77
|
+
def init_basics
|
78
|
+
@started = false
|
79
|
+
@event_loop = nil
|
80
|
+
@worker_thread = nil
|
81
|
+
@connect_state = :pending
|
82
|
+
@connect_attempts = 0
|
83
|
+
@waited_on_connect = nil
|
84
|
+
@connected_pid = nil
|
85
|
+
@wait_on_connect_mutex = Mutex.new
|
65
86
|
@after_fork_lock = Mutex.new
|
87
|
+
@wait_on_connect_condition = ConditionVariable.new
|
88
|
+
end
|
66
89
|
|
67
|
-
|
68
|
-
@
|
69
|
-
|
70
|
-
@
|
71
|
-
@
|
72
|
-
@
|
73
|
-
|
74
|
-
@
|
75
|
-
@
|
90
|
+
def init_components
|
91
|
+
@service = NewRelicService.new
|
92
|
+
@events = EventListener.new
|
93
|
+
@stats_engine = StatsEngine.new
|
94
|
+
@transaction_sampler = TransactionSampler.new
|
95
|
+
@sql_sampler = SqlSampler.new
|
96
|
+
@transaction_rules = RulesEngine.new
|
97
|
+
@monotonic_gc_profiler = VM::MonotonicGCProfiler.new
|
98
|
+
@adaptive_sampler = AdaptiveSampler.new(Agent.config[:sampling_target],
|
99
|
+
Agent.config[:sampling_target_period_in_seconds])
|
100
|
+
@serverless_handler = ServerlessHandler.new
|
101
|
+
end
|
76
102
|
|
77
|
-
|
103
|
+
def init_event_handlers
|
104
|
+
@agent_command_router = Commands::AgentCommandRouter.new(@events)
|
105
|
+
@monitors = Monitors.new(@events)
|
106
|
+
@error_collector = ErrorCollector.new(@events)
|
107
|
+
@harvest_samplers = SamplerCollection.new(@events)
|
108
|
+
@javascript_instrumentor = JavaScriptInstrumentor.new(@events)
|
109
|
+
@harvester = Harvester.new(@events)
|
110
|
+
@transaction_event_recorder = TransactionEventRecorder.new(@events)
|
111
|
+
@custom_event_aggregator = CustomEventAggregator.new(@events)
|
112
|
+
@span_event_aggregator = SpanEventAggregator.new(@events)
|
113
|
+
@log_event_aggregator = LogEventAggregator.new(@events)
|
78
114
|
end
|
79
115
|
|
80
116
|
def setup_attribute_filter
|
81
117
|
refresh_attribute_filter
|
82
118
|
|
83
|
-
@events.subscribe(:
|
119
|
+
@events.subscribe(:initial_configuration_complete) do
|
84
120
|
refresh_attribute_filter
|
85
121
|
end
|
86
122
|
end
|
87
123
|
|
124
|
+
public
|
125
|
+
|
88
126
|
def refresh_attribute_filter
|
89
|
-
@attribute_filter =
|
127
|
+
@attribute_filter = AttributeFilter.new(Agent.config)
|
90
128
|
end
|
91
129
|
|
92
130
|
# contains all the class-level methods for NewRelic::Agent::Agent
|
@@ -101,51 +139,60 @@ module NewRelic
|
|
101
139
|
# Holds all the methods defined on NewRelic::Agent::Agent
|
102
140
|
# instances
|
103
141
|
module InstanceMethods
|
104
|
-
|
105
|
-
# holds a proc that is used to obfuscate sql statements
|
106
|
-
attr_reader :obfuscator
|
107
142
|
# the statistics engine that holds all the timeslice data
|
108
143
|
attr_reader :stats_engine
|
109
144
|
# the transaction sampler that handles recording transactions
|
110
145
|
attr_reader :transaction_sampler
|
111
146
|
attr_reader :sql_sampler
|
112
|
-
# manages agent commands we receive from the collector, and the handlers
|
113
|
-
attr_reader :agent_command_router
|
114
147
|
# error collector is a simple collection of recorded errors
|
115
148
|
attr_reader :error_collector
|
116
|
-
attr_reader :harvest_samplers
|
117
149
|
# whether we should record raw, obfuscated, or no sql
|
118
150
|
attr_reader :record_sql
|
119
151
|
# builder for JS agent scripts to inject
|
120
152
|
attr_reader :javascript_instrumentor
|
121
153
|
# cross application tracing ids and encoding
|
122
154
|
attr_reader :cross_process_id
|
123
|
-
attr_reader :cross_app_encoding_bytes
|
124
|
-
attr_reader :cross_app_monitor
|
125
155
|
# service for communicating with collector
|
126
|
-
|
156
|
+
attr_reader :service
|
127
157
|
# Global events dispatcher. This will provides our primary mechanism
|
128
158
|
# for agent-wide events, such as finishing configuration, error notification
|
129
159
|
# and request before/after from Rack.
|
130
160
|
attr_reader :events
|
161
|
+
|
162
|
+
# listens and responds to events that need to process headers
|
163
|
+
# for synthetics and distributed tracing
|
164
|
+
attr_reader :monitors
|
131
165
|
# Transaction and metric renaming rules as provided by the
|
132
166
|
# collector on connect. The former are applied during txns,
|
133
167
|
# the latter during harvest.
|
134
|
-
|
135
|
-
# Responsbile for restarting the harvest thread
|
136
|
-
attr_reader :harvester
|
137
|
-
attr_reader :harvest_lock
|
168
|
+
attr_accessor :transaction_rules
|
138
169
|
# GC::Profiler.total_time is not monotonic so we wrap it.
|
139
170
|
attr_reader :monotonic_gc_profiler
|
140
171
|
attr_reader :custom_event_aggregator
|
141
|
-
|
172
|
+
attr_reader :span_event_aggregator
|
173
|
+
attr_reader :log_event_aggregator
|
174
|
+
attr_reader :transaction_event_recorder
|
142
175
|
attr_reader :attribute_filter
|
176
|
+
attr_reader :adaptive_sampler
|
177
|
+
attr_reader :serverless_handler
|
178
|
+
|
179
|
+
def transaction_event_aggregator
|
180
|
+
@transaction_event_recorder.transaction_event_aggregator
|
181
|
+
end
|
182
|
+
|
183
|
+
def synthetics_event_aggregator
|
184
|
+
@transaction_event_recorder.synthetics_event_aggregator
|
185
|
+
end
|
186
|
+
|
187
|
+
def agent_id=(agent_id)
|
188
|
+
@service.agent_id = agent_id
|
189
|
+
end
|
143
190
|
|
144
191
|
# This method should be called in a forked process after a fork.
|
145
192
|
# It assumes the parent process initialized the agent, but does
|
146
193
|
# not assume the agent started.
|
147
194
|
#
|
148
|
-
# The call is idempotent, but not
|
195
|
+
# The call is idempotent, but not reentrant.
|
149
196
|
#
|
150
197
|
# * It clears any metrics carried over from the parent process
|
151
198
|
# * Restarts the sampler thread if necessary
|
@@ -160,19 +207,10 @@ module NewRelic
|
|
160
207
|
# * <tt>:keep_retrying => false</tt> if we try to initiate a new
|
161
208
|
# connection, this tells me to only try it once so this method returns
|
162
209
|
# quickly if there is some kind of latency with the server.
|
163
|
-
def after_fork(options={})
|
164
|
-
|
165
|
-
@after_fork_lock.synchronize do
|
166
|
-
needs_restart = @harvester.needs_restart?
|
167
|
-
@harvester.mark_started
|
168
|
-
end
|
210
|
+
def after_fork(options = {})
|
211
|
+
return unless needs_after_fork_work?
|
169
212
|
|
170
|
-
|
171
|
-
!Agent.config[:agent_enabled] ||
|
172
|
-
!Agent.config[:monitor_mode] ||
|
173
|
-
disconnected?
|
174
|
-
|
175
|
-
::NewRelic::Agent.logger.debug "Starting the worker thread in #{Process.pid} (parent #{Process.ppid}) after forking."
|
213
|
+
::NewRelic::Agent.logger.debug("Starting the worker thread in #{Process.pid} (parent #{Process.ppid}) after forking.")
|
176
214
|
|
177
215
|
channel_id = options[:report_to_channel]
|
178
216
|
install_pipe_service(channel_id) if channel_id
|
@@ -184,1015 +222,135 @@ module NewRelic
|
|
184
222
|
setup_and_start_agent(options)
|
185
223
|
end
|
186
224
|
|
225
|
+
def needs_after_fork_work?
|
226
|
+
needs_restart = false
|
227
|
+
@after_fork_lock.synchronize do
|
228
|
+
needs_restart = @harvester.needs_restart?
|
229
|
+
@harvester.mark_started
|
230
|
+
end
|
231
|
+
|
232
|
+
return false if !needs_restart ||
|
233
|
+
!Agent.config[:agent_enabled] ||
|
234
|
+
!Agent.config[:monitor_mode] ||
|
235
|
+
disconnected? ||
|
236
|
+
!control.security_settings_valid?
|
237
|
+
|
238
|
+
true
|
239
|
+
end
|
240
|
+
|
187
241
|
def install_pipe_service(channel_id)
|
188
|
-
@service =
|
242
|
+
@service = PipeService.new(channel_id)
|
189
243
|
if connected?
|
190
244
|
@connected_pid = Process.pid
|
191
245
|
else
|
192
246
|
::NewRelic::Agent.logger.debug("Child process #{Process.pid} not reporting to non-connected parent (process #{Process.ppid}).")
|
193
|
-
@service.shutdown
|
247
|
+
@service.shutdown
|
194
248
|
disconnect
|
195
249
|
end
|
196
250
|
end
|
197
251
|
|
198
|
-
# True if we have initialized and completed 'start'
|
199
|
-
def started?
|
200
|
-
@started
|
201
|
-
end
|
202
|
-
|
203
|
-
# Attempt a graceful shutdown of the agent, flushing any remaining
|
204
|
-
# data.
|
205
|
-
def shutdown
|
206
|
-
return unless started?
|
207
|
-
::NewRelic::Agent.logger.info "Starting Agent shutdown"
|
208
|
-
|
209
|
-
stop_event_loop
|
210
|
-
trap_signals_for_litespeed
|
211
|
-
untraced_graceful_disconnect
|
212
|
-
revert_to_default_configuration
|
213
|
-
|
214
|
-
@started = nil
|
215
|
-
Control.reset
|
216
|
-
end
|
217
|
-
|
218
252
|
def revert_to_default_configuration
|
219
|
-
|
220
|
-
|
221
|
-
end
|
222
|
-
|
223
|
-
def stop_event_loop
|
224
|
-
@event_loop.stop if @event_loop
|
253
|
+
Agent.config.remove_config_type(:manual)
|
254
|
+
Agent.config.remove_config_type(:server)
|
225
255
|
end
|
226
256
|
|
227
257
|
def trap_signals_for_litespeed
|
228
258
|
# if litespeed, then ignore all future SIGUSR1 - it's
|
229
259
|
# litespeed trying to shut us down
|
230
260
|
if Agent.config[:dispatcher] == :litespeed
|
231
|
-
Signal.trap(
|
232
|
-
Signal.trap(
|
233
|
-
end
|
234
|
-
end
|
235
|
-
|
236
|
-
def untraced_graceful_disconnect
|
237
|
-
begin
|
238
|
-
NewRelic::Agent.disable_all_tracing do
|
239
|
-
graceful_disconnect
|
240
|
-
end
|
241
|
-
rescue => e
|
242
|
-
::NewRelic::Agent.logger.error e
|
261
|
+
Signal.trap('SIGUSR1', 'IGNORE')
|
262
|
+
Signal.trap('SIGTERM', 'IGNORE')
|
243
263
|
end
|
244
264
|
end
|
245
265
|
|
246
266
|
# Sets a thread local variable as to whether we should or
|
247
267
|
# should not record sql in the current thread. Returns the
|
248
268
|
# previous value, if there is one
|
249
|
-
def set_record_sql(should_record) #THREAD_LOCAL_ACCESS
|
250
|
-
state =
|
269
|
+
def set_record_sql(should_record) # THREAD_LOCAL_ACCESS
|
270
|
+
state = Tracer.state
|
251
271
|
prev = state.record_sql
|
252
272
|
state.record_sql = should_record
|
253
273
|
prev.nil? || prev
|
254
274
|
end
|
255
275
|
|
256
|
-
# Sets a thread local variable as to whether we should or
|
257
|
-
# should not record transaction traces in the current
|
258
|
-
# thread. Returns the previous value, if there is one
|
259
|
-
def set_record_tt(should_record) #THREAD_LOCAL_ACCESS
|
260
|
-
state = TransactionState.tl_get
|
261
|
-
prev = state.record_tt
|
262
|
-
state.record_tt = should_record
|
263
|
-
prev.nil? || prev
|
264
|
-
end
|
265
|
-
|
266
276
|
# Push flag indicating whether we should be tracing in this
|
267
277
|
# thread. This uses a stack which allows us to disable tracing
|
268
278
|
# children of a transaction without affecting the tracing of
|
269
279
|
# the whole transaction
|
270
|
-
def push_trace_execution_flag(should_trace=false) #THREAD_LOCAL_ACCESS
|
271
|
-
|
280
|
+
def push_trace_execution_flag(should_trace = false) # THREAD_LOCAL_ACCESS
|
281
|
+
Tracer.state.push_traced(should_trace)
|
272
282
|
end
|
273
283
|
|
274
284
|
# Pop the current trace execution status. Restore trace execution status
|
275
285
|
# to what it was before we pushed the current flag.
|
276
|
-
def pop_trace_execution_flag #THREAD_LOCAL_ACCESS
|
277
|
-
|
278
|
-
end
|
279
|
-
|
280
|
-
# Herein lies the corpse of the former 'start' method. May
|
281
|
-
# its unmatched flog score rest in pieces.
|
282
|
-
module Start
|
283
|
-
# Check whether we have already started, which is an error condition
|
284
|
-
def already_started?
|
285
|
-
if started?
|
286
|
-
::NewRelic::Agent.logger.error("Agent Started Already!")
|
287
|
-
true
|
288
|
-
end
|
289
|
-
end
|
290
|
-
|
291
|
-
# The agent is disabled when it is not force enabled by the
|
292
|
-
# 'agent_enabled' option (e.g. in a manual start), or
|
293
|
-
# enabled normally through the configuration file
|
294
|
-
def disabled?
|
295
|
-
!Agent.config[:agent_enabled]
|
296
|
-
end
|
297
|
-
|
298
|
-
# Log startup information that we almost always want to know
|
299
|
-
def log_startup
|
300
|
-
log_environment
|
301
|
-
log_dispatcher
|
302
|
-
log_app_name
|
303
|
-
end
|
304
|
-
|
305
|
-
# Log the environment the app thinks it's running in.
|
306
|
-
# Useful in debugging, as this is the key for config YAML lookups.
|
307
|
-
def log_environment
|
308
|
-
::NewRelic::Agent.logger.info "Environment: #{NewRelic::Control.instance.env}"
|
309
|
-
end
|
310
|
-
|
311
|
-
# Logs the dispatcher to the log file to assist with
|
312
|
-
# debugging. When no debugger is present, logs this fact to
|
313
|
-
# assist with proper dispatcher detection
|
314
|
-
def log_dispatcher
|
315
|
-
dispatcher_name = Agent.config[:dispatcher].to_s
|
316
|
-
|
317
|
-
if dispatcher_name.empty?
|
318
|
-
::NewRelic::Agent.logger.info 'No known dispatcher detected.'
|
319
|
-
else
|
320
|
-
::NewRelic::Agent.logger.info "Dispatcher: #{dispatcher_name}"
|
321
|
-
end
|
322
|
-
end
|
323
|
-
|
324
|
-
def log_app_name
|
325
|
-
::NewRelic::Agent.logger.info "Application: #{Agent.config.app_names.join(", ")}"
|
326
|
-
end
|
327
|
-
|
328
|
-
def log_ignore_url_regexes
|
329
|
-
regexes = NewRelic::Agent.config[:'rules.ignore_url_regexes']
|
330
|
-
|
331
|
-
unless regexes.empty?
|
332
|
-
::NewRelic::Agent.logger.info "Ignoring URLs that match the following regexes: #{regexes.map(&:inspect).join(", ")}."
|
333
|
-
end
|
334
|
-
end
|
335
|
-
|
336
|
-
# Logs the configured application names
|
337
|
-
def app_name_configured?
|
338
|
-
names = Agent.config.app_names
|
339
|
-
return names.respond_to?(:any?) && names.any?
|
340
|
-
end
|
341
|
-
|
342
|
-
# Connecting in the foreground blocks further startup of the
|
343
|
-
# agent until we have a connection - useful in cases where
|
344
|
-
# you're trying to log a very-short-running process and want
|
345
|
-
# to get statistics from before a server connection
|
346
|
-
# (typically 20 seconds) exists
|
347
|
-
def connect_in_foreground
|
348
|
-
NewRelic::Agent.disable_all_tracing { connect(:keep_retrying => false) }
|
349
|
-
end
|
350
|
-
|
351
|
-
# This matters when the following three criteria are met:
|
352
|
-
#
|
353
|
-
# 1. A Sinatra 'classic' application is being run
|
354
|
-
# 2. The app is being run by executing the main file directly, rather
|
355
|
-
# than via a config.ru file.
|
356
|
-
# 3. newrelic_rpm is required *after* sinatra
|
357
|
-
#
|
358
|
-
# In this case, the entire application runs from an at_exit handler in
|
359
|
-
# Sinatra, and if we were to install ours, it would be executed before
|
360
|
-
# the one in Sinatra, meaning that we'd shutdown the agent too early
|
361
|
-
# and never collect any data.
|
362
|
-
def sinatra_classic_app?
|
363
|
-
(
|
364
|
-
defined?(Sinatra::Application) &&
|
365
|
-
Sinatra::Application.respond_to?(:run) &&
|
366
|
-
Sinatra::Application.run?
|
367
|
-
)
|
368
|
-
end
|
369
|
-
|
370
|
-
def should_install_exit_handler?
|
371
|
-
(
|
372
|
-
Agent.config[:send_data_on_exit] &&
|
373
|
-
!NewRelic::LanguageSupport.using_engine?('rbx') &&
|
374
|
-
!NewRelic::LanguageSupport.using_engine?('jruby') &&
|
375
|
-
!sinatra_classic_app?
|
376
|
-
)
|
377
|
-
end
|
378
|
-
|
379
|
-
# There's an MRI 1.9 bug that loses exit codes in at_exit blocks.
|
380
|
-
# A workaround is necessary to get correct exit codes for the agent's
|
381
|
-
# test suites.
|
382
|
-
# http://bugs.ruby-lang.org/issues/5218
|
383
|
-
def need_exit_code_workaround?
|
384
|
-
defined?(RUBY_ENGINE) && RUBY_ENGINE == "ruby" && RUBY_VERSION.match(/^1\.9/)
|
385
|
-
end
|
386
|
-
|
387
|
-
def install_exit_handler
|
388
|
-
return unless should_install_exit_handler?
|
389
|
-
NewRelic::Agent.logger.debug("Installing at_exit handler")
|
390
|
-
at_exit do
|
391
|
-
if need_exit_code_workaround?
|
392
|
-
exit_status = $!.status if $!.is_a?(SystemExit)
|
393
|
-
shutdown
|
394
|
-
exit exit_status if exit_status
|
395
|
-
else
|
396
|
-
shutdown
|
397
|
-
end
|
398
|
-
end
|
399
|
-
end
|
400
|
-
|
401
|
-
def start_service_if_needed
|
402
|
-
if Agent.config[:monitor_mode] && !@service
|
403
|
-
@service = NewRelic::Agent::NewRelicService.new
|
404
|
-
end
|
405
|
-
end
|
406
|
-
|
407
|
-
# Classy logging of the agent version and the current pid,
|
408
|
-
# so we can disambiguate processes in the log file and make
|
409
|
-
# sure they're running a reasonable version
|
410
|
-
def log_version_and_pid
|
411
|
-
::NewRelic::Agent.logger.debug "New Relic Ruby Agent #{NewRelic::VERSION::STRING} Initialized: pid = #{$$}"
|
412
|
-
end
|
413
|
-
|
414
|
-
# Warn the user if they have configured their agent not to
|
415
|
-
# send data, that way we can see this clearly in the log file
|
416
|
-
def monitoring?
|
417
|
-
if Agent.config[:monitor_mode]
|
418
|
-
true
|
419
|
-
else
|
420
|
-
::NewRelic::Agent.logger.warn('Agent configured not to send data in this environment.')
|
421
|
-
false
|
422
|
-
end
|
423
|
-
end
|
424
|
-
|
425
|
-
# Tell the user when the license key is missing so they can
|
426
|
-
# fix it by adding it to the file
|
427
|
-
def has_license_key?
|
428
|
-
if Agent.config[:license_key] && Agent.config[:license_key].length > 0
|
429
|
-
true
|
430
|
-
else
|
431
|
-
::NewRelic::Agent.logger.warn("No license key found. " +
|
432
|
-
"This often means your newrelic.yml file was not found, or it lacks a section for the running environment, '#{NewRelic::Control.instance.env}'. You may also want to try linting your newrelic.yml to ensure it is valid YML.")
|
433
|
-
false
|
434
|
-
end
|
435
|
-
end
|
436
|
-
|
437
|
-
# A correct license key exists and is of the proper length
|
438
|
-
def has_correct_license_key?
|
439
|
-
has_license_key? && correct_license_length
|
440
|
-
end
|
441
|
-
|
442
|
-
# A license key is an arbitrary 40 character string,
|
443
|
-
# usually looks something like a SHA1 hash
|
444
|
-
def correct_license_length
|
445
|
-
key = Agent.config[:license_key]
|
446
|
-
|
447
|
-
if key.length == 40
|
448
|
-
true
|
449
|
-
else
|
450
|
-
::NewRelic::Agent.logger.error("Invalid license key: #{key}")
|
451
|
-
false
|
452
|
-
end
|
453
|
-
end
|
454
|
-
|
455
|
-
# If we're using a dispatcher that forks before serving
|
456
|
-
# requests, we need to wait until the children are forked
|
457
|
-
# before connecting, otherwise the parent process sends useless data
|
458
|
-
def using_forking_dispatcher?
|
459
|
-
if [:puma, :passenger, :rainbows, :unicorn].include? Agent.config[:dispatcher]
|
460
|
-
::NewRelic::Agent.logger.info "Deferring startup of agent reporting thread because #{Agent.config[:dispatcher]} may fork."
|
461
|
-
true
|
462
|
-
else
|
463
|
-
false
|
464
|
-
end
|
465
|
-
end
|
466
|
-
|
467
|
-
# Return true if we're using resque and it hasn't had a chance to (potentially)
|
468
|
-
# daemonize itself. This avoids hanging when there's a Thread started
|
469
|
-
# before Resque calls Process.daemon (Jira RUBY-857)
|
470
|
-
def defer_for_resque?
|
471
|
-
NewRelic::Agent.config[:dispatcher] == :resque &&
|
472
|
-
NewRelic::LanguageSupport.can_fork? &&
|
473
|
-
!NewRelic::Agent::PipeChannelManager.listener.started?
|
474
|
-
end
|
475
|
-
|
476
|
-
def in_resque_child_process?
|
477
|
-
@service.is_a?(NewRelic::Agent::PipeService)
|
478
|
-
end
|
479
|
-
|
480
|
-
# Sanity-check the agent configuration and start the agent,
|
481
|
-
# setting up the worker thread and the exit handler to shut
|
482
|
-
# down the agent
|
483
|
-
def check_config_and_start_agent
|
484
|
-
return unless monitoring? && has_correct_license_key?
|
485
|
-
return if using_forking_dispatcher?
|
486
|
-
setup_and_start_agent
|
487
|
-
end
|
488
|
-
|
489
|
-
# This is the shared method between the main agent startup and the
|
490
|
-
# after_fork call restarting the thread in deferred dispatchers.
|
491
|
-
#
|
492
|
-
# Treatment of @started and env report is important to get right.
|
493
|
-
def setup_and_start_agent(options={})
|
494
|
-
@started = true
|
495
|
-
@harvester.mark_started
|
496
|
-
|
497
|
-
unless in_resque_child_process?
|
498
|
-
generate_environment_report
|
499
|
-
install_exit_handler
|
500
|
-
@harvest_samplers.load_samplers unless Agent.config[:disable_samplers]
|
501
|
-
end
|
502
|
-
|
503
|
-
connect_in_foreground if Agent.config[:sync_startup]
|
504
|
-
start_worker_thread(options)
|
505
|
-
end
|
506
|
-
end
|
507
|
-
|
508
|
-
include Start
|
509
|
-
|
510
|
-
def defer_for_delayed_job?
|
511
|
-
NewRelic::Agent.config[:dispatcher] == :delayed_job &&
|
512
|
-
!NewRelic::DelayedJobInjection.worker_name
|
513
|
-
end
|
514
|
-
|
515
|
-
# Check to see if the agent should start, returning +true+ if it should.
|
516
|
-
def agent_should_start?
|
517
|
-
return false if already_started? || disabled?
|
518
|
-
|
519
|
-
if defer_for_delayed_job?
|
520
|
-
::NewRelic::Agent.logger.debug "Deferring startup for DelayedJob"
|
521
|
-
return false
|
522
|
-
end
|
523
|
-
|
524
|
-
if defer_for_resque?
|
525
|
-
::NewRelic::Agent.logger.debug "Deferring startup for Resque in case it daemonizes"
|
526
|
-
return false
|
527
|
-
end
|
528
|
-
|
529
|
-
unless app_name_configured?
|
530
|
-
NewRelic::Agent.logger.error "No application name configured.",
|
531
|
-
"The Agent cannot start without at least one. Please check your ",
|
532
|
-
"newrelic.yml and ensure that it is valid and has at least one ",
|
533
|
-
"value set for app_name in the #{NewRelic::Control.instance.env} ",
|
534
|
-
"environment."
|
535
|
-
return false
|
536
|
-
end
|
537
|
-
|
538
|
-
return true
|
539
|
-
end
|
540
|
-
|
541
|
-
# Logs a bunch of data and starts the agent, if needed
|
542
|
-
def start
|
543
|
-
return unless agent_should_start?
|
544
|
-
|
545
|
-
log_startup
|
546
|
-
check_config_and_start_agent
|
547
|
-
log_version_and_pid
|
548
|
-
|
549
|
-
events.subscribe(:finished_configuring) do
|
550
|
-
log_ignore_url_regexes
|
551
|
-
end
|
286
|
+
def pop_trace_execution_flag # THREAD_LOCAL_ACCESS
|
287
|
+
Tracer.state.pop_traced
|
552
288
|
end
|
553
289
|
|
554
290
|
# Clear out the metric data, errors, and transaction traces, etc.
|
555
291
|
def drop_buffered_data
|
556
292
|
@stats_engine.reset!
|
557
|
-
@error_collector.
|
293
|
+
@error_collector.drop_buffered_data
|
558
294
|
@transaction_sampler.reset!
|
559
|
-
@
|
295
|
+
@transaction_event_recorder.drop_buffered_data
|
560
296
|
@custom_event_aggregator.reset!
|
297
|
+
@span_event_aggregator.reset!
|
298
|
+
@log_event_aggregator.reset!
|
561
299
|
@sql_sampler.reset!
|
562
|
-
end
|
563
300
|
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
301
|
+
if Agent.config[:clear_transaction_state_after_fork]
|
302
|
+
Tracer.clear_state
|
303
|
+
end
|
304
|
+
end
|
568
305
|
|
569
306
|
# Clear out state for any objects that we know lock from our parents
|
570
307
|
# This is necessary for cases where we're in a forked child and Ruby
|
571
308
|
# might be holding locks for background thread that aren't there anymore.
|
572
309
|
def reset_objects_with_locks
|
573
|
-
@stats_engine =
|
574
|
-
reset_harvest_locks
|
310
|
+
@stats_engine = StatsEngine.new
|
575
311
|
end
|
576
312
|
|
577
|
-
def flush_pipe_data
|
578
|
-
if connected? && @service.is_a?(
|
579
|
-
|
580
|
-
transmit_event_data
|
313
|
+
def flush_pipe_data # used only by resque
|
314
|
+
if connected? && @service.is_a?(PipeService)
|
315
|
+
transmit_data_types
|
581
316
|
end
|
582
317
|
end
|
583
318
|
|
584
319
|
private
|
585
320
|
|
586
|
-
# All of this module used to be contained in the
|
587
|
-
# start_worker_thread method - this is an artifact of
|
588
|
-
# refactoring and can be moved, renamed, etc at will
|
589
|
-
module StartWorkerThread
|
590
|
-
# Synchronize with the harvest loop. If the harvest thread has taken
|
591
|
-
# a lock (DNS lookups, backticks, agent-owned locks, etc), and we
|
592
|
-
# fork while locked, this can deadlock child processes. For more
|
593
|
-
# details, see https://github.com/resque/resque/issues/1101
|
594
|
-
def synchronize_with_harvest
|
595
|
-
harvest_lock.synchronize do
|
596
|
-
yield
|
597
|
-
end
|
598
|
-
end
|
599
|
-
|
600
|
-
# Some forking cases (like Resque) end up with harvest lock from the
|
601
|
-
# parent process orphaned in the child. Let it go before we proceed.
|
602
|
-
def reset_harvest_locks
|
603
|
-
return if harvest_lock.nil?
|
604
|
-
|
605
|
-
harvest_lock.unlock if harvest_lock.locked?
|
606
|
-
end
|
607
|
-
|
608
|
-
def create_event_loop
|
609
|
-
EventLoop.new
|
610
|
-
end
|
611
|
-
|
612
|
-
# Never allow any data type to be reported more frequently than once
|
613
|
-
# per second.
|
614
|
-
MIN_ALLOWED_REPORT_PERIOD = 1.0
|
615
|
-
UTILIZATION_REPORT_PERIOD = 30 * 60 # every half hour
|
616
|
-
|
617
|
-
def report_period_for(method)
|
618
|
-
config_key = "data_report_periods.#{method}".to_sym
|
619
|
-
period = Agent.config[config_key]
|
620
|
-
if !period
|
621
|
-
period = Agent.config[:data_report_period]
|
622
|
-
::NewRelic::Agent.logger.warn("Could not find configured period for #{method}, falling back to data_report_period (#{period} s)")
|
623
|
-
end
|
624
|
-
if period < MIN_ALLOWED_REPORT_PERIOD
|
625
|
-
::NewRelic::Agent.logger.warn("Configured #{config_key} was #{period}, but minimum allowed is #{MIN_ALLOWED_REPORT_PERIOD}, using #{MIN_ALLOWED_REPORT_PERIOD}.")
|
626
|
-
period = MIN_ALLOWED_REPORT_PERIOD
|
627
|
-
end
|
628
|
-
period
|
629
|
-
end
|
630
|
-
|
631
|
-
LOG_ONCE_KEYS_RESET_PERIOD = 60.0
|
632
|
-
|
633
|
-
def create_and_run_event_loop
|
634
|
-
@event_loop = create_event_loop
|
635
|
-
@event_loop.on(:report_data) do
|
636
|
-
transmit_data
|
637
|
-
end
|
638
|
-
@event_loop.on(:report_event_data) do
|
639
|
-
transmit_event_data
|
640
|
-
end
|
641
|
-
@event_loop.on(:reset_log_once_keys) do
|
642
|
-
::NewRelic::Agent.logger.clear_already_logged
|
643
|
-
end
|
644
|
-
@event_loop.fire_every(Agent.config[:data_report_period], :report_data)
|
645
|
-
@event_loop.fire_every(report_period_for(:analytic_event_data), :report_event_data)
|
646
|
-
@event_loop.fire_every(LOG_ONCE_KEYS_RESET_PERIOD, :reset_log_once_keys)
|
647
|
-
|
648
|
-
if Agent.config[:collect_utilization] && !in_resque_child_process?
|
649
|
-
@event_loop.on(:report_utilization_data) do
|
650
|
-
transmit_utilization_data
|
651
|
-
end
|
652
|
-
@event_loop.fire(:report_utilization_data)
|
653
|
-
@event_loop.fire_every(UTILIZATION_REPORT_PERIOD, :report_utilization_data)
|
654
|
-
end
|
655
|
-
|
656
|
-
@event_loop.run
|
657
|
-
end
|
658
|
-
|
659
|
-
# Handles the case where the server tells us to restart -
|
660
|
-
# this clears the data, clears connection attempts, and
|
661
|
-
# waits a while to reconnect.
|
662
|
-
def handle_force_restart(error)
|
663
|
-
::NewRelic::Agent.logger.debug error.message
|
664
|
-
drop_buffered_data
|
665
|
-
@service.force_restart if @service
|
666
|
-
@connect_state = :pending
|
667
|
-
sleep 30
|
668
|
-
end
|
669
|
-
|
670
|
-
# when a disconnect is requested, stop the current thread, which
|
671
|
-
# is the worker thread that gathers data and talks to the
|
672
|
-
# server.
|
673
|
-
def handle_force_disconnect(error)
|
674
|
-
::NewRelic::Agent.logger.warn "New Relic forced this agent to disconnect (#{error.message})"
|
675
|
-
disconnect
|
676
|
-
end
|
677
|
-
|
678
|
-
# Handles an unknown error in the worker thread by logging
|
679
|
-
# it and disconnecting the agent, since we are now in an
|
680
|
-
# unknown state.
|
681
|
-
def handle_other_error(error)
|
682
|
-
::NewRelic::Agent.logger.error "Unhandled error in worker thread, disconnecting this agent process:"
|
683
|
-
# These errors are fatal (that is, they will prevent the agent from
|
684
|
-
# reporting entirely), so we really want backtraces when they happen
|
685
|
-
::NewRelic::Agent.logger.log_exception(:error, error)
|
686
|
-
disconnect
|
687
|
-
end
|
688
|
-
|
689
|
-
# a wrapper method to handle all the errors that can happen
|
690
|
-
# in the connection and worker thread system. This
|
691
|
-
# guarantees a no-throw from the background thread.
|
692
|
-
def catch_errors
|
693
|
-
yield
|
694
|
-
rescue NewRelic::Agent::ForceRestartException => e
|
695
|
-
handle_force_restart(e)
|
696
|
-
retry
|
697
|
-
rescue NewRelic::Agent::ForceDisconnectException => e
|
698
|
-
handle_force_disconnect(e)
|
699
|
-
rescue => e
|
700
|
-
handle_other_error(e)
|
701
|
-
end
|
702
|
-
|
703
|
-
# This is the method that is run in a new thread in order to
|
704
|
-
# background the harvesting and sending of data during the
|
705
|
-
# normal operation of the agent.
|
706
|
-
#
|
707
|
-
# Takes connection options that determine how we should
|
708
|
-
# connect to the server, and loops endlessly - typically we
|
709
|
-
# never return from this method unless we're shutting down
|
710
|
-
# the agent
|
711
|
-
def deferred_work!(connection_options)
|
712
|
-
catch_errors do
|
713
|
-
NewRelic::Agent.disable_all_tracing do
|
714
|
-
connect(connection_options)
|
715
|
-
if connected?
|
716
|
-
create_and_run_event_loop
|
717
|
-
# never reaches here unless there is a problem or
|
718
|
-
# the agent is exiting
|
719
|
-
else
|
720
|
-
::NewRelic::Agent.logger.debug "No connection. Worker thread ending."
|
721
|
-
end
|
722
|
-
end
|
723
|
-
end
|
724
|
-
end
|
725
|
-
end
|
726
|
-
include StartWorkerThread
|
727
|
-
|
728
|
-
# Try to launch the worker thread and connect to the server.
|
729
|
-
#
|
730
|
-
# See #connect for a description of connection_options.
|
731
|
-
def start_worker_thread(connection_options = {})
|
732
|
-
if disable = NewRelic::Agent.config[:disable_harvest_thread]
|
733
|
-
NewRelic::Agent.logger.info "Not starting Ruby Agent worker thread because :disable_harvest_thread is #{disable}"
|
734
|
-
return
|
735
|
-
end
|
736
|
-
|
737
|
-
::NewRelic::Agent.logger.debug "Creating Ruby Agent worker thread."
|
738
|
-
@worker_thread = NewRelic::Agent::Threading::AgentThread.create('Worker Loop') do
|
739
|
-
deferred_work!(connection_options)
|
740
|
-
end
|
741
|
-
end
|
742
|
-
|
743
321
|
# A shorthand for NewRelic::Control.instance
|
744
322
|
def control
|
745
323
|
NewRelic::Control.instance
|
746
324
|
end
|
747
325
|
|
748
|
-
# This module is an artifact of a refactoring of the connect
|
749
|
-
# method - all of its methods are used in that context, so it
|
750
|
-
# can be refactored at will. It should be fully tested
|
751
|
-
module Connect
|
752
|
-
# number of attempts we've made to contact the server
|
753
|
-
attr_accessor :connect_attempts
|
754
|
-
|
755
|
-
# Disconnect just sets connected to false, which prevents
|
756
|
-
# the agent from trying to connect again
|
757
|
-
def disconnect
|
758
|
-
@connect_state = :disconnected
|
759
|
-
true
|
760
|
-
end
|
761
|
-
|
762
|
-
def connected?
|
763
|
-
@connect_state == :connected
|
764
|
-
end
|
765
|
-
|
766
|
-
def disconnected?
|
767
|
-
@connect_state == :disconnected
|
768
|
-
end
|
769
|
-
|
770
|
-
# Don't connect if we're already connected, or if we tried to connect
|
771
|
-
# and were rejected with prejudice because of a license issue, unless
|
772
|
-
# we're forced to by force_reconnect.
|
773
|
-
def should_connect?(force=false)
|
774
|
-
force || (!connected? && !disconnected?)
|
775
|
-
end
|
776
|
-
|
777
|
-
# Retry period is a minute for each failed attempt that
|
778
|
-
# we've made. This should probably do some sort of sane TCP
|
779
|
-
# backoff to prevent hammering the server, but a minute for
|
780
|
-
# each attempt seems to work reasonably well.
|
781
|
-
def connect_retry_period
|
782
|
-
[600, connect_attempts * 60].min
|
783
|
-
end
|
784
|
-
|
785
|
-
def note_connect_failure
|
786
|
-
self.connect_attempts += 1
|
787
|
-
end
|
788
|
-
|
789
|
-
# When we have a problem connecting to the server, we need
|
790
|
-
# to tell the user what happened, since this is not an error
|
791
|
-
# we can handle gracefully.
|
792
|
-
def log_error(error)
|
793
|
-
::NewRelic::Agent.logger.error "Error establishing connection with New Relic Service at #{control.server}:", error
|
794
|
-
end
|
795
|
-
|
796
|
-
# When the server sends us an error with the license key, we
|
797
|
-
# want to tell the user that something went wrong, and let
|
798
|
-
# them know where to go to get a valid license key
|
799
|
-
#
|
800
|
-
# After this runs, it disconnects the agent so that it will
|
801
|
-
# no longer try to connect to the server, saving the
|
802
|
-
# application and the server load
|
803
|
-
def handle_license_error(error)
|
804
|
-
::NewRelic::Agent.logger.error( \
|
805
|
-
error.message, \
|
806
|
-
"Visit NewRelic.com to obtain a valid license key, or to upgrade your account.")
|
807
|
-
disconnect
|
808
|
-
end
|
809
|
-
|
810
|
-
def handle_unrecoverable_agent_error(error)
|
811
|
-
::NewRelic::Agent.logger.error(error.message)
|
812
|
-
disconnect
|
813
|
-
shutdown
|
814
|
-
end
|
815
|
-
|
816
|
-
def generate_environment_report
|
817
|
-
@environment_report = environment_for_connect
|
818
|
-
end
|
819
|
-
|
820
|
-
# Checks whether we should send environment info, and if so,
|
821
|
-
# returns the snapshot from the local environment.
|
822
|
-
# Generating the EnvironmentReport has the potential to trigger
|
823
|
-
# require calls in Rails environments, so this method should only
|
824
|
-
# be called synchronously from on the main thread.
|
825
|
-
def environment_for_connect
|
826
|
-
Agent.config[:send_environment_info] ? Array(EnvironmentReport.new) : []
|
827
|
-
end
|
828
|
-
|
829
|
-
# We've seen objects in the environment report (Rails.env in
|
830
|
-
# particular) that can't seralize to JSON. Cope with that here and
|
831
|
-
# clear out so downstream code doesn't have to check again.
|
832
|
-
def sanitize_environment_report
|
833
|
-
if !@service.valid_to_marshal?(@environment_report)
|
834
|
-
@environment_report = []
|
835
|
-
end
|
836
|
-
end
|
837
|
-
|
838
|
-
# Initializes the hash of settings that we send to the
|
839
|
-
# server. Returns a literal hash containing the options
|
840
|
-
def connect_settings
|
841
|
-
sanitize_environment_report
|
842
|
-
{
|
843
|
-
:pid => $$,
|
844
|
-
:host => local_host,
|
845
|
-
:app_name => Agent.config.app_names,
|
846
|
-
:language => 'ruby',
|
847
|
-
:labels => Agent.config.parsed_labels,
|
848
|
-
:agent_version => NewRelic::VERSION::STRING,
|
849
|
-
:environment => @environment_report,
|
850
|
-
:settings => Agent.config.to_collector_hash,
|
851
|
-
:high_security => Agent.config[:high_security]
|
852
|
-
}
|
853
|
-
end
|
854
|
-
|
855
|
-
# Returns connect data passed back from the server
|
856
|
-
def connect_to_server
|
857
|
-
@service.connect(connect_settings)
|
858
|
-
end
|
859
|
-
|
860
|
-
# apdex_f is always 4 times the apdex_t
|
861
|
-
def apdex_f
|
862
|
-
(4 * Agent.config[:apdex_t]).to_f
|
863
|
-
end
|
864
|
-
|
865
|
-
# Sets the collector host and connects to the server, then
|
866
|
-
# invokes the final configuration with the returned data
|
867
|
-
def query_server_for_configuration
|
868
|
-
finish_setup(connect_to_server)
|
869
|
-
end
|
870
|
-
|
871
|
-
# Takes a hash of configuration data returned from the
|
872
|
-
# server and uses it to set local variables and to
|
873
|
-
# initialize various parts of the agent that are configured
|
874
|
-
# separately.
|
875
|
-
#
|
876
|
-
# Can accommodate most arbitrary data - anything extra is
|
877
|
-
# ignored unless we say to do something with it here.
|
878
|
-
def finish_setup(config_data)
|
879
|
-
return if config_data == nil
|
880
|
-
|
881
|
-
@service.agent_id = config_data['agent_run_id'] if @service
|
882
|
-
|
883
|
-
if config_data['agent_config']
|
884
|
-
::NewRelic::Agent.logger.debug "Using config from server"
|
885
|
-
end
|
886
|
-
|
887
|
-
::NewRelic::Agent.logger.debug "Server provided config: #{config_data.inspect}"
|
888
|
-
server_config = NewRelic::Agent::Configuration::ServerSource.new(config_data, Agent.config)
|
889
|
-
Agent.config.replace_or_add_config(server_config)
|
890
|
-
log_connection!(config_data) if @service
|
891
|
-
|
892
|
-
@transaction_rules = RulesEngine.create_transaction_rules(config_data)
|
893
|
-
@stats_engine.metric_rules = RulesEngine.create_metric_rules(config_data)
|
894
|
-
|
895
|
-
# If you're adding something else here to respond to the server-side config,
|
896
|
-
# use Agent.instance.events.subscribe(:finished_configuring) callback instead!
|
897
|
-
end
|
898
|
-
|
899
|
-
# Logs when we connect to the server, for debugging purposes
|
900
|
-
# - makes sure we know if an agent has not connected
|
901
|
-
def log_connection!(config_data)
|
902
|
-
::NewRelic::Agent.logger.debug "Connected to NewRelic Service at #{@service.collector.name}"
|
903
|
-
::NewRelic::Agent.logger.debug "Agent Run = #{@service.agent_id}."
|
904
|
-
::NewRelic::Agent.logger.debug "Connection data = #{config_data.inspect}"
|
905
|
-
if config_data['messages'] && config_data['messages'].any?
|
906
|
-
log_collector_messages(config_data['messages'])
|
907
|
-
end
|
908
|
-
end
|
909
|
-
|
910
|
-
def log_collector_messages(messages)
|
911
|
-
messages.each do |message|
|
912
|
-
::NewRelic::Agent.logger.send(message['level'].downcase, message['message'])
|
913
|
-
end
|
914
|
-
end
|
915
|
-
end
|
916
|
-
include Connect
|
917
|
-
|
918
326
|
def container_for_endpoint(endpoint)
|
919
327
|
case endpoint
|
920
|
-
when :metric_data
|
328
|
+
when :metric_data then @stats_engine
|
921
329
|
when :transaction_sample_data then @transaction_sampler
|
922
|
-
when :error_data
|
923
|
-
when :
|
924
|
-
when :
|
925
|
-
when :
|
330
|
+
when :error_data then @error_collector.error_trace_aggregator
|
331
|
+
when :error_event_data then @error_collector.error_event_aggregator
|
332
|
+
when :analytic_event_data then transaction_event_aggregator
|
333
|
+
when :custom_event_data then @custom_event_aggregator
|
334
|
+
when :span_event_data then span_event_aggregator
|
335
|
+
when :sql_trace_data then @sql_sampler
|
336
|
+
when :log_event_data then @log_event_aggregator
|
926
337
|
end
|
927
338
|
end
|
928
339
|
|
929
340
|
def merge_data_for_endpoint(endpoint, data)
|
930
341
|
if data && !data.empty?
|
931
|
-
container_for_endpoint(endpoint)
|
342
|
+
container = container_for_endpoint(endpoint)
|
343
|
+
if container.respond_to?(:has_metadata?) && container.has_metadata?
|
344
|
+
container_for_endpoint(endpoint).merge!(data, false)
|
345
|
+
else
|
346
|
+
container_for_endpoint(endpoint).merge!(data)
|
347
|
+
end
|
932
348
|
end
|
933
349
|
rescue => e
|
934
350
|
NewRelic::Agent.logger.error("Error while merging #{endpoint} data from child: ", e)
|
935
351
|
end
|
936
352
|
|
937
353
|
public :merge_data_for_endpoint
|
938
|
-
|
939
|
-
# Connect to the server and validate the license. If successful,
|
940
|
-
# connected? returns true when finished. If not successful, you can
|
941
|
-
# keep calling this. Return false if we could not establish a
|
942
|
-
# connection with the server and we should not retry, such as if
|
943
|
-
# there's a bad license key.
|
944
|
-
#
|
945
|
-
# Set keep_retrying=false to disable retrying and return asap, such as when
|
946
|
-
# invoked in the foreground. Otherwise this runs until a successful
|
947
|
-
# connection is made, or the server rejects us.
|
948
|
-
#
|
949
|
-
# * <tt>:keep_retrying => false</tt> to only try to connect once, and
|
950
|
-
# return with the connection set to nil. This ensures we may try again
|
951
|
-
# later (default true).
|
952
|
-
# * <tt>force_reconnect => true</tt> if you want to establish a new connection
|
953
|
-
# to the server before running the worker loop. This means you get a separate
|
954
|
-
# agent run and New Relic sees it as a separate instance (default is false).
|
955
|
-
def connect(options={})
|
956
|
-
defaults = {
|
957
|
-
:keep_retrying => Agent.config[:keep_retrying],
|
958
|
-
:force_reconnect => Agent.config[:force_reconnect]
|
959
|
-
}
|
960
|
-
opts = defaults.merge(options)
|
961
|
-
|
962
|
-
return unless should_connect?(opts[:force_reconnect])
|
963
|
-
|
964
|
-
::NewRelic::Agent.logger.debug "Connecting Process to New Relic: #$0"
|
965
|
-
query_server_for_configuration
|
966
|
-
@connected_pid = $$
|
967
|
-
@connect_state = :connected
|
968
|
-
rescue NewRelic::Agent::ForceDisconnectException => e
|
969
|
-
handle_force_disconnect(e)
|
970
|
-
rescue NewRelic::Agent::LicenseException => e
|
971
|
-
handle_license_error(e)
|
972
|
-
rescue NewRelic::Agent::UnrecoverableAgentException => e
|
973
|
-
handle_unrecoverable_agent_error(e)
|
974
|
-
rescue StandardError, Timeout::Error, NewRelic::Agent::ServerConnectionException => e
|
975
|
-
log_error(e)
|
976
|
-
if opts[:keep_retrying]
|
977
|
-
note_connect_failure
|
978
|
-
::NewRelic::Agent.logger.info "Will re-attempt in #{connect_retry_period} seconds"
|
979
|
-
sleep connect_retry_period
|
980
|
-
retry
|
981
|
-
else
|
982
|
-
disconnect
|
983
|
-
end
|
984
|
-
rescue Exception => e
|
985
|
-
::NewRelic::Agent.logger.error "Exception of unexpected type during Agent#connect():", e
|
986
|
-
|
987
|
-
raise
|
988
|
-
end
|
989
|
-
|
990
|
-
# Who am I? Well, this method can tell you your hostname.
|
991
|
-
def determine_host
|
992
|
-
NewRelic::Agent::Hostname.get
|
993
|
-
end
|
994
|
-
|
995
|
-
def local_host
|
996
|
-
@local_host ||= determine_host
|
997
|
-
end
|
998
|
-
|
999
|
-
# Delegates to the control class to determine the root
|
1000
|
-
# directory of this project
|
1001
|
-
def determine_home_directory
|
1002
|
-
control.root
|
1003
|
-
end
|
1004
|
-
|
1005
|
-
# Harvests data from the given container, sends it to the named endpoint
|
1006
|
-
# on the service, and automatically merges back in upon a recoverable
|
1007
|
-
# failure.
|
1008
|
-
#
|
1009
|
-
# The given container should respond to:
|
1010
|
-
#
|
1011
|
-
# #harvest!
|
1012
|
-
# returns an enumerable collection of data items to be sent to the
|
1013
|
-
# collector.
|
1014
|
-
#
|
1015
|
-
# #reset!
|
1016
|
-
# drop any stored data and reset to a clean state.
|
1017
|
-
#
|
1018
|
-
# #merge!(items)
|
1019
|
-
# merge the given items back into the internal buffer of the
|
1020
|
-
# container, so that they may be harvested again later.
|
1021
|
-
#
|
1022
|
-
def harvest_and_send_from_container(container, endpoint)
|
1023
|
-
items = harvest_from_container(container, endpoint)
|
1024
|
-
send_data_to_endpoint(endpoint, items, container) unless items.empty?
|
1025
|
-
end
|
1026
|
-
|
1027
|
-
def harvest_from_container(container, endpoint)
|
1028
|
-
items = []
|
1029
|
-
begin
|
1030
|
-
items = container.harvest!
|
1031
|
-
rescue => e
|
1032
|
-
NewRelic::Agent.logger.error("Failed to harvest #{endpoint} data, resetting. Error: ", e)
|
1033
|
-
container.reset!
|
1034
|
-
end
|
1035
|
-
items
|
1036
|
-
end
|
1037
|
-
|
1038
|
-
def send_data_to_endpoint(endpoint, items, container)
|
1039
|
-
NewRelic::Agent.logger.debug("Sending #{items.size} items to #{endpoint}")
|
1040
|
-
begin
|
1041
|
-
@service.send(endpoint, items)
|
1042
|
-
rescue ForceRestartException, ForceDisconnectException
|
1043
|
-
raise
|
1044
|
-
rescue SerializationError => e
|
1045
|
-
NewRelic::Agent.logger.warn("Failed to serialize data for #{endpoint}, discarding. Error: ", e)
|
1046
|
-
rescue UnrecoverableServerException => e
|
1047
|
-
NewRelic::Agent.logger.warn("#{endpoint} data was rejected by remote service, discarding. Error: ", e)
|
1048
|
-
rescue ServerConnectionException => e
|
1049
|
-
log_remote_unavailable(endpoint, e)
|
1050
|
-
container.merge!(items)
|
1051
|
-
rescue => e
|
1052
|
-
NewRelic::Agent.logger.info("Unable to send #{endpoint} data, will try again later. Error: ", e)
|
1053
|
-
container.merge!(items)
|
1054
|
-
end
|
1055
|
-
end
|
1056
|
-
|
1057
|
-
def harvest_and_send_timeslice_data
|
1058
|
-
NewRelic::Agent::BusyCalculator.harvest_busy
|
1059
|
-
harvest_and_send_from_container(@stats_engine, :metric_data)
|
1060
|
-
end
|
1061
|
-
|
1062
|
-
def harvest_and_send_slowest_sql
|
1063
|
-
harvest_and_send_from_container(@sql_sampler, :sql_trace_data)
|
1064
|
-
end
|
1065
|
-
|
1066
|
-
# This handles getting the transaction traces and then sending
|
1067
|
-
# them across the wire. This includes gathering SQL
|
1068
|
-
# explanations, stripping out stack traces, and normalizing
|
1069
|
-
# SQL. note that we explain only the sql statements whose
|
1070
|
-
# nodes' execution times exceed our threshold (to avoid
|
1071
|
-
# unnecessary overhead of running explains on fast queries.)
|
1072
|
-
def harvest_and_send_transaction_traces
|
1073
|
-
harvest_and_send_from_container(@transaction_sampler, :transaction_sample_data)
|
1074
|
-
end
|
1075
|
-
|
1076
|
-
def harvest_and_send_for_agent_commands
|
1077
|
-
harvest_and_send_from_container(@agent_command_router, :profile_data)
|
1078
|
-
end
|
1079
|
-
|
1080
|
-
def harvest_and_send_errors
|
1081
|
-
harvest_and_send_from_container(@error_collector, :error_data)
|
1082
|
-
end
|
1083
|
-
|
1084
|
-
def harvest_and_send_analytic_event_data
|
1085
|
-
harvest_and_send_from_container(@transaction_event_aggregator, :analytic_event_data)
|
1086
|
-
harvest_and_send_from_container(@custom_event_aggregator, :custom_event_data)
|
1087
|
-
end
|
1088
|
-
|
1089
|
-
def harvest_and_send_utilization_data
|
1090
|
-
harvest_and_send_from_container(@utilization_data, :utilization_data)
|
1091
|
-
end
|
1092
|
-
|
1093
|
-
def check_for_and_handle_agent_commands
|
1094
|
-
begin
|
1095
|
-
@agent_command_router.check_for_and_handle_agent_commands
|
1096
|
-
rescue ForceRestartException, ForceDisconnectException
|
1097
|
-
raise
|
1098
|
-
rescue ServerConnectionException => e
|
1099
|
-
log_remote_unavailable(:get_agent_commands, e)
|
1100
|
-
rescue => e
|
1101
|
-
NewRelic::Agent.logger.info("Error during check_for_and_handle_agent_commands, will retry later: ", e)
|
1102
|
-
end
|
1103
|
-
end
|
1104
|
-
|
1105
|
-
def log_remote_unavailable(endpoint, e)
|
1106
|
-
NewRelic::Agent.logger.debug("Unable to send #{endpoint} data, will try again later. Error: ", e)
|
1107
|
-
NewRelic::Agent.record_metric("Supportability/remote_unavailable", 0.0)
|
1108
|
-
NewRelic::Agent.record_metric("Supportability/remote_unavailable/#{endpoint.to_s}", 0.0)
|
1109
|
-
end
|
1110
|
-
|
1111
|
-
def transmit_data
|
1112
|
-
harvest_lock.synchronize do
|
1113
|
-
transmit_data_already_locked
|
1114
|
-
end
|
1115
|
-
end
|
1116
|
-
|
1117
|
-
def transmit_event_data
|
1118
|
-
transmit_single_data_type(:harvest_and_send_analytic_event_data, "TransactionEvent")
|
1119
|
-
end
|
1120
|
-
|
1121
|
-
def transmit_utilization_data
|
1122
|
-
transmit_single_data_type(:harvest_and_send_utilization_data, "UtilizationData")
|
1123
|
-
end
|
1124
|
-
|
1125
|
-
def transmit_single_data_type(harvest_method, supportability_name)
|
1126
|
-
now = Time.now
|
1127
|
-
|
1128
|
-
msg = "Sending #{harvest_method.to_s.gsub("harvest_and_send_", "")} to New Relic Service"
|
1129
|
-
::NewRelic::Agent.logger.debug msg
|
1130
|
-
|
1131
|
-
harvest_lock.synchronize do
|
1132
|
-
@service.session do # use http keep-alive
|
1133
|
-
self.send(harvest_method)
|
1134
|
-
end
|
1135
|
-
end
|
1136
|
-
ensure
|
1137
|
-
duration = (Time.now - now).to_f
|
1138
|
-
NewRelic::Agent.record_metric("Supportability/#{supportability_name}Harvest", duration)
|
1139
|
-
end
|
1140
|
-
|
1141
|
-
# This method is expected to only be called with the harvest_lock
|
1142
|
-
# already held
|
1143
|
-
def transmit_data_already_locked
|
1144
|
-
now = Time.now
|
1145
|
-
::NewRelic::Agent.logger.debug "Sending data to New Relic Service"
|
1146
|
-
|
1147
|
-
@events.notify(:before_harvest)
|
1148
|
-
@service.session do # use http keep-alive
|
1149
|
-
harvest_and_send_errors
|
1150
|
-
harvest_and_send_transaction_traces
|
1151
|
-
harvest_and_send_slowest_sql
|
1152
|
-
harvest_and_send_timeslice_data
|
1153
|
-
|
1154
|
-
check_for_and_handle_agent_commands
|
1155
|
-
harvest_and_send_for_agent_commands
|
1156
|
-
end
|
1157
|
-
ensure
|
1158
|
-
NewRelic::Agent::Database.close_connections
|
1159
|
-
duration = (Time.now - now).to_f
|
1160
|
-
NewRelic::Agent.record_metric('Supportability/Harvest', duration)
|
1161
|
-
end
|
1162
|
-
|
1163
|
-
private :transmit_data_already_locked
|
1164
|
-
|
1165
|
-
# This method contacts the server to send remaining data and
|
1166
|
-
# let the server know that the agent is shutting down - this
|
1167
|
-
# allows us to do things like accurately set the end of the
|
1168
|
-
# lifetime of the process
|
1169
|
-
#
|
1170
|
-
# If this process comes from a parent process, it will not
|
1171
|
-
# disconnect, so that the parent process can continue to send data
|
1172
|
-
def graceful_disconnect
|
1173
|
-
if connected?
|
1174
|
-
begin
|
1175
|
-
@service.request_timeout = 10
|
1176
|
-
|
1177
|
-
@events.notify(:before_shutdown)
|
1178
|
-
transmit_data
|
1179
|
-
transmit_event_data
|
1180
|
-
transmit_utilization_data if NewRelic::Agent.config[:collect_utilization]
|
1181
|
-
|
1182
|
-
if @connected_pid == $$ && !@service.kind_of?(NewRelic::Agent::NewRelicService)
|
1183
|
-
::NewRelic::Agent.logger.debug "Sending New Relic service agent run shutdown message"
|
1184
|
-
@service.shutdown(Time.now.to_f)
|
1185
|
-
else
|
1186
|
-
::NewRelic::Agent.logger.debug "This agent connected from parent process #{@connected_pid}--not sending shutdown"
|
1187
|
-
end
|
1188
|
-
::NewRelic::Agent.logger.debug "Graceful disconnect complete"
|
1189
|
-
rescue Timeout::Error, StandardError => e
|
1190
|
-
::NewRelic::Agent.logger.debug "Error when disconnecting #{e.class.name}: #{e.message}"
|
1191
|
-
end
|
1192
|
-
else
|
1193
|
-
::NewRelic::Agent.logger.debug "Bypassing graceful disconnect - agent not connected"
|
1194
|
-
end
|
1195
|
-
end
|
1196
354
|
end
|
1197
355
|
|
1198
356
|
extend ClassMethods
|