newrelic_rpm 4.0.0.332 → 6.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/ISSUE_TEMPLATE/bug_report.md +31 -0
- data/.github/ISSUE_TEMPLATE/config.yml +5 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +24 -0
- data/.github/actions/annotate/README.md +79 -0
- data/.github/actions/annotate/action.yml +6 -0
- data/.github/actions/annotate/dist/index.js +433 -0
- data/.github/actions/annotate/index.js +25 -0
- data/.github/actions/annotate/package-lock.json +172 -0
- data/.github/actions/annotate/package.json +30 -0
- data/.github/actions/annotate/pre-commit +5 -0
- data/.github/actions/build-ruby/README.md +79 -0
- data/.github/actions/build-ruby/action.yml +15 -0
- data/.github/actions/build-ruby/dist/index.js +52683 -0
- data/.github/actions/build-ruby/index.js +514 -0
- data/.github/actions/build-ruby/package-lock.json +581 -0
- data/.github/actions/build-ruby/package.json +32 -0
- data/.github/actions/build-ruby/pre-commit +5 -0
- data/.github/pull_request_template.md +16 -0
- data/.github/workflows/ci.yml +212 -0
- data/.github/workflows/pr_review_checklist.yml +22 -0
- data/.github/workflows/release.yml +78 -0
- data/.github/workflows/scripts/rubygems-authenticate.py +13 -0
- data/.github/workflows/scripts/rubygems-publish.rb +32 -0
- data/.github/workflows/snyk.yml +27 -0
- data/.github/workflows/stale.yml +21 -0
- data/.gitignore +9 -0
- data/.yardopts +7 -2
- data/CHANGELOG.md +1130 -0
- data/CONTRIBUTING.md +106 -19
- data/Gemfile +6 -2
- data/Guardfile +18 -1
- data/LICENSE +208 -64
- data/README.md +75 -135
- data/ROADMAP.md +24 -0
- data/Rakefile +2 -0
- data/THIRD_PARTY_NOTICES.md +213 -0
- data/bin/nrdebug +1 -1
- data/config.dot +3 -12
- data/init.rb +1 -1
- data/install.rb +1 -1
- data/lib/new_relic/agent.rb +189 -35
- data/lib/new_relic/agent/adaptive_sampler.rb +104 -0
- data/lib/new_relic/agent/agent.rb +204 -186
- data/lib/new_relic/agent/agent_logger.rb +5 -1
- data/lib/new_relic/agent/attribute_filter.rb +85 -28
- data/lib/new_relic/agent/attribute_processing.rb +1 -1
- data/lib/new_relic/agent/attributes.rb +152 -0
- data/lib/new_relic/agent/audit_logger.rb +1 -1
- data/lib/new_relic/agent/autostart.rb +20 -15
- data/lib/new_relic/agent/chained_call.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command_router.rb +3 -22
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +1 -1
- data/lib/new_relic/agent/configuration.rb +1 -1
- data/lib/new_relic/agent/configuration/default_source.rb +436 -96
- data/lib/new_relic/agent/configuration/dotted_hash.rb +1 -1
- data/lib/new_relic/agent/configuration/environment_source.rb +5 -3
- data/lib/new_relic/agent/configuration/event_harvest_config.rb +45 -0
- data/lib/new_relic/agent/configuration/high_security_source.rb +2 -3
- data/lib/new_relic/agent/configuration/manager.rb +54 -43
- data/lib/new_relic/agent/configuration/manual_source.rb +1 -1
- data/lib/new_relic/agent/configuration/mask_defaults.rb +1 -1
- data/lib/new_relic/agent/configuration/security_policy_source.rb +238 -0
- data/lib/new_relic/agent/configuration/server_source.rb +46 -5
- data/lib/new_relic/agent/configuration/yaml_source.rb +20 -17
- data/lib/new_relic/agent/connect/request_builder.rb +61 -0
- data/lib/new_relic/agent/connect/response_handler.rb +61 -0
- data/lib/new_relic/agent/custom_event_aggregator.rb +17 -6
- data/lib/new_relic/agent/database.rb +32 -7
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +12 -1
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
- data/lib/new_relic/agent/database/obfuscator.rb +1 -1
- data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +1 -1
- data/lib/new_relic/agent/datastores.rb +32 -15
- data/lib/new_relic/agent/datastores/metric_helper.rb +2 -3
- data/lib/new_relic/agent/datastores/mongo.rb +2 -2
- data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +3 -3
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +1 -1
- data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +9 -9
- data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +1 -1
- data/lib/new_relic/agent/datastores/redis.rb +1 -1
- data/lib/new_relic/agent/deprecator.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing.rb +216 -0
- data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +44 -0
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +248 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +84 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +75 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +165 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +39 -0
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +246 -0
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +126 -0
- data/lib/new_relic/agent/encoding_normalizer.rb +1 -1
- data/lib/new_relic/agent/error_collector.rb +55 -24
- data/lib/new_relic/agent/error_event_aggregator.rb +14 -7
- data/lib/new_relic/agent/error_trace_aggregator.rb +2 -1
- data/lib/new_relic/agent/event_aggregator.rb +34 -15
- data/lib/new_relic/agent/event_buffer.rb +1 -1
- data/lib/new_relic/agent/event_listener.rb +1 -1
- data/lib/new_relic/agent/event_loop.rb +1 -1
- data/lib/new_relic/agent/external.rb +143 -0
- data/lib/new_relic/agent/guid_generator.rb +28 -0
- data/lib/new_relic/agent/harvester.rb +1 -1
- data/lib/new_relic/agent/heap.rb +140 -0
- data/lib/new_relic/agent/hostname.rb +16 -2
- data/lib/new_relic/agent/http_clients/abstract.rb +82 -0
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +26 -19
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +31 -12
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +20 -22
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +13 -12
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +23 -7
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +8 -8
- data/lib/new_relic/agent/http_clients/uri_util.rb +23 -17
- data/lib/new_relic/agent/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +26 -43
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +56 -75
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +82 -56
- data/lib/new_relic/agent/instrumentation/active_job.rb +21 -15
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_record.rb +94 -33
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +87 -25
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +168 -0
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +132 -0
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +70 -58
- data/lib/new_relic/agent/instrumentation/active_storage.rb +23 -0
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +63 -0
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +26 -8
- data/lib/new_relic/agent/instrumentation/authlogic.rb +1 -1
- data/lib/new_relic/agent/instrumentation/bunny.rb +219 -0
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +27 -16
- data/lib/new_relic/agent/instrumentation/curb.rb +126 -37
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +16 -7
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +61 -25
- data/lib/new_relic/agent/instrumentation/excon.rb +2 -2
- data/lib/new_relic/agent/instrumentation/excon/connection.rb +13 -7
- data/lib/new_relic/agent/instrumentation/excon/middleware.rb +9 -5
- data/lib/new_relic/agent/instrumentation/grape.rb +46 -35
- data/lib/new_relic/agent/instrumentation/http.rb +12 -6
- data/lib/new_relic/agent/instrumentation/httpclient.rb +12 -7
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
- data/lib/new_relic/agent/instrumentation/memcache.rb +9 -4
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +15 -8
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +1 -1
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +1 -1
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +13 -5
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +20 -11
- data/lib/new_relic/agent/instrumentation/mongo.rb +21 -10
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +43 -6
- data/lib/new_relic/agent/instrumentation/net.rb +60 -20
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +100 -0
- data/lib/new_relic/agent/instrumentation/padrino.rb +40 -16
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/queue_time.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rack.rb +36 -13
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +2 -2
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +6 -4
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +2 -2
- data/lib/new_relic/agent/instrumentation/{rails5 → rails_notifications}/action_cable.rb +11 -5
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +33 -0
- data/lib/new_relic/agent/instrumentation/{rails4 → rails_notifications}/action_view.rb +6 -4
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rake.rb +58 -22
- data/lib/new_relic/agent/instrumentation/redis.rb +141 -41
- data/lib/new_relic/agent/instrumentation/resque.rb +21 -37
- data/lib/new_relic/agent/instrumentation/sequel.rb +2 -3
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +48 -24
- data/lib/new_relic/agent/instrumentation/sinatra.rb +62 -23
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sunspot.rb +1 -1
- data/lib/new_relic/agent/instrumentation/typhoeus.rb +67 -26
- data/lib/new_relic/agent/internal_agent_error.rb +1 -1
- data/lib/new_relic/agent/javascript_instrumentor.rb +19 -16
- data/lib/new_relic/agent/log_once.rb +1 -1
- data/lib/new_relic/agent/logging.rb +139 -0
- data/lib/new_relic/agent/memory_logger.rb +1 -1
- data/lib/new_relic/agent/messaging.rb +372 -0
- data/lib/new_relic/agent/method_tracer.rb +45 -24
- data/lib/new_relic/agent/method_tracer_helpers.rb +10 -63
- data/lib/new_relic/agent/monitors.rb +27 -0
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +110 -0
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +27 -0
- data/lib/new_relic/agent/{inbound_request_monitor.rb → monitors/inbound_request_monitor.rb} +4 -4
- data/lib/new_relic/agent/monitors/synthetics_monitor.rb +56 -0
- data/lib/new_relic/agent/new_relic_service.rb +174 -63
- data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +1 -2
- data/lib/new_relic/agent/new_relic_service/marshaller.rb +6 -27
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +61 -0
- data/lib/new_relic/agent/noticible_error.rb +22 -0
- data/lib/new_relic/agent/null_logger.rb +1 -1
- data/lib/new_relic/agent/obfuscator.rb +1 -1
- data/lib/new_relic/agent/parameter_filtering.rb +19 -6
- data/lib/new_relic/agent/payload_metric_mapping.rb +1 -1
- data/lib/new_relic/agent/pipe_channel_manager.rb +1 -1
- data/lib/new_relic/agent/pipe_service.rb +5 -1
- data/lib/new_relic/agent/prepend_supportability.rb +16 -0
- data/lib/new_relic/agent/priority_sampled_buffer.rb +95 -0
- data/lib/new_relic/agent/range_extensions.rb +47 -0
- data/lib/new_relic/agent/rules_engine.rb +1 -1
- data/lib/new_relic/agent/rules_engine/replacement_rule.rb +1 -1
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +1 -1
- data/lib/new_relic/agent/sampler.rb +1 -1
- data/lib/new_relic/agent/sampler_collection.rb +1 -1
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +4 -3
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/memory_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/vm_sampler.rb +1 -1
- data/lib/new_relic/agent/span_event_aggregator.rb +49 -0
- data/lib/new_relic/agent/span_event_primitive.rb +206 -0
- data/lib/new_relic/agent/sql_sampler.rb +25 -9
- data/lib/new_relic/agent/stats.rb +1 -15
- data/lib/new_relic/agent/stats_engine.rb +172 -4
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +1 -1
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +1 -1
- data/lib/new_relic/agent/supported_versions.rb +15 -14
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +6 -13
- data/lib/new_relic/agent/system_info.rb +52 -8
- data/lib/new_relic/agent/threading/agent_thread.rb +6 -4
- data/lib/new_relic/agent/threading/backtrace_node.rb +1 -1
- data/lib/new_relic/agent/threading/backtrace_service.rb +4 -4
- data/lib/new_relic/agent/threading/thread_profile.rb +10 -24
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +19 -0
- data/lib/new_relic/agent/tracer.rb +509 -0
- data/lib/new_relic/agent/transaction.rb +270 -295
- data/lib/new_relic/agent/transaction/abstract_segment.rb +204 -20
- data/lib/new_relic/agent/transaction/datastore_segment.rb +55 -26
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +171 -0
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +173 -0
- data/lib/new_relic/agent/transaction/external_request_segment.rb +159 -36
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +103 -0
- data/lib/new_relic/agent/transaction/request_attributes.rb +6 -14
- data/lib/new_relic/agent/transaction/segment.rb +67 -5
- data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/trace.rb +35 -34
- 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 +39 -43
- data/lib/new_relic/agent/transaction/tracing.rb +42 -45
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction_error_primitive.rb +15 -4
- data/lib/new_relic/agent/transaction_event_aggregator.rb +9 -4
- data/lib/new_relic/agent/transaction_event_primitive.rb +32 -29
- data/lib/new_relic/agent/transaction_event_recorder.rb +7 -7
- data/lib/new_relic/agent/transaction_metrics.rb +1 -1
- data/lib/new_relic/agent/transaction_sampler.rb +16 -196
- data/lib/new_relic/agent/transaction_time_aggregator.rb +155 -0
- data/lib/new_relic/agent/utilization/aws.rb +18 -0
- data/lib/new_relic/agent/utilization/azure.rb +17 -0
- data/lib/new_relic/agent/utilization/gcp.rb +35 -0
- data/lib/new_relic/agent/utilization/pcf.rb +32 -0
- data/lib/new_relic/agent/utilization/vendor.rb +144 -0
- data/lib/new_relic/agent/utilization_data.rb +65 -11
- data/lib/new_relic/agent/vm.rb +1 -1
- data/lib/new_relic/agent/vm/jruby_vm.rb +1 -1
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
- data/lib/new_relic/agent/vm/mri_vm.rb +1 -1
- data/lib/new_relic/agent/vm/snapshot.rb +1 -1
- data/lib/new_relic/agent/worker_loop.rb +1 -1
- data/lib/new_relic/cli/command.rb +1 -1
- data/lib/new_relic/cli/commands/deployments.rb +2 -2
- data/lib/new_relic/cli/commands/install.rb +4 -3
- data/lib/new_relic/coerce.rb +32 -7
- data/lib/new_relic/collection_helper.rb +1 -19
- data/lib/new_relic/constants.rb +38 -0
- data/lib/new_relic/control.rb +1 -1
- data/lib/new_relic/control/class_methods.rb +8 -2
- data/lib/new_relic/control/frameworks.rb +1 -1
- data/lib/new_relic/control/frameworks/external.rb +1 -1
- data/lib/new_relic/control/frameworks/merb.rb +1 -1
- data/lib/new_relic/control/frameworks/rails.rb +2 -22
- data/lib/new_relic/control/frameworks/rails3.rb +2 -2
- data/lib/new_relic/control/frameworks/rails4.rb +1 -1
- data/lib/new_relic/control/frameworks/{rails5.rb → rails_notifications.rb} +2 -2
- data/lib/new_relic/control/frameworks/ruby.rb +3 -3
- data/lib/new_relic/control/frameworks/sinatra.rb +1 -1
- data/lib/new_relic/control/instance_methods.rb +30 -4
- data/lib/new_relic/control/instrumentation.rb +1 -1
- data/lib/new_relic/control/server_methods.rb +1 -1
- data/lib/new_relic/delayed_job_injection.rb +1 -1
- data/lib/new_relic/dependency_detection.rb +5 -5
- data/lib/new_relic/environment_report.rb +6 -2
- data/lib/new_relic/helper.rb +1 -1
- data/lib/new_relic/language_support.rb +1 -1
- data/lib/new_relic/latest_changes.rb +4 -4
- data/lib/new_relic/local_environment.rb +1 -1
- data/lib/new_relic/metric_data.rb +1 -1
- data/lib/new_relic/metric_spec.rb +1 -1
- data/lib/new_relic/noticed_error.rb +63 -30
- data/lib/new_relic/rack.rb +1 -1
- data/lib/new_relic/rack/agent_hooks.rb +1 -1
- data/lib/new_relic/rack/agent_middleware.rb +2 -2
- data/lib/new_relic/rack/browser_monitoring.rb +16 -9
- data/lib/new_relic/recipes.rb +1 -1
- data/lib/new_relic/recipes/capistrano3.rb +6 -3
- data/lib/new_relic/recipes/capistrano_legacy.rb +1 -1
- data/lib/new_relic/supportability_helper.rb +82 -0
- data/lib/new_relic/version.rb +4 -4
- data/lib/newrelic_rpm.rb +2 -2
- data/lib/sequel/extensions/newrelic_instrumentation.rb +27 -12
- data/lib/sequel/plugins/newrelic_instrumentation.rb +7 -3
- data/lib/tasks/all.rb +1 -1
- data/lib/tasks/config.rake +1 -2
- data/lib/tasks/multiverse.rb +35 -1
- data/lib/tasks/newrelic.rb +1 -1
- data/lib/tasks/tests.rake +6 -1
- data/newrelic.yml +1 -5
- data/newrelic_rpm.gemspec +23 -17
- data/recipes/newrelic.rb +1 -1
- data/test/agent_helper.rb +395 -83
- metadata +169 -910
- data/.travis.yml +0 -149
- data/lib/conditional_vendored_metric_parser.rb +0 -9
- data/lib/new_relic/agent/aws_info.rb +0 -90
- 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 -179
- data/lib/new_relic/agent/cross_app_tracing.rb +0 -106
- data/lib/new_relic/agent/instrumentation/active_record_4.rb +0 -32
- data/lib/new_relic/agent/instrumentation/active_record_5.rb +0 -89
- data/lib/new_relic/agent/instrumentation/evented_subscriber.rb +0 -104
- data/lib/new_relic/agent/instrumentation/rails4/action_controller.rb +0 -29
- data/lib/new_relic/agent/instrumentation/rails5/action_controller.rb +0 -30
- data/lib/new_relic/agent/instrumentation/rails5/action_view.rb +0 -25
- data/lib/new_relic/agent/instrumentation/rubyprof.rb +0 -26
- data/lib/new_relic/agent/sampled_buffer.rb +0 -68
- data/lib/new_relic/agent/sized_buffer.rb +0 -23
- data/lib/new_relic/agent/stats_engine/metric_stats.rb +0 -188
- data/lib/new_relic/agent/synthetics_event_buffer.rb +0 -40
- data/lib/new_relic/agent/synthetics_monitor.rb +0 -50
- data/lib/new_relic/agent/traced_method_stack.rb +0 -109
- data/lib/new_relic/agent/transaction/attributes.rb +0 -155
- 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 -141
- data/lib/new_relic/agent/transaction_state.rb +0 -155
- data/lib/new_relic/agent/transaction_timings.rb +0 -57
- data/lib/new_relic/merbtasks.rb +0 -10
- data/lib/new_relic/metrics.rb +0 -13
- data/lib/new_relic/rack/developer_mode.rb +0 -321
- data/lib/new_relic/rack/developer_mode/segment_summary.rb +0 -56
- data/lib/tasks/versions.html.erb +0 -28
- data/lib/tasks/versions.postface.html +0 -8
- data/lib/tasks/versions.preface.html +0 -9
- data/lib/tasks/versions.rake +0 -65
- data/lib/tasks/versions.txt.erb +0 -14
- 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 -111
- data/test/environments/norails/Gemfile +0 -19
- data/test/environments/norails/Rakefile +0 -9
- data/test/environments/rails21/Gemfile +0 -23
- 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 -24
- 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 -12
- 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 -26
- data/test/environments/rails32/config/environment.rb +0 -6
- data/test/environments/rails32/db/schema.rb +0 -5
- data/test/environments/rails40/Gemfile +0 -26
- 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 -26
- 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 -27
- 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/environments/rails50/Gemfile +0 -23
- data/test/environments/rails50/Rakefile +0 -11
- data/test/environments/rails50/config/application.rb +0 -18
- data/test/environments/rails50/config/boot.rb +0 -10
- data/test/environments/rails50/config/database.yml +0 -26
- data/test/environments/rails50/config/environment.rb +0 -6
- data/test/environments/rails50/db/schema.rb +0 -5
- data/test/fixtures/cross_agent_tests/README.md +0 -34
- data/test/fixtures/cross_agent_tests/attribute_configuration.json +0 -384
- data/test/fixtures/cross_agent_tests/aws.json +0 -312
- data/test/fixtures/cross_agent_tests/cat/README.md +0 -28
- data/test/fixtures/cross_agent_tests/cat/cat_map.json +0 -595
- data/test/fixtures/cross_agent_tests/cat/path_hashing.json +0 -51
- data/test/fixtures/cross_agent_tests/cat_map.json +0 -597
- data/test/fixtures/cross_agent_tests/data_transport/data_transport.json +0 -1441
- data/test/fixtures/cross_agent_tests/data_transport/data_transport.md +0 -35
- data/test/fixtures/cross_agent_tests/datastores/README.md +0 -16
- data/test/fixtures/cross_agent_tests/datastores/datastore_api.json +0 -443
- data/test/fixtures/cross_agent_tests/datastores/datastore_instances.json +0 -73
- 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 -75
- 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/invalid-characters.txt +0 -9
- data/test/fixtures/cross_agent_tests/docker_container_id/invalid-length.txt +0 -9
- 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 -195
- 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 -28
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/Xpack_Xcore_2logical.txt +0 -43
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/malformed_file.txt +0 -3
- 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 -91
- 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 -36
- data/test/fixtures/cross_agent_tests/sql_obfuscation/sql_obfuscation.json +0 -619
- 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 -389
- 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/fixtures/cross_agent_tests/utilization/README.md +0 -13
- data/test/fixtures/cross_agent_tests/utilization/utilization_json.json +0 -132
- data/test/helpers/exceptions.rb +0 -16
- data/test/helpers/file_searching.rb +0 -28
- data/test/helpers/logging.rb +0 -37
- data/test/helpers/minitest.rb +0 -50
- data/test/helpers/misc.rb +0 -87
- data/test/helpers/mongo_metric_builder.rb +0 -34
- data/test/helpers/transaction_sample.rb +0 -44
- 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.rb +0 -32
- data/test/multiverse/lib/multiverse/color.rb +0 -23
- data/test/multiverse/lib/multiverse/envfile.rb +0 -66
- data/test/multiverse/lib/multiverse/output_collector.rb +0 -82
- data/test/multiverse/lib/multiverse/runner.rb +0 -118
- data/test/multiverse/lib/multiverse/shell_utils.rb +0 -27
- data/test/multiverse/lib/multiverse/suite.rb +0 -536
- data/test/multiverse/script/runner +0 -5
- data/test/multiverse/suites/active_record/.gitignore +0 -1
- data/test/multiverse/suites/active_record/Envfile +0 -60
- data/test/multiverse/suites/active_record/Rakefile +0 -9
- data/test/multiverse/suites/active_record/active_record_test.rb +0 -618
- data/test/multiverse/suites/active_record/app/models/models.rb +0 -34
- 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 -20
- 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/active_record/db/migrate/20150413011200_add_timestamps_to_orders.rb +0 -16
- data/test/multiverse/suites/active_record/db/migrate/20150414084400_create_groups.rb +0 -21
- data/test/multiverse/suites/activemerchant/Envfile +0 -26
- data/test/multiverse/suites/activemerchant/activemerchant_test.rb +0 -62
- data/test/multiverse/suites/agent_only/Envfile +0 -5
- data/test/multiverse/suites/agent_only/agent_attributes_test.rb +0 -351
- 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 -57
- 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 -82
- data/test/multiverse/suites/agent_only/custom_queue_time_test.rb +0 -60
- data/test/multiverse/suites/agent_only/encoding_handling_test.rb +0 -122
- data/test/multiverse/suites/agent_only/error_events_test.rb +0 -98
- data/test/multiverse/suites/agent_only/exclusive_time_test.rb +0 -176
- data/test/multiverse/suites/agent_only/harvest_timestamps_test.rb +0 -61
- 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 -89
- 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/public_api_when_disabled.rb +0 -57
- data/test/multiverse/suites/agent_only/script/symbol_env.rb +0 -10
- data/test/multiverse/suites/agent_only/script/warnings.rb +0 -15
- 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 -21
- data/test/multiverse/suites/agent_only/start_up_test.rb +0 -107
- 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 -137
- data/test/multiverse/suites/agent_only/transaction_events_test.rb +0 -31
- data/test/multiverse/suites/agent_only/transaction_ignoring_test.rb +0 -42
- data/test/multiverse/suites/agent_only/utilization_data_collection_test.rb +0 -105
- data/test/multiverse/suites/agent_only/xray_sessions_test.rb +0 -196
- 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 -23
- data/test/multiverse/suites/capistrano/config/deploy.rb +0 -14
- data/test/multiverse/suites/capistrano/config/deploy/production.rb +0 -9
- data/test/multiverse/suites/capistrano/config/newrelic.yml +0 -21
- data/test/multiverse/suites/capistrano/deployment_test.rb +0 -51
- 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 -27
- data/test/multiverse/suites/curb/config/newrelic.yml +0 -18
- data/test/multiverse/suites/curb/curb_test.rb +0 -212
- data/test/multiverse/suites/datamapper/Envfile +0 -36
- data/test/multiverse/suites/datamapper/config/newrelic.yml +0 -20
- data/test/multiverse/suites/datamapper/datamapper_test.rb +0 -429
- 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 -110
- data/test/multiverse/suites/delayed_job/Envfile +0 -101
- data/test/multiverse/suites/delayed_job/before_suite.rb +0 -43
- data/test/multiverse/suites/delayed_job/config/newrelic.yml +0 -18
- data/test/multiverse/suites/delayed_job/delayed_job_instrumentation_test.rb +0 -106
- 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 -18
- 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 -9
- data/test/multiverse/suites/grape/config/newrelic.yml +0 -19
- data/test/multiverse/suites/grape/grape_test.rb +0 -219
- data/test/multiverse/suites/grape/grape_test_api.rb +0 -64
- data/test/multiverse/suites/grape/grape_versioning_test.rb +0 -118
- data/test/multiverse/suites/grape/grape_versioning_test_api.rb +0 -130
- 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 -15
- data/test/multiverse/suites/httpclient/config/newrelic.yml +0 -18
- data/test/multiverse/suites/httpclient/httpclient_test.rb +0 -75
- data/test/multiverse/suites/httprb/Envfile +0 -21
- data/test/multiverse/suites/httprb/config/newrelic.yml +0 -18
- data/test/multiverse/suites/httprb/httprb_test.rb +0 -78
- data/test/multiverse/suites/json/Envfile +0 -22
- 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 -3
- 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 -36
- data/test/multiverse/suites/memcached/dalli_test.rb +0 -163
- data/test/multiverse/suites/memcached/memcache_client_test.rb +0 -25
- data/test/multiverse/suites/memcached/memcache_test_cases.rb +0 -315
- data/test/multiverse/suites/memcached/memcached_test.rb +0 -179
- data/test/multiverse/suites/mongo/Envfile +0 -74
- data/test/multiverse/suites/mongo/config/newrelic.yml +0 -18
- data/test/multiverse/suites/mongo/helpers/mongo_operation_tests.rb +0 -551
- 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/mongo2_instrumentation_test.rb +0 -493
- data/test/multiverse/suites/mongo/mongo_connection_test.rb +0 -40
- data/test/multiverse/suites/mongo/mongo_instrumentation_test.rb +0 -58
- data/test/multiverse/suites/mongo/mongo_unsupported_version_test.rb +0 -72
- data/test/multiverse/suites/net_http/Envfile +0 -6
- data/test/multiverse/suites/net_http/config/newrelic.yml +0 -18
- data/test/multiverse/suites/net_http/net_http_test.rb +0 -115
- data/test/multiverse/suites/padrino/Envfile +0 -19
- data/test/multiverse/suites/padrino/config/newrelic.yml +0 -22
- data/test/multiverse/suites/padrino/padrino_test.rb +0 -52
- data/test/multiverse/suites/rack/Envfile +0 -64
- data/test/multiverse/suites/rack/before_suite.rb +0 -12
- data/test/multiverse/suites/rack/builder_map_test.rb +0 -128
- data/test/multiverse/suites/rack/config/newrelic.yml +0 -18
- data/test/multiverse/suites/rack/example_app.rb +0 -119
- data/test/multiverse/suites/rack/http_response_code_test.rb +0 -49
- data/test/multiverse/suites/rack/nested_non_rack_app_test.rb +0 -66
- data/test/multiverse/suites/rack/puma_rack_builder_test.rb +0 -84
- data/test/multiverse/suites/rack/rack_auto_instrumentation_test.rb +0 -151
- data/test/multiverse/suites/rack/rack_cascade_test.rb +0 -44
- data/test/multiverse/suites/rack/rack_env_mutation_test.rb +0 -52
- 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/response_content_type_test.rb +0 -49
- data/test/multiverse/suites/rack/url_map_test.rb +0 -155
- data/test/multiverse/suites/rails/Envfile +0 -61
- data/test/multiverse/suites/rails/action_cable_test.rb +0 -81
- data/test/multiverse/suites/rails/action_controller_live_rum_test.rb +0 -39
- data/test/multiverse/suites/rails/activejob_test.rb +0 -151
- data/test/multiverse/suites/rails/app.rb +0 -44
- 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/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 -346
- data/test/multiverse/suites/rails/gc_instrumentation_test.rb +0 -73
- 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 -328
- 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 -99
- 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/rake/Envfile +0 -43
- data/test/multiverse/suites/rake/Rakefile +0 -54
- data/test/multiverse/suites/rake/config/newrelic.yml +0 -18
- data/test/multiverse/suites/rake/multitask_test.rb +0 -40
- data/test/multiverse/suites/rake/rake_test.rb +0 -209
- data/test/multiverse/suites/rake/rake_test_helper.rb +0 -66
- data/test/multiverse/suites/rake/unsupported_rake_test.rb +0 -19
- data/test/multiverse/suites/redis/Envfile +0 -23
- data/test/multiverse/suites/redis/config/newrelic.yml +0 -19
- data/test/multiverse/suites/redis/redis_instrumentation_test.rb +0 -331
- data/test/multiverse/suites/redis/redis_unsupported_version_test.rb +0 -20
- data/test/multiverse/suites/resque/Envfile +0 -9
- 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 -159
- data/test/multiverse/suites/resque/resque_marshalling_test.rb +0 -61
- data/test/multiverse/suites/sequel/Envfile +0 -41
- data/test/multiverse/suites/sequel/config/newrelic.yml +0 -18
- data/test/multiverse/suites/sequel/database.rb +0 -54
- 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 -43
- 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 -220
- data/test/multiverse/suites/sidekiq/sidekiq_server.rb +0 -35
- data/test/multiverse/suites/sidekiq/test_model.rb +0 -12
- data/test/multiverse/suites/sidekiq/test_worker.rb +0 -71
- data/test/multiverse/suites/sinatra/Envfile +0 -27
- data/test/multiverse/suites/sinatra/config/newrelic.yml +0 -21
- data/test/multiverse/suites/sinatra/ignoring_test.rb +0 -226
- data/test/multiverse/suites/sinatra/nested_middleware_test.rb +0 -47
- data/test/multiverse/suites/sinatra/sinatra_classic_test.rb +0 -103
- data/test/multiverse/suites/sinatra/sinatra_error_tracing_test.rb +0 -48
- data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +0 -102
- data/test/multiverse/suites/sinatra/sinatra_modular_test.rb +0 -93
- data/test/multiverse/suites/sinatra/sinatra_parameter_capture_test.rb +0 -82
- data/test/multiverse/suites/sinatra/sinatra_routes_test.rb +0 -49
- data/test/multiverse/suites/sinatra/sinatra_test_cases.rb +0 -226
- data/test/multiverse/suites/typhoeus/Envfile +0 -68
- data/test/multiverse/suites/typhoeus/config/newrelic.yml +0 -18
- data/test/multiverse/suites/typhoeus/typhoeus_test.rb +0 -145
- data/test/multiverse/suites/yajl/Envfile +0 -20
- data/test/multiverse/suites/yajl/config/newrelic.yml +0 -21
- data/test/multiverse/suites/yajl/yajl_test.rb +0 -16
- 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 -186
- data/test/new_relic/agent/agent/start_worker_thread_test.rb +0 -74
- data/test/new_relic/agent/agent_logger_test.rb +0 -389
- data/test/new_relic/agent/agent_test.rb +0 -710
- 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/api_tests/datastore_api_test.rb +0 -64
- data/test/new_relic/agent/attribute_filter_test.rb +0 -218
- data/test/new_relic/agent/attribute_processing_test.rb +0 -164
- data/test/new_relic/agent/audit_logger_test.rb +0 -208
- data/test/new_relic/agent/autostart_test.rb +0 -79
- data/test/new_relic/agent/aws_info_test.rb +0 -76
- data/test/new_relic/agent/busy_calculator_test.rb +0 -96
- 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 -216
- 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 -229
- 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 -92
- data/test/new_relic/agent/configuration/manager_test.rb +0 -455
- data/test/new_relic/agent/configuration/manual_source_test.rb +0 -18
- data/test/new_relic/agent/configuration/orphan_configuration_test.rb +0 -91
- data/test/new_relic/agent/configuration/server_source_test.rb +0 -202
- data/test/new_relic/agent/configuration/yaml_source_test.rb +0 -117
- data/test/new_relic/agent/cross_app_monitor_test.rb +0 -248
- data/test/new_relic/agent/custom_event_aggregator_test.rb +0 -127
- data/test/new_relic/agent/database/postgres_explain_obfuscator_test.rb +0 -34
- data/test/new_relic/agent/database/sql_obfuscation_test.rb +0 -52
- data/test/new_relic/agent/database_test.rb +0 -482
- data/test/new_relic/agent/datastores/metric_helper_test.rb +0 -203
- data/test/new_relic/agent/datastores/mongo/event_formatter_test.rb +0 -175
- data/test/new_relic/agent/datastores/mongo/metric_translator_test.rb +0 -270
- data/test/new_relic/agent/datastores/mongo/obfuscator_test.rb +0 -99
- data/test/new_relic/agent/datastores/mongo/statement_formatter_test.rb +0 -72
- data/test/new_relic/agent/datastores/redis_test.rb +0 -126
- data/test/new_relic/agent/datastores_test.rb +0 -202
- data/test/new_relic/agent/deprecator_test.rb +0 -52
- data/test/new_relic/agent/encoding_normalizer_test.rb +0 -69
- data/test/new_relic/agent/error_collector_test.rb +0 -407
- data/test/new_relic/agent/error_event_aggregator_test.rb +0 -237
- data/test/new_relic/agent/error_trace_aggregator_test.rb +0 -298
- data/test/new_relic/agent/event_aggregator_test.rb +0 -178
- data/test/new_relic/agent/event_buffer_test_cases.rb +0 -168
- 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/hostname_test.rb +0 -121
- 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_cable_subscriber_test.rb +0 -124
- 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 -249
- data/test/new_relic/agent/instrumentation/active_job_test.rb +0 -20
- data/test/new_relic/agent/instrumentation/active_record_helper_test.rb +0 -66
- data/test/new_relic/agent/instrumentation/active_record_subscriber_test.rb +0 -210
- data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +0 -328
- data/test/new_relic/agent/instrumentation/delayed_job_instrumentation_test.rb +0 -23
- data/test/new_relic/agent/instrumentation/instance_identification_test.rb +0 -169
- data/test/new_relic/agent/instrumentation/instrumentation_test.rb +0 -14
- data/test/new_relic/agent/instrumentation/middleware_proxy_test.rb +0 -256
- data/test/new_relic/agent/instrumentation/middleware_tracing_test.rb +0 -49
- data/test/new_relic/agent/instrumentation/mongodb_command_subscriber_test.rb +0 -112
- data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +0 -41
- data/test/new_relic/agent/instrumentation/queue_time_test.rb +0 -103
- data/test/new_relic/agent/instrumentation/rack_test.rb +0 -44
- data/test/new_relic/agent/instrumentation/sequel_helper_test.rb +0 -36
- data/test/new_relic/agent/instrumentation/sinatra/transaction_namer_test.rb +0 -62
- data/test/new_relic/agent/instrumentation/sinatra_test.rb +0 -80
- data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +0 -186
- data/test/new_relic/agent/javascript_instrumentor_test.rb +0 -340
- data/test/new_relic/agent/memory_logger_test.rb +0 -85
- 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 -112
- data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +0 -215
- data/test/new_relic/agent/method_tracer_test.rb +0 -480
- data/test/new_relic/agent/method_visibility_test.rb +0 -90
- data/test/new_relic/agent/mock_scope_listener.rb +0 -30
- data/test/new_relic/agent/new_relic_service/json_marshaller_test.rb +0 -27
- data/test/new_relic/agent/new_relic_service_test.rb +0 -972
- 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/payload_metric_mapping_test.rb +0 -74
- data/test/new_relic/agent/pipe_channel_manager_test.rb +0 -316
- data/test/new_relic/agent/pipe_service_test.rb +0 -151
- data/test/new_relic/agent/rpm_agent_test.rb +0 -91
- data/test/new_relic/agent/rules_engine_test.rb +0 -136
- data/test/new_relic/agent/sampled_buffer_test.rb +0 -142
- 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 -79
- data/test/new_relic/agent/samplers/memory_sampler_test.rb +0 -66
- data/test/new_relic/agent/samplers/vm_sampler_test.rb +0 -349
- data/test/new_relic/agent/sized_buffer_test.rb +0 -29
- data/test/new_relic/agent/sql_sampler_test.rb +0 -463
- data/test/new_relic/agent/stats_engine/gc_profiler_test.rb +0 -176
- data/test/new_relic/agent/stats_engine/metric_stats_test.rb +0 -328
- data/test/new_relic/agent/stats_engine/stats_hash_test.rb +0 -195
- data/test/new_relic/agent/stats_engine_test.rb +0 -32
- data/test/new_relic/agent/stats_test.rb +0 -187
- data/test/new_relic/agent/synthetics_event_aggregator_test.rb +0 -180
- 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 -133
- 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 -603
- data/test/new_relic/agent/threading/fake_thread.rb +0 -43
- data/test/new_relic/agent/threading/thread_profile_test.rb +0 -271
- 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/abstract_segment_test.rb +0 -103
- data/test/new_relic/agent/transaction/attributes_test.rb +0 -268
- data/test/new_relic/agent/transaction/datastore_segment_test.rb +0 -336
- data/test/new_relic/agent/transaction/developer_mode_sample_buffer_test.rb +0 -75
- data/test/new_relic/agent/transaction/external_request_segment_test.rb +0 -330
- data/test/new_relic/agent/transaction/request_attributes_test.rb +0 -84
- data/test/new_relic/agent/transaction/segment_test.rb +0 -77
- 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/tracing_test.rb +0 -176
- data/test/new_relic/agent/transaction/xray_sample_buffer_test.rb +0 -71
- data/test/new_relic/agent/transaction_error_primitive_test.rb +0 -117
- data/test/new_relic/agent/transaction_event_aggregator_test.rb +0 -211
- data/test/new_relic/agent/transaction_event_primitive_test.rb +0 -195
- data/test/new_relic/agent/transaction_event_recorder_test.rb +0 -80
- 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 -860
- data/test/new_relic/agent/transaction_state_test.rb +0 -122
- data/test/new_relic/agent/transaction_test.rb +0 -1476
- data/test/new_relic/agent/transaction_timings_test.rb +0 -91
- data/test/new_relic/agent/utilization_data_test.rb +0 -258
- data/test/new_relic/agent/vm/monotonic_gc_profiler_test.rb +0 -42
- data/test/new_relic/agent/vm/mri_vm_test.rb +0 -40
- 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 -461
- data/test/new_relic/cli/commands/deployments_test.rb +0 -136
- data/test/new_relic/cli/commands/install_test.rb +0 -27
- data/test/new_relic/coerce_test.rb +0 -93
- data/test/new_relic/collection_helper_test.rb +0 -152
- data/test/new_relic/control/class_methods_test.rb +0 -52
- 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 -41
- data/test/new_relic/control_test.rb +0 -169
- data/test/new_relic/data_container_tests.rb +0 -87
- data/test/new_relic/dependency_detection_test.rb +0 -155
- data/test/new_relic/dispatcher_test.rb +0 -60
- 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 -390
- 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 -639
- data/test/new_relic/language_support_test.rb +0 -98
- data/test/new_relic/latest_changes_test.rb +0 -34
- data/test/new_relic/license_test.rb +0 -125
- 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 -183
- data/test/new_relic/metric_data_test.rb +0 -144
- data/test/new_relic/metric_parser/metric_parser_test.rb +0 -17
- data/test/new_relic/metric_spec_test.rb +0 -144
- data/test/new_relic/multiverse_helpers.rb +0 -289
- data/test/new_relic/noticed_error_test.rb +0 -267
- 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 -195
- 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 -96
- data/test/new_relic/transaction_ignoring_test_cases.rb +0 -102
- data/test/nullverse/default_source_require_test.rb +0 -21
- data/test/nullverse/nullverse_helper.rb +0 -10
- data/test/performance/README.md +0 -175
- data/test/performance/lib/performance.rb +0 -38
- 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 -56
- 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 -31
- 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/script/baselines +0 -102
- data/test/performance/script/mega-runner +0 -37
- data/test/performance/script/runner +0 -131
- data/test/performance/suites/active_record.rb +0 -26
- data/test/performance/suites/active_record_subscriber.rb +0 -100
- data/test/performance/suites/agent_attributes.rb +0 -62
- data/test/performance/suites/config.rb +0 -35
- data/test/performance/suites/datastores.rb +0 -59
- data/test/performance/suites/error_collector.rb +0 -28
- data/test/performance/suites/external_segment.rb +0 -82
- data/test/performance/suites/marshalling.rb +0 -148
- data/test/performance/suites/queue_time.rb +0 -21
- data/test/performance/suites/rack_middleware.rb +0 -136
- data/test/performance/suites/redis.rb +0 -45
- data/test/performance/suites/rules_engine.rb +0 -35
- data/test/performance/suites/rum_autoinsertion.rb +0 -75
- data/test/performance/suites/segment_terms_rule.rb +0 -27
- data/test/performance/suites/sql_obfuscation.rb +0 -50
- data/test/performance/suites/startup.rb +0 -12
- data/test/performance/suites/stats_hash.rb +0 -31
- data/test/performance/suites/thread_profiling.rb +0 -116
- data/test/performance/suites/trace_execution_scoped.rb +0 -31
- data/test/performance/suites/transaction_tracing.rb +0 -106
- data/test/script/before_install/gemstash_mirror.sh +0 -10
- data/test/script/before_script/install_mongodb.sh +0 -12
- data/test/script/ci.sh +0 -15
- data/test/script/external_server.rb +0 -31
- data/test/script/path_hash.rb +0 -49
- data/test/test_helper.rb +0 -59
- data/ui/helpers/developer_mode_helper.rb +0 -325
- data/ui/helpers/google_pie_chart.rb +0 -54
- 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/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.rb +0 -70
- 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 -56
- 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 -33
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/nested.rb +0 -23
- 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
@@ -1,16 +0,0 @@
|
|
1
|
-
# PostgreSQL explain plan obfuscation tests
|
2
|
-
|
3
|
-
These tests show how explain plans for PostgreSQL should be obfuscated when
|
4
|
-
SQL obfuscation is enabled. Obfuscation of explain plans for PostgreSQL is
|
5
|
-
necessary because they can include portions of the original query that may
|
6
|
-
contain sensitive data.
|
7
|
-
|
8
|
-
Each test case consists of a set of files with the following extensions:
|
9
|
-
|
10
|
-
* `.query.txt` - the original SQL query that is being explained
|
11
|
-
* `.explain.txt` - the raw un-obfuscated output from running `EXPLAIN <query>`
|
12
|
-
* `.colon_obfuscated.txt` - the desired obfuscated explain output if using the
|
13
|
-
default, more aggressive obfuscation strategy described [here](https://newrelic.atlassian.net/wiki/display/eng/Obfuscating+PostgreSQL+Explain+plans).
|
14
|
-
* `.obfuscated.txt` - the desired obfuscated explain output if using a more
|
15
|
-
accurate, less aggressive obfuscation strategy detailed in this
|
16
|
-
[Jive thread](https://newrelic.jiveon.com/thread/1851).
|
@@ -1 +0,0 @@
|
|
1
|
-
SELECT * FROM blogs WHERE blogs.id=1234 AND blogs.title='sensitive text'
|
@@ -1 +0,0 @@
|
|
1
|
-
explain select * from explain_plan_test_4 where j = 'abcd' and k = current_date
|
@@ -1 +0,0 @@
|
|
1
|
-
explain select * from explain_plan_test_4 where k = date '2001-09-28'"
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.query.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
select * from blogs where title = E'\x08\x0c\n\r\t'
|
@@ -1 +0,0 @@
|
|
1
|
-
explain select * from explain_plan_test_1 where c = 'three''three'
|
@@ -1 +0,0 @@
|
|
1
|
-
explain select * from explain_plan_test_1 where a = 1e10
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.explain.txt
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
Hash Join (cost=12.93..26.33 rows=130 width=1113)
|
2
|
-
Hash Cond: (pg_catalog.concat(blogs.title, '-suffix') = (posts.title)::text)
|
3
|
-
-> Seq Scan on blogs (cost=0.00..11.40 rows=140 width=540)
|
4
|
-
-> Hash (cost=11.30..11.30 rows=130 width=573)
|
5
|
-
-> Seq Scan on posts (cost=0.00..11.30 rows=130 width=573)
|
@@ -1,5 +0,0 @@
|
|
1
|
-
Hash Join (cost=12.93..26.33 rows=130 width=1113)
|
2
|
-
Hash Cond: (pg_catalog.concat(blogs.title, ?) = (posts.title)::text)
|
3
|
-
-> Seq Scan on blogs (cost=0.00..11.40 rows=140 width=540)
|
4
|
-
-> Hash (cost=11.30..11.30 rows=130 width=573)
|
5
|
-
-> Seq Scan on posts (cost=0.00..11.30 rows=130 width=573)
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.query.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
SELECT * FROM blogs JOIN posts ON posts.title=CONCAT(blogs.title, '-suffix')
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.query.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
explain select * from "explain_plan_test'_3" where i = '"abcd"'
|
@@ -1 +0,0 @@
|
|
1
|
-
explain insert into explain_plan_test_1 select * from explain_plan_test_2 where explain_plan_test_2.d not in (select a from explain_plan_test_1)
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.query.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
SELECT * FROM blogs WHERE blogs.id=1234
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.query.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
SELECT * FROM blogs WHERE blogs.title='][^|)/('
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.query.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
SELECT * FROM blogs WHERE blogs.id=15402 AND blogs.title='logs'
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.query.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
EXPLAIN SELECT * FROM blogs WHERE blogs.title=E'foo\'bar'
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.query.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
SELECT * FROM blogs WHERE blogs.title=E'\b\f\n\r\t'
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.query.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
SELECT * FROM blogs WHERE blogs.title=E'\1\7\9'
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.query.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
SELECT * FROM blogs WHERE blogs.title='foo\'bar'
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.query.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
SELECT * FROM blogs WHERE blogs.title=E'\x55'
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.query.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
SELECT * FROM blogs WHERE blogs.title=E'd\u0061t\U00000061'
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.query.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
SELECT * FROM blogs WHERE blogs.title=U&'d\0061t\+000061'
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.query.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
SELECT * FROM blogs WHERE blogs.title=U&'\0441\043B\043E\043D'
|
data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.query.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
SELECT * FROM blogs WHERE blogs.title=U&'d!0061t!+000061' UESCAPE '!'
|
@@ -1,14 +0,0 @@
|
|
1
|
-
processor : 0
|
2
|
-
model name : Intel(R) Pentium(R) 4 CPU 2.80GHz
|
3
|
-
cache size : 1024 KB
|
4
|
-
physical id : 0
|
5
|
-
siblings : 2
|
6
|
-
core id : 0
|
7
|
-
cpu cores : 1
|
8
|
-
processor : 1
|
9
|
-
model name : Intel(R) Pentium(R) 4 CPU 2.80GHz
|
10
|
-
cache size : 1024 KB
|
11
|
-
physical id : 0
|
12
|
-
siblings : 2
|
13
|
-
core id : 0
|
14
|
-
cpu cores : 1
|
@@ -1,14 +0,0 @@
|
|
1
|
-
processor : 0
|
2
|
-
model name : Intel(R) Pentium(R) D CPU 3.00GHz
|
3
|
-
cache size : 2048 KB
|
4
|
-
physical id : 0
|
5
|
-
siblings : 2
|
6
|
-
core id : 0
|
7
|
-
cpu cores : 2
|
8
|
-
processor : 1
|
9
|
-
model name : Intel(R) Pentium(R) D CPU 3.00GHz
|
10
|
-
cache size : 2048 KB
|
11
|
-
physical id : 0
|
12
|
-
siblings : 2
|
13
|
-
core id : 1
|
14
|
-
cpu cores : 2
|
@@ -1,28 +0,0 @@
|
|
1
|
-
processor : 0
|
2
|
-
model name : Intel(R) Xeon(R) CPU E5410 @ 2.33GHz
|
3
|
-
cache size : 6144 KB
|
4
|
-
physical id : 0
|
5
|
-
siblings : 4
|
6
|
-
core id : 0
|
7
|
-
cpu cores : 4
|
8
|
-
processor : 1
|
9
|
-
model name : Intel(R) Xeon(R) CPU E5410 @ 2.33GHz
|
10
|
-
cache size : 6144 KB
|
11
|
-
physical id : 0
|
12
|
-
siblings : 4
|
13
|
-
core id : 1
|
14
|
-
cpu cores : 4
|
15
|
-
processor : 2
|
16
|
-
model name : Intel(R) Xeon(R) CPU E5410 @ 2.33GHz
|
17
|
-
cache size : 6144 KB
|
18
|
-
physical id : 0
|
19
|
-
siblings : 4
|
20
|
-
core id : 2
|
21
|
-
cpu cores : 4
|
22
|
-
processor : 3
|
23
|
-
model name : Intel(R) Xeon(R) CPU E5410 @ 2.33GHz
|
24
|
-
cache size : 6144 KB
|
25
|
-
physical id : 0
|
26
|
-
siblings : 4
|
27
|
-
core id : 3
|
28
|
-
cpu cores : 4
|
@@ -1,575 +0,0 @@
|
|
1
|
-
processor : 0
|
2
|
-
vendor_id : GenuineIntel
|
3
|
-
cpu family : 6
|
4
|
-
model : 44
|
5
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
6
|
-
stepping : 2
|
7
|
-
cpu MHz : 2660.090
|
8
|
-
cache size : 12288 KB
|
9
|
-
physical id : 1
|
10
|
-
siblings : 12
|
11
|
-
core id : 0
|
12
|
-
cpu cores : 6
|
13
|
-
apicid : 32
|
14
|
-
fpu : yes
|
15
|
-
fpu_exception : yes
|
16
|
-
cpuid level : 11
|
17
|
-
wp : yes
|
18
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
19
|
-
bogomips : 5320.18
|
20
|
-
clflush size : 64
|
21
|
-
cache_alignment : 64
|
22
|
-
address sizes : 40 bits physical, 48 bits virtual
|
23
|
-
power management: [8]
|
24
|
-
|
25
|
-
processor : 1
|
26
|
-
vendor_id : GenuineIntel
|
27
|
-
cpu family : 6
|
28
|
-
model : 44
|
29
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
30
|
-
stepping : 2
|
31
|
-
cpu MHz : 2660.090
|
32
|
-
cache size : 12288 KB
|
33
|
-
physical id : 0
|
34
|
-
siblings : 12
|
35
|
-
core id : 0
|
36
|
-
cpu cores : 6
|
37
|
-
apicid : 0
|
38
|
-
fpu : yes
|
39
|
-
fpu_exception : yes
|
40
|
-
cpuid level : 11
|
41
|
-
wp : yes
|
42
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
43
|
-
bogomips : 5320.05
|
44
|
-
clflush size : 64
|
45
|
-
cache_alignment : 64
|
46
|
-
address sizes : 40 bits physical, 48 bits virtual
|
47
|
-
power management: [8]
|
48
|
-
|
49
|
-
processor : 2
|
50
|
-
vendor_id : GenuineIntel
|
51
|
-
cpu family : 6
|
52
|
-
model : 44
|
53
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
54
|
-
stepping : 2
|
55
|
-
cpu MHz : 2660.090
|
56
|
-
cache size : 12288 KB
|
57
|
-
physical id : 1
|
58
|
-
siblings : 12
|
59
|
-
core id : 1
|
60
|
-
cpu cores : 6
|
61
|
-
apicid : 34
|
62
|
-
fpu : yes
|
63
|
-
fpu_exception : yes
|
64
|
-
cpuid level : 11
|
65
|
-
wp : yes
|
66
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
67
|
-
bogomips : 5320.02
|
68
|
-
clflush size : 64
|
69
|
-
cache_alignment : 64
|
70
|
-
address sizes : 40 bits physical, 48 bits virtual
|
71
|
-
power management: [8]
|
72
|
-
|
73
|
-
processor : 3
|
74
|
-
vendor_id : GenuineIntel
|
75
|
-
cpu family : 6
|
76
|
-
model : 44
|
77
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
78
|
-
stepping : 2
|
79
|
-
cpu MHz : 2660.090
|
80
|
-
cache size : 12288 KB
|
81
|
-
physical id : 0
|
82
|
-
siblings : 12
|
83
|
-
core id : 1
|
84
|
-
cpu cores : 6
|
85
|
-
apicid : 2
|
86
|
-
fpu : yes
|
87
|
-
fpu_exception : yes
|
88
|
-
cpuid level : 11
|
89
|
-
wp : yes
|
90
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
91
|
-
bogomips : 5320.05
|
92
|
-
clflush size : 64
|
93
|
-
cache_alignment : 64
|
94
|
-
address sizes : 40 bits physical, 48 bits virtual
|
95
|
-
power management: [8]
|
96
|
-
|
97
|
-
processor : 4
|
98
|
-
vendor_id : GenuineIntel
|
99
|
-
cpu family : 6
|
100
|
-
model : 44
|
101
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
102
|
-
stepping : 2
|
103
|
-
cpu MHz : 2660.090
|
104
|
-
cache size : 12288 KB
|
105
|
-
physical id : 1
|
106
|
-
siblings : 12
|
107
|
-
core id : 2
|
108
|
-
cpu cores : 6
|
109
|
-
apicid : 36
|
110
|
-
fpu : yes
|
111
|
-
fpu_exception : yes
|
112
|
-
cpuid level : 11
|
113
|
-
wp : yes
|
114
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
115
|
-
bogomips : 5319.95
|
116
|
-
clflush size : 64
|
117
|
-
cache_alignment : 64
|
118
|
-
address sizes : 40 bits physical, 48 bits virtual
|
119
|
-
power management: [8]
|
120
|
-
|
121
|
-
processor : 5
|
122
|
-
vendor_id : GenuineIntel
|
123
|
-
cpu family : 6
|
124
|
-
model : 44
|
125
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
126
|
-
stepping : 2
|
127
|
-
cpu MHz : 2660.090
|
128
|
-
cache size : 12288 KB
|
129
|
-
physical id : 0
|
130
|
-
siblings : 12
|
131
|
-
core id : 2
|
132
|
-
cpu cores : 6
|
133
|
-
apicid : 4
|
134
|
-
fpu : yes
|
135
|
-
fpu_exception : yes
|
136
|
-
cpuid level : 11
|
137
|
-
wp : yes
|
138
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
139
|
-
bogomips : 5320.06
|
140
|
-
clflush size : 64
|
141
|
-
cache_alignment : 64
|
142
|
-
address sizes : 40 bits physical, 48 bits virtual
|
143
|
-
power management: [8]
|
144
|
-
|
145
|
-
processor : 6
|
146
|
-
vendor_id : GenuineIntel
|
147
|
-
cpu family : 6
|
148
|
-
model : 44
|
149
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
150
|
-
stepping : 2
|
151
|
-
cpu MHz : 2660.090
|
152
|
-
cache size : 12288 KB
|
153
|
-
physical id : 1
|
154
|
-
siblings : 12
|
155
|
-
core id : 8
|
156
|
-
cpu cores : 6
|
157
|
-
apicid : 48
|
158
|
-
fpu : yes
|
159
|
-
fpu_exception : yes
|
160
|
-
cpuid level : 11
|
161
|
-
wp : yes
|
162
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
163
|
-
bogomips : 5320.02
|
164
|
-
clflush size : 64
|
165
|
-
cache_alignment : 64
|
166
|
-
address sizes : 40 bits physical, 48 bits virtual
|
167
|
-
power management: [8]
|
168
|
-
|
169
|
-
processor : 7
|
170
|
-
vendor_id : GenuineIntel
|
171
|
-
cpu family : 6
|
172
|
-
model : 44
|
173
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
174
|
-
stepping : 2
|
175
|
-
cpu MHz : 2660.090
|
176
|
-
cache size : 12288 KB
|
177
|
-
physical id : 0
|
178
|
-
siblings : 12
|
179
|
-
core id : 8
|
180
|
-
cpu cores : 6
|
181
|
-
apicid : 16
|
182
|
-
fpu : yes
|
183
|
-
fpu_exception : yes
|
184
|
-
cpuid level : 11
|
185
|
-
wp : yes
|
186
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
187
|
-
bogomips : 5319.98
|
188
|
-
clflush size : 64
|
189
|
-
cache_alignment : 64
|
190
|
-
address sizes : 40 bits physical, 48 bits virtual
|
191
|
-
power management: [8]
|
192
|
-
|
193
|
-
processor : 8
|
194
|
-
vendor_id : GenuineIntel
|
195
|
-
cpu family : 6
|
196
|
-
model : 44
|
197
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
198
|
-
stepping : 2
|
199
|
-
cpu MHz : 2660.090
|
200
|
-
cache size : 12288 KB
|
201
|
-
physical id : 1
|
202
|
-
siblings : 12
|
203
|
-
core id : 9
|
204
|
-
cpu cores : 6
|
205
|
-
apicid : 50
|
206
|
-
fpu : yes
|
207
|
-
fpu_exception : yes
|
208
|
-
cpuid level : 11
|
209
|
-
wp : yes
|
210
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
211
|
-
bogomips : 5320.02
|
212
|
-
clflush size : 64
|
213
|
-
cache_alignment : 64
|
214
|
-
address sizes : 40 bits physical, 48 bits virtual
|
215
|
-
power management: [8]
|
216
|
-
|
217
|
-
processor : 9
|
218
|
-
vendor_id : GenuineIntel
|
219
|
-
cpu family : 6
|
220
|
-
model : 44
|
221
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
222
|
-
stepping : 2
|
223
|
-
cpu MHz : 2660.090
|
224
|
-
cache size : 12288 KB
|
225
|
-
physical id : 0
|
226
|
-
siblings : 12
|
227
|
-
core id : 9
|
228
|
-
cpu cores : 6
|
229
|
-
apicid : 18
|
230
|
-
fpu : yes
|
231
|
-
fpu_exception : yes
|
232
|
-
cpuid level : 11
|
233
|
-
wp : yes
|
234
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
235
|
-
bogomips : 5319.99
|
236
|
-
clflush size : 64
|
237
|
-
cache_alignment : 64
|
238
|
-
address sizes : 40 bits physical, 48 bits virtual
|
239
|
-
power management: [8]
|
240
|
-
|
241
|
-
processor : 10
|
242
|
-
vendor_id : GenuineIntel
|
243
|
-
cpu family : 6
|
244
|
-
model : 44
|
245
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
246
|
-
stepping : 2
|
247
|
-
cpu MHz : 2660.090
|
248
|
-
cache size : 12288 KB
|
249
|
-
physical id : 1
|
250
|
-
siblings : 12
|
251
|
-
core id : 10
|
252
|
-
cpu cores : 6
|
253
|
-
apicid : 52
|
254
|
-
fpu : yes
|
255
|
-
fpu_exception : yes
|
256
|
-
cpuid level : 11
|
257
|
-
wp : yes
|
258
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
259
|
-
bogomips : 5320.02
|
260
|
-
clflush size : 64
|
261
|
-
cache_alignment : 64
|
262
|
-
address sizes : 40 bits physical, 48 bits virtual
|
263
|
-
power management: [8]
|
264
|
-
|
265
|
-
processor : 11
|
266
|
-
vendor_id : GenuineIntel
|
267
|
-
cpu family : 6
|
268
|
-
model : 44
|
269
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
270
|
-
stepping : 2
|
271
|
-
cpu MHz : 2660.090
|
272
|
-
cache size : 12288 KB
|
273
|
-
physical id : 0
|
274
|
-
siblings : 12
|
275
|
-
core id : 10
|
276
|
-
cpu cores : 6
|
277
|
-
apicid : 20
|
278
|
-
fpu : yes
|
279
|
-
fpu_exception : yes
|
280
|
-
cpuid level : 11
|
281
|
-
wp : yes
|
282
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
283
|
-
bogomips : 5320.02
|
284
|
-
clflush size : 64
|
285
|
-
cache_alignment : 64
|
286
|
-
address sizes : 40 bits physical, 48 bits virtual
|
287
|
-
power management: [8]
|
288
|
-
|
289
|
-
processor : 12
|
290
|
-
vendor_id : GenuineIntel
|
291
|
-
cpu family : 6
|
292
|
-
model : 44
|
293
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
294
|
-
stepping : 2
|
295
|
-
cpu MHz : 2660.090
|
296
|
-
cache size : 12288 KB
|
297
|
-
physical id : 1
|
298
|
-
siblings : 12
|
299
|
-
core id : 0
|
300
|
-
cpu cores : 6
|
301
|
-
apicid : 33
|
302
|
-
fpu : yes
|
303
|
-
fpu_exception : yes
|
304
|
-
cpuid level : 11
|
305
|
-
wp : yes
|
306
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
307
|
-
bogomips : 5319.94
|
308
|
-
clflush size : 64
|
309
|
-
cache_alignment : 64
|
310
|
-
address sizes : 40 bits physical, 48 bits virtual
|
311
|
-
power management: [8]
|
312
|
-
|
313
|
-
processor : 13
|
314
|
-
vendor_id : GenuineIntel
|
315
|
-
cpu family : 6
|
316
|
-
model : 44
|
317
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
318
|
-
stepping : 2
|
319
|
-
cpu MHz : 2660.090
|
320
|
-
cache size : 12288 KB
|
321
|
-
physical id : 0
|
322
|
-
siblings : 12
|
323
|
-
core id : 0
|
324
|
-
cpu cores : 6
|
325
|
-
apicid : 1
|
326
|
-
fpu : yes
|
327
|
-
fpu_exception : yes
|
328
|
-
cpuid level : 11
|
329
|
-
wp : yes
|
330
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
331
|
-
bogomips : 5320.05
|
332
|
-
clflush size : 64
|
333
|
-
cache_alignment : 64
|
334
|
-
address sizes : 40 bits physical, 48 bits virtual
|
335
|
-
power management: [8]
|
336
|
-
|
337
|
-
processor : 14
|
338
|
-
vendor_id : GenuineIntel
|
339
|
-
cpu family : 6
|
340
|
-
model : 44
|
341
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
342
|
-
stepping : 2
|
343
|
-
cpu MHz : 2660.090
|
344
|
-
cache size : 12288 KB
|
345
|
-
physical id : 1
|
346
|
-
siblings : 12
|
347
|
-
core id : 1
|
348
|
-
cpu cores : 6
|
349
|
-
apicid : 35
|
350
|
-
fpu : yes
|
351
|
-
fpu_exception : yes
|
352
|
-
cpuid level : 11
|
353
|
-
wp : yes
|
354
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
355
|
-
bogomips : 5320.02
|
356
|
-
clflush size : 64
|
357
|
-
cache_alignment : 64
|
358
|
-
address sizes : 40 bits physical, 48 bits virtual
|
359
|
-
power management: [8]
|
360
|
-
|
361
|
-
processor : 15
|
362
|
-
vendor_id : GenuineIntel
|
363
|
-
cpu family : 6
|
364
|
-
model : 44
|
365
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
366
|
-
stepping : 2
|
367
|
-
cpu MHz : 2660.090
|
368
|
-
cache size : 12288 KB
|
369
|
-
physical id : 0
|
370
|
-
siblings : 12
|
371
|
-
core id : 1
|
372
|
-
cpu cores : 6
|
373
|
-
apicid : 3
|
374
|
-
fpu : yes
|
375
|
-
fpu_exception : yes
|
376
|
-
cpuid level : 11
|
377
|
-
wp : yes
|
378
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
379
|
-
bogomips : 5320.05
|
380
|
-
clflush size : 64
|
381
|
-
cache_alignment : 64
|
382
|
-
address sizes : 40 bits physical, 48 bits virtual
|
383
|
-
power management: [8]
|
384
|
-
|
385
|
-
processor : 16
|
386
|
-
vendor_id : GenuineIntel
|
387
|
-
cpu family : 6
|
388
|
-
model : 44
|
389
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
390
|
-
stepping : 2
|
391
|
-
cpu MHz : 2660.090
|
392
|
-
cache size : 12288 KB
|
393
|
-
physical id : 1
|
394
|
-
siblings : 12
|
395
|
-
core id : 2
|
396
|
-
cpu cores : 6
|
397
|
-
apicid : 37
|
398
|
-
fpu : yes
|
399
|
-
fpu_exception : yes
|
400
|
-
cpuid level : 11
|
401
|
-
wp : yes
|
402
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
403
|
-
bogomips : 5320.02
|
404
|
-
clflush size : 64
|
405
|
-
cache_alignment : 64
|
406
|
-
address sizes : 40 bits physical, 48 bits virtual
|
407
|
-
power management: [8]
|
408
|
-
|
409
|
-
processor : 17
|
410
|
-
vendor_id : GenuineIntel
|
411
|
-
cpu family : 6
|
412
|
-
model : 44
|
413
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
414
|
-
stepping : 2
|
415
|
-
cpu MHz : 2660.090
|
416
|
-
cache size : 12288 KB
|
417
|
-
physical id : 0
|
418
|
-
siblings : 12
|
419
|
-
core id : 2
|
420
|
-
cpu cores : 6
|
421
|
-
apicid : 5
|
422
|
-
fpu : yes
|
423
|
-
fpu_exception : yes
|
424
|
-
cpuid level : 11
|
425
|
-
wp : yes
|
426
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
427
|
-
bogomips : 5320.05
|
428
|
-
clflush size : 64
|
429
|
-
cache_alignment : 64
|
430
|
-
address sizes : 40 bits physical, 48 bits virtual
|
431
|
-
power management: [8]
|
432
|
-
|
433
|
-
processor : 18
|
434
|
-
vendor_id : GenuineIntel
|
435
|
-
cpu family : 6
|
436
|
-
model : 44
|
437
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
438
|
-
stepping : 2
|
439
|
-
cpu MHz : 2660.090
|
440
|
-
cache size : 12288 KB
|
441
|
-
physical id : 1
|
442
|
-
siblings : 12
|
443
|
-
core id : 8
|
444
|
-
cpu cores : 6
|
445
|
-
apicid : 49
|
446
|
-
fpu : yes
|
447
|
-
fpu_exception : yes
|
448
|
-
cpuid level : 11
|
449
|
-
wp : yes
|
450
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
451
|
-
bogomips : 5330.86
|
452
|
-
clflush size : 64
|
453
|
-
cache_alignment : 64
|
454
|
-
address sizes : 40 bits physical, 48 bits virtual
|
455
|
-
power management: [8]
|
456
|
-
|
457
|
-
processor : 19
|
458
|
-
vendor_id : GenuineIntel
|
459
|
-
cpu family : 6
|
460
|
-
model : 44
|
461
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
462
|
-
stepping : 2
|
463
|
-
cpu MHz : 2660.090
|
464
|
-
cache size : 12288 KB
|
465
|
-
physical id : 0
|
466
|
-
siblings : 12
|
467
|
-
core id : 8
|
468
|
-
cpu cores : 6
|
469
|
-
apicid : 17
|
470
|
-
fpu : yes
|
471
|
-
fpu_exception : yes
|
472
|
-
cpuid level : 11
|
473
|
-
wp : yes
|
474
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
475
|
-
bogomips : 5320.05
|
476
|
-
clflush size : 64
|
477
|
-
cache_alignment : 64
|
478
|
-
address sizes : 40 bits physical, 48 bits virtual
|
479
|
-
power management: [8]
|
480
|
-
|
481
|
-
processor : 20
|
482
|
-
vendor_id : GenuineIntel
|
483
|
-
cpu family : 6
|
484
|
-
model : 44
|
485
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
486
|
-
stepping : 2
|
487
|
-
cpu MHz : 2660.090
|
488
|
-
cache size : 12288 KB
|
489
|
-
physical id : 1
|
490
|
-
siblings : 12
|
491
|
-
core id : 9
|
492
|
-
cpu cores : 6
|
493
|
-
apicid : 51
|
494
|
-
fpu : yes
|
495
|
-
fpu_exception : yes
|
496
|
-
cpuid level : 11
|
497
|
-
wp : yes
|
498
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
499
|
-
bogomips : 5320.02
|
500
|
-
clflush size : 64
|
501
|
-
cache_alignment : 64
|
502
|
-
address sizes : 40 bits physical, 48 bits virtual
|
503
|
-
power management: [8]
|
504
|
-
|
505
|
-
processor : 21
|
506
|
-
vendor_id : GenuineIntel
|
507
|
-
cpu family : 6
|
508
|
-
model : 44
|
509
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
510
|
-
stepping : 2
|
511
|
-
cpu MHz : 2660.090
|
512
|
-
cache size : 12288 KB
|
513
|
-
physical id : 0
|
514
|
-
siblings : 12
|
515
|
-
core id : 9
|
516
|
-
cpu cores : 6
|
517
|
-
apicid : 19
|
518
|
-
fpu : yes
|
519
|
-
fpu_exception : yes
|
520
|
-
cpuid level : 11
|
521
|
-
wp : yes
|
522
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
523
|
-
bogomips : 5320.01
|
524
|
-
clflush size : 64
|
525
|
-
cache_alignment : 64
|
526
|
-
address sizes : 40 bits physical, 48 bits virtual
|
527
|
-
power management: [8]
|
528
|
-
|
529
|
-
processor : 22
|
530
|
-
vendor_id : GenuineIntel
|
531
|
-
cpu family : 6
|
532
|
-
model : 44
|
533
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
534
|
-
stepping : 2
|
535
|
-
cpu MHz : 2660.090
|
536
|
-
cache size : 12288 KB
|
537
|
-
physical id : 1
|
538
|
-
siblings : 12
|
539
|
-
core id : 10
|
540
|
-
cpu cores : 6
|
541
|
-
apicid : 53
|
542
|
-
fpu : yes
|
543
|
-
fpu_exception : yes
|
544
|
-
cpuid level : 11
|
545
|
-
wp : yes
|
546
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
547
|
-
bogomips : 5320.05
|
548
|
-
clflush size : 64
|
549
|
-
cache_alignment : 64
|
550
|
-
address sizes : 40 bits physical, 48 bits virtual
|
551
|
-
power management: [8]
|
552
|
-
|
553
|
-
processor : 23
|
554
|
-
vendor_id : GenuineIntel
|
555
|
-
cpu family : 6
|
556
|
-
model : 44
|
557
|
-
model name : Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
|
558
|
-
stepping : 2
|
559
|
-
cpu MHz : 2660.090
|
560
|
-
cache size : 12288 KB
|
561
|
-
physical id : 0
|
562
|
-
siblings : 12
|
563
|
-
core id : 10
|
564
|
-
cpu cores : 6
|
565
|
-
apicid : 21
|
566
|
-
fpu : yes
|
567
|
-
fpu_exception : yes
|
568
|
-
cpuid level : 11
|
569
|
-
wp : yes
|
570
|
-
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx pdpe1gb rdtscp lm constant_tsc ida nonstop_tsc arat pni monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm
|
571
|
-
bogomips : 5320.02
|
572
|
-
clflush size : 64
|
573
|
-
cache_alignment : 64
|
574
|
-
address sizes : 40 bits physical, 48 bits virtual
|
575
|
-
power management: [8]
|