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
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,194 @@
|
|
1
|
+
# Guidelines for Contributing Code
|
2
|
+
|
3
|
+
New Relic welcomes code contributions by the Ruby community, and
|
4
|
+
have taken effort to make this process easy for both contributors and our
|
5
|
+
development team.
|
6
|
+
|
7
|
+
When contributing, keep in mind that the agent runs in a wide variety of Ruby
|
8
|
+
language implementations (e.g. 2.x.x, jruby, etc.) as well as a wide variety of
|
9
|
+
application environments (e.g. Rails, Sinatra, roll-your-own, etc.) See [Ruby agent requirements and supported frameworks](https://docs.newrelic.com/docs/agents/ruby-agent/getting-started/ruby-agent-requirements-supported-frameworks)
|
10
|
+
for the current full list.
|
11
|
+
|
12
|
+
Because of this, we need to be more defensive in our coding practices than most
|
13
|
+
projects. Syntax must be compatible with all supported Ruby implementations and
|
14
|
+
we can't assume the presence of any specific libraries, including `ActiveSupport`,
|
15
|
+
`ActiveRecord`, etc.
|
16
|
+
|
17
|
+
## Process
|
18
|
+
|
19
|
+
### Version Support
|
20
|
+
|
21
|
+
When contributing, keep in mind that New Relic customers (that's you!) are
|
22
|
+
running many different versions of Ruby, some of them pretty old. Changes that
|
23
|
+
depend on the newest version of Ruby will probably be rejected, especially if
|
24
|
+
they replace something backwards compatible.
|
25
|
+
|
26
|
+
Be aware that the instrumentation needs to work with a wide range of versions of
|
27
|
+
the instrumented modules, and that code that looks nonsensical or
|
28
|
+
overcomplicated may be that way for compatibility-related reasons. Read all the
|
29
|
+
comments and check the related tests before deciding whether existing code is
|
30
|
+
incorrect.
|
31
|
+
|
32
|
+
If you are planning on contributing a new feature or an otherwise complex
|
33
|
+
contribution, we kindly ask you to start a conversation with the maintainer team
|
34
|
+
by opening up a GitHub issue first.
|
35
|
+
|
36
|
+
|
37
|
+
### General Guidelines
|
38
|
+
The Ruby agent avoids requiring any dependencies in the main agent code base.
|
39
|
+
Instrumentations and features that would otherwise require a dependency (such as
|
40
|
+
Infinite Tracing, which require gRPC and protobuf) are built as separate gems.
|
41
|
+
If you have a feature or instrumentation request that would require a
|
42
|
+
dependency, please open an Issue to discuss with the maintainers before
|
43
|
+
proceeding.
|
44
|
+
|
45
|
+
Your code will be evaluated for completeness and accuracy in
|
46
|
+
implementation and must be accompanied with appropriate unit tests. New
|
47
|
+
additions that do not break existing tests are the easiest and quickest to be
|
48
|
+
accepted and merged. New features and improvements that break existing
|
49
|
+
functionality are slower to be accepted and merged as they require agreement
|
50
|
+
with maintainers across a majority of the languages New Relic supports. Any
|
51
|
+
such breaking changes will require a major version bump whereas non-breaking
|
52
|
+
additions only lead to minor version bumps.
|
53
|
+
|
54
|
+
Please be aware that the maintainers of New Relic’s agents aim to have as much
|
55
|
+
commonality of functionality across all language agents as makes sense, so we are
|
56
|
+
always working to reconcile language-specific changes against the cross-language
|
57
|
+
community set of agreements.
|
58
|
+
|
59
|
+
### Feature Requests
|
60
|
+
|
61
|
+
Feature requests should be submitted in the [Issue tracker](../../issues), with
|
62
|
+
a description of the expected behavior & use case. Before submitting an Issue,
|
63
|
+
please search for similar ones in the [closed
|
64
|
+
issues](../../issues?q=is%3Aissue+is%3Aclosed).
|
65
|
+
|
66
|
+
### Pull Requests
|
67
|
+
|
68
|
+
We can only accept PRs for version v6.12.0 or greater due to open source
|
69
|
+
licensing restrictions. Please set the merge branch to `dev` unless the issue
|
70
|
+
states otherwise.
|
71
|
+
|
72
|
+
### Code of Conduct
|
73
|
+
|
74
|
+
Before contributing please read the [code of conduct](https://github.com/newrelic/.github/blob/master/CODE_OF_CONDUCT.md)
|
75
|
+
|
76
|
+
Note that our [code of conduct](https://github.com/newrelic/.github/blob/master/CODE_OF_CONDUCT.md) applies to all platforms
|
77
|
+
and venues related to this project; please follow it in all your interactions
|
78
|
+
with the project and its participants.
|
79
|
+
|
80
|
+
## Branches
|
81
|
+
|
82
|
+
The head of `main` will generally have New Relic's latest release. However,
|
83
|
+
New Relic reserves the ability to push an edge to the `main`. If you download a
|
84
|
+
release from this repo, use the appropriate tag. New Relic usually pushes beta
|
85
|
+
versions of a release to a working branch before tagging them for General
|
86
|
+
Availability.
|
87
|
+
|
88
|
+
The `main` branch houses the code from the latest release. The `dev` branch
|
89
|
+
includes unreleased work. Please create all new branches off of `dev`.
|
90
|
+
|
91
|
+
## Development Environment Setup
|
92
|
+
|
93
|
+
1. Fork and clone the repo locally
|
94
|
+
- Fork the repository inside GitHub
|
95
|
+
- `git clone git@github.com:<gh username>/newrelic-ruby-agent.git`
|
96
|
+
1. Pick a Ruby version
|
97
|
+
- Use rbenv, rvm, chruby, asdf, etc. to install any version of Ruby between 2.4 up to the latest stable version
|
98
|
+
1. Install development dependencies
|
99
|
+
- `bundle install`
|
100
|
+
1. Check that your env is setup correctly
|
101
|
+
- `bundle exec rake`
|
102
|
+
|
103
|
+
**Optional:** Install [lefthook](https://github.com/evilmartians/lefthook) to
|
104
|
+
integrate our team's git hooks, such as [rubocop](https://github.com/rubocop/rubocop)
|
105
|
+
linting into your workflow.
|
106
|
+
|
107
|
+
**Note:** These setup instructions will not allow you to run the entire test
|
108
|
+
suite. Some of our suites require services such as MySQL, Postgres, Redis, and
|
109
|
+
others to run.
|
110
|
+
|
111
|
+
## Testing
|
112
|
+
|
113
|
+
The agent includes a suite of unit and functional tests which should be used to
|
114
|
+
verify your changes don't break existing functionality.
|
115
|
+
|
116
|
+
Unit tests are stored in the `test/new_relic` directory.
|
117
|
+
|
118
|
+
Functional tests are stored in the `test/multiverse` directory.
|
119
|
+
|
120
|
+
### Running Tests
|
121
|
+
|
122
|
+
Running the test suite is simple. Just invoke:
|
123
|
+
|
124
|
+
bundle
|
125
|
+
bundle exec rake
|
126
|
+
|
127
|
+
This will run the unit tests in standalone mode. You can run against a specific Rails version
|
128
|
+
by passing the version name (which should match the name of a subdirectory in test/environments)
|
129
|
+
as an argument to the test:env rake task, like this:
|
130
|
+
|
131
|
+
bundle exec rake 'test:env[rails60]'
|
132
|
+
|
133
|
+
These tests are setup to run automatically in
|
134
|
+
[GitHub Actions](https://github.com/newrelic/newrelic-ruby-agent/actions) under several
|
135
|
+
Ruby implementations. When you've pushed your changes to GitHub, you can confirm that
|
136
|
+
the GitHub Actions test matrix passes for your fork.
|
137
|
+
|
138
|
+
Additionally, our own CI jobs runs these tests under multiple versions of Rails
|
139
|
+
to verify compatibility.
|
140
|
+
|
141
|
+
### Writing Tests
|
142
|
+
|
143
|
+
For most contributions it is strongly recommended to add additional tests which
|
144
|
+
exercise your changes.
|
145
|
+
|
146
|
+
This helps us efficiently incorporate your changes into our mainline codebase
|
147
|
+
and provides a safeguard that your change won't be broken by future development.
|
148
|
+
|
149
|
+
There are some rare cases where code changes do not result in changed
|
150
|
+
functionality (e.g. a performance optimization) and new tests are not required.
|
151
|
+
In general, including tests with your pull request dramatically increases the
|
152
|
+
chances it will be accepted.
|
153
|
+
|
154
|
+
### Functional Testing
|
155
|
+
|
156
|
+
For cases where the unit test environment is not sufficient for testing a
|
157
|
+
change (e.g. instrumentation for a non-Rails framework, not available in the
|
158
|
+
unit test environment), we have a functional testing suite called multiverse.
|
159
|
+
These tests can be run by invoking:
|
160
|
+
|
161
|
+
bundle
|
162
|
+
bundle exec rake test:multiverse
|
163
|
+
|
164
|
+
More details are available in
|
165
|
+
[test/multiverse/README.md](https://github.com/newrelic/newrelic-ruby-agent/blob/main/test/multiverse/README.md).
|
166
|
+
|
167
|
+
### Leveraging Docker for Development and/or Testing
|
168
|
+
|
169
|
+
See [DOCKER.md](DOCKER.md).
|
170
|
+
|
171
|
+
## Contributor License Agreement
|
172
|
+
|
173
|
+
Keep in mind that when you submit your Pull Request, you'll need to sign the CLA
|
174
|
+
via the click-through using CLA-Assistant. If you'd like to execute our
|
175
|
+
corporate CLA, or if you have any questions, please drop us an email at
|
176
|
+
opensource@newrelic.com.
|
177
|
+
|
178
|
+
For more information about CLAs, please check out Alex Russell’s excellent post,
|
179
|
+
[“Why Do I Need to Sign This?”](https://infrequently.org/2008/06/why-do-i-need-to-sign-this/).
|
180
|
+
|
181
|
+
## Explorer's Hub
|
182
|
+
|
183
|
+
New Relic hosts and moderates an online forum where customers can interact with
|
184
|
+
New Relic employees as well as other customers to get help and share best
|
185
|
+
practices. Like all official New Relic open source projects, there's a related
|
186
|
+
Community topic in the New Relic Explorers Hub. You can find this project's
|
187
|
+
topic/threads here:
|
188
|
+
|
189
|
+
[Explorer's Hub](https://discuss.newrelic.com/tags/rubyagent)
|
190
|
+
|
191
|
+
## And Finally...
|
192
|
+
|
193
|
+
If you have any feedback on how we can make contributing easier, please get in
|
194
|
+
touch at [support.newrelic.com](http://support.newrelic.com) and let us know!
|
data/Gemfile
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
-
|
1
|
+
# This file is distributed under New Relic's license terms.
|
2
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
2
4
|
|
3
|
-
|
5
|
+
source 'https://rubygems.org'
|
6
|
+
gemspec name: 'newrelic_rpm'
|
data/LICENSE
CHANGED
@@ -1,151 +1,202 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
4
202
|
|
5
|
-
Copyright (c) 2011 John Resig, http://jquery.com/
|
6
|
-
|
7
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
8
|
-
a copy of this software and associated documentation files (the
|
9
|
-
"Software"), to deal in the Software without restriction, including
|
10
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
11
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
12
|
-
permit persons to whom the Software is furnished to do so, subject to
|
13
|
-
the following conditions:
|
14
|
-
|
15
|
-
The above copyright notice and this permission notice shall be
|
16
|
-
included in all copies or substantial portions of the Software.
|
17
|
-
|
18
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
19
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
20
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
21
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
22
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
23
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
24
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
25
|
-
|
26
|
-
It includes source derived from 'okjson' by Keith Rarick, distributed under the
|
27
|
-
MIT license.
|
28
|
-
See https://github.com/kr/okjson/blob/bdd1113/okjson.rb#L3-21
|
29
|
-
|
30
|
-
Copyright 2011, 2012 Keith Rarick
|
31
|
-
|
32
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
33
|
-
of this software and associated documentation files (the "Software"), to deal
|
34
|
-
in the Software without restriction, including without limitation the rights
|
35
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
36
|
-
copies of the Software, and to permit persons to whom the Software is
|
37
|
-
furnished to do so, subject to the following conditions:
|
38
|
-
|
39
|
-
The above copyright notice and this permission notice shall be included in
|
40
|
-
all copies or substantial portions of the Software.
|
41
|
-
|
42
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
43
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
44
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
45
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
46
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
47
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
48
|
-
THE SOFTWARE.
|
49
|
-
|
50
|
-
It includes source derived from 'system_timer' by David Vollbracht & Philippe
|
51
|
-
Hanrigou, distributed under Ruby's license terms.
|
52
|
-
|
53
|
-
Copyright: (C) 2008 David Vollbracht & Philippe Hanrigou
|
54
|
-
|
55
|
-
Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.co.jp>.
|
56
|
-
You can redistribute it and/or modify it under either the terms of the GPL
|
57
|
-
(see COPYING.txt file), or the conditions below:
|
58
|
-
|
59
|
-
1. You may make and give away verbatim copies of the source form of the
|
60
|
-
software without restriction, provided that you duplicate all of the
|
61
|
-
original copyright notices and associated disclaimers.
|
62
|
-
|
63
|
-
2. You may modify your copy of the software in any way, provided that
|
64
|
-
you do at least ONE of the following:
|
65
|
-
|
66
|
-
a) place your modifications in the Public Domain or otherwise
|
67
|
-
make them Freely Available, such as by posting said
|
68
|
-
modifications to Usenet or an equivalent medium, or by allowing
|
69
|
-
the author to include your modifications in the software.
|
70
|
-
|
71
|
-
b) use the modified software only within your corporation or
|
72
|
-
organization.
|
73
|
-
|
74
|
-
c) rename any non-standard executables so the names do not conflict
|
75
|
-
with standard executables, which must also be provided.
|
76
|
-
|
77
|
-
d) make other distribution arrangements with the author.
|
78
|
-
|
79
|
-
3. You may distribute the software in object code or executable
|
80
|
-
form, provided that you do at least ONE of the following:
|
81
|
-
|
82
|
-
a) distribute the executables and library files of the software,
|
83
|
-
together with instructions (in the manual page or equivalent)
|
84
|
-
on where to get the original distribution.
|
85
|
-
|
86
|
-
b) accompany the distribution with the machine-readable source of
|
87
|
-
the software.
|
88
|
-
|
89
|
-
c) give non-standard executables non-standard names, with
|
90
|
-
instructions on where to get the original software distribution.
|
91
|
-
|
92
|
-
d) make other distribution arrangements with the author.
|
93
|
-
|
94
|
-
4. You may modify and include the part of the software into any other
|
95
|
-
software (possibly commercial). But some files in the distribution
|
96
|
-
are not written by the author, so that they are not under this terms.
|
97
|
-
|
98
|
-
They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some
|
99
|
-
files under the ./missing directory. See each file for the copying
|
100
|
-
condition.
|
101
|
-
|
102
|
-
5. The scripts and library files supplied as input to or produced as
|
103
|
-
output from the software do not automatically fall under the
|
104
|
-
copyright of the software, but belong to whomever generated them,
|
105
|
-
and may be sold commercially, and may be aggregated with this
|
106
|
-
software.
|
107
|
-
|
108
|
-
6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
|
109
|
-
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
110
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
111
|
-
PURPOSE.
|
112
|
-
|
113
|
-
|
114
|
-
All other components of this product are
|
115
|
-
Copyright (c) 2008-2014 New Relic, Inc. All rights reserved.
|
116
|
-
|
117
|
-
Certain inventions disclosed in this file may be claimed within
|
118
|
-
patents owned or patent applications filed by New Relic, Inc. or third
|
119
|
-
parties.
|
120
|
-
|
121
|
-
Subject to the terms of this notice, New Relic grants you a
|
122
|
-
nonexclusive, nontransferable license, without the right to
|
123
|
-
sublicense, to (a) install and execute one copy of these files on any
|
124
|
-
number of workstations owned or controlled by you and (b) distribute
|
125
|
-
verbatim copies of these files to third parties. As a condition to the
|
126
|
-
foregoing grant, you must provide this notice along with each copy you
|
127
|
-
distribute and you must not remove, alter, or obscure this notice. All
|
128
|
-
other use, reproduction, modification, distribution, or other
|
129
|
-
exploitation of these files is strictly prohibited, except as may be set
|
130
|
-
forth in a separate written license agreement between you and New
|
131
|
-
Relic. The terms of any such license agreement will control over this
|
132
|
-
notice. The license stated above will be automatically terminated and
|
133
|
-
revoked if you exceed its scope or violate any of the terms of this
|
134
|
-
notice.
|
135
|
-
|
136
|
-
This License does not grant permission to use the trade names,
|
137
|
-
trademarks, service marks, or product names of New Relic, except as
|
138
|
-
required for reasonable and customary use in describing the origin of
|
139
|
-
this file and reproducing the content of this notice. You may not
|
140
|
-
mark or brand this file with any trade name, trademarks, service
|
141
|
-
marks, or product names other than the original brand (if any)
|
142
|
-
provided by New Relic.
|
143
|
-
|
144
|
-
Unless otherwise expressly agreed by New Relic in a separate written
|
145
|
-
license agreement, these files are provided AS IS, WITHOUT WARRANTY OF
|
146
|
-
ANY KIND, including without any implied warranties of MERCHANTABILITY,
|
147
|
-
FITNESS FOR A PARTICULAR PURPOSE, TITLE, or NON-INFRINGEMENT. As a
|
148
|
-
condition to your use of these files, you are solely responsible for
|
149
|
-
such use. New Relic will have no liability to you for direct,
|
150
|
-
indirect, consequential, incidental, special, or punitive damages or
|
151
|
-
for lost profits or data.
|