newrelic_rpm 6.8.0.360 → 8.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +14 -1
- data/.rubocop.yml +1817 -0
- data/.rubocop_todo.yml +59 -0
- data/.simplecov +15 -0
- data/.snyk +11 -0
- data/.yardopts +1 -0
- data/Brewfile +12 -0
- data/CHANGELOG.md +1142 -15
- data/CONTRIBUTING.md +133 -19
- data/DOCKER.md +167 -0
- data/Dockerfile +10 -0
- data/Gemfile +5 -2
- data/Guardfile +18 -6
- data/LICENSE +202 -38
- data/README.md +84 -87
- data/Rakefile +27 -27
- data/THIRD_PARTY_NOTICES.md +28 -0
- data/Thorfile +5 -0
- data/bin/newrelic +3 -2
- data/bin/newrelic_cmd +1 -0
- data/bin/nrdebug +77 -54
- data/config.dot +5 -5
- data/docker-compose.yml +107 -0
- data/init.rb +5 -7
- data/install.rb +3 -3
- data/lefthook.yml +9 -0
- data/lib/new_relic/agent/adaptive_sampler.rb +14 -10
- data/lib/new_relic/agent/agent/shutdown.rb +35 -0
- data/lib/new_relic/agent/agent/special_startup.rb +72 -0
- data/lib/new_relic/agent/agent/start_worker_thread.rb +163 -0
- data/lib/new_relic/agent/agent/startup.rb +197 -0
- data/lib/new_relic/agent/agent.rb +199 -562
- data/lib/new_relic/agent/agent_logger.rb +24 -20
- data/lib/new_relic/agent/attribute_filter.rb +67 -48
- data/lib/new_relic/agent/attribute_processing.rb +8 -8
- data/lib/new_relic/agent/attributes.rb +9 -8
- data/lib/new_relic/agent/audit_logger.rb +19 -4
- data/lib/new_relic/agent/autostart.rb +21 -20
- data/lib/new_relic/agent/chained_call.rb +2 -2
- data/lib/new_relic/agent/commands/agent_command.rb +4 -4
- data/lib/new_relic/agent/commands/agent_command_router.rb +13 -12
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +10 -8
- data/lib/new_relic/agent/configuration/default_source.rb +1731 -1143
- data/lib/new_relic/agent/configuration/dotted_hash.rb +7 -6
- data/lib/new_relic/agent/configuration/environment_source.rb +12 -10
- data/lib/new_relic/agent/configuration/event_harvest_config.rb +41 -18
- data/lib/new_relic/agent/configuration/high_security_source.rb +10 -9
- data/lib/new_relic/agent/configuration/manager.rb +83 -70
- data/lib/new_relic/agent/configuration/manual_source.rb +2 -2
- data/lib/new_relic/agent/configuration/mask_defaults.rb +4 -4
- data/lib/new_relic/agent/configuration/security_policy_source.rb +91 -78
- data/lib/new_relic/agent/configuration/server_source.rb +23 -21
- data/lib/new_relic/agent/configuration/yaml_source.rb +33 -9
- data/lib/new_relic/agent/configuration.rb +2 -2
- data/lib/new_relic/agent/connect/request_builder.rb +19 -19
- data/lib/new_relic/agent/connect/response_handler.rb +6 -9
- data/lib/new_relic/agent/custom_event_aggregator.rb +15 -15
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +5 -6
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +16 -15
- data/lib/new_relic/agent/database/obfuscator.rb +3 -3
- data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +4 -4
- data/lib/new_relic/agent/database.rb +55 -50
- data/lib/new_relic/agent/database_adapter.rb +35 -0
- data/lib/new_relic/agent/datastores/metric_helper.rb +18 -19
- data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +8 -7
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +7 -11
- data/lib/new_relic/agent/datastores/mongo.rb +7 -12
- data/lib/new_relic/agent/datastores/nosql_obfuscator.rb +41 -0
- data/lib/new_relic/agent/datastores/redis.rb +6 -12
- data/lib/new_relic/agent/datastores.rb +12 -14
- data/lib/new_relic/agent/deprecator.rb +2 -2
- data/lib/new_relic/agent/{cross_app_payload.rb → distributed_tracing/cross_app_payload.rb} +13 -12
- data/lib/new_relic/agent/{cross_app_tracing.rb → distributed_tracing/cross_app_tracing.rb} +86 -64
- 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 +163 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +38 -0
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +245 -0
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +127 -0
- data/lib/new_relic/agent/distributed_tracing.rb +113 -32
- data/lib/new_relic/agent/encoding_normalizer.rb +5 -3
- data/lib/new_relic/agent/error_collector.rb +98 -62
- data/lib/new_relic/agent/error_event_aggregator.rb +9 -8
- data/lib/new_relic/agent/error_filter.rb +174 -0
- data/lib/new_relic/agent/error_trace_aggregator.rb +5 -4
- data/lib/new_relic/agent/event_aggregator.rb +23 -22
- data/lib/new_relic/agent/event_buffer.rb +8 -9
- data/lib/new_relic/agent/event_listener.rb +2 -3
- data/lib/new_relic/agent/event_loop.rb +26 -24
- data/lib/new_relic/agent/external.rb +19 -52
- data/lib/new_relic/agent/guid_generator.rb +5 -12
- data/lib/new_relic/agent/harvester.rb +5 -6
- data/lib/new_relic/agent/heap.rb +7 -9
- data/lib/new_relic/agent/hostname.rb +21 -8
- data/lib/new_relic/agent/http_clients/abstract.rb +81 -0
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +26 -26
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +31 -17
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +18 -23
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +12 -15
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +24 -8
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +9 -12
- data/lib/new_relic/agent/http_clients/uri_util.rb +12 -13
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +12 -14
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +43 -32
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +21 -14
- data/lib/new_relic/agent/instrumentation/active_job.rb +15 -8
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +21 -7
- data/lib/new_relic/agent/instrumentation/active_record.rb +89 -40
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +82 -61
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +32 -45
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +36 -12
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +34 -22
- data/lib/new_relic/agent/instrumentation/active_storage.rb +3 -3
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +25 -18
- data/lib/new_relic/agent/instrumentation/active_support_logger/chain.rb +23 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +20 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb +12 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger.rb +24 -0
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +12 -3
- data/lib/new_relic/agent/instrumentation/authlogic.rb +11 -3
- data/lib/new_relic/agent/instrumentation/bunny/chain.rb +45 -0
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +150 -0
- data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +35 -0
- data/lib/new_relic/agent/instrumentation/bunny.rb +14 -138
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +69 -59
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +91 -0
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +221 -0
- data/lib/new_relic/agent/instrumentation/curb/prepend.rb +61 -0
- data/lib/new_relic/agent/instrumentation/curb.rb +13 -198
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +68 -55
- data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +35 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +48 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +33 -0
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +30 -52
- data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +29 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +66 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch.rb +31 -0
- data/lib/new_relic/agent/instrumentation/excon/middleware.rb +7 -6
- data/lib/new_relic/agent/instrumentation/excon.rb +24 -26
- data/lib/new_relic/agent/instrumentation/grape/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +100 -0
- data/lib/new_relic/agent/instrumentation/grape/prepend.rb +17 -0
- data/lib/new_relic/agent/instrumentation/grape.rb +12 -118
- data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +97 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +89 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +111 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +30 -0
- data/lib/new_relic/agent/instrumentation/grpc/helper.rb +32 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/chain.rb +69 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +134 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb +35 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/rpc_server_prepend.rb +26 -0
- data/lib/new_relic/agent/instrumentation/grpc_client.rb +23 -0
- data/lib/new_relic/agent/instrumentation/grpc_server.rb +25 -0
- data/lib/new_relic/agent/instrumentation/httpclient/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +37 -0
- data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/httpclient.rb +12 -32
- data/lib/new_relic/agent/instrumentation/httprb/chain.rb +22 -0
- data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +30 -0
- data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/httprb.rb +29 -0
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +5 -6
- data/lib/new_relic/agent/instrumentation/logger/chain.rb +21 -0
- data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +66 -0
- data/lib/new_relic/agent/instrumentation/logger/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/logger.rb +26 -0
- data/lib/new_relic/agent/instrumentation/memcache/chain.rb +15 -0
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +58 -125
- data/lib/new_relic/agent/instrumentation/memcache/helper.rb +59 -0
- data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +90 -0
- data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +101 -0
- data/lib/new_relic/agent/instrumentation/memcache.rb +57 -71
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +14 -13
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +10 -10
- data/lib/new_relic/agent/instrumentation/mongo.rb +6 -131
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +49 -13
- data/lib/new_relic/agent/instrumentation/net_http/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +40 -0
- data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +21 -0
- data/lib/new_relic/agent/instrumentation/net_http.rb +44 -0
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +34 -9
- data/lib/new_relic/agent/instrumentation/padrino/chain.rb +38 -0
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +28 -0
- data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +20 -0
- data/lib/new_relic/agent/instrumentation/padrino.rb +22 -58
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +4 -4
- data/lib/new_relic/agent/instrumentation/queue_time.rb +9 -10
- data/lib/new_relic/agent/instrumentation/rack/chain.rb +66 -0
- data/lib/new_relic/agent/instrumentation/rack/helpers.rb +33 -0
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +75 -0
- data/lib/new_relic/agent/instrumentation/rack/prepend.rb +43 -0
- data/lib/new_relic/agent/instrumentation/rack.rb +31 -139
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +17 -53
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +2 -2
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +6 -5
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +4 -4
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +4 -3
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +14 -4
- data/lib/new_relic/agent/instrumentation/rake/chain.rb +20 -0
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +149 -0
- data/lib/new_relic/agent/instrumentation/rake/prepend.rb +14 -0
- data/lib/new_relic/agent/instrumentation/rake.rb +17 -157
- data/lib/new_relic/agent/instrumentation/redis/chain.rb +45 -0
- data/lib/new_relic/agent/instrumentation/redis/constants.rb +17 -0
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +72 -0
- data/lib/new_relic/agent/instrumentation/redis/middleware.rb +16 -0
- data/lib/new_relic/agent/instrumentation/redis/prepend.rb +29 -0
- data/lib/new_relic/agent/instrumentation/redis.rb +19 -102
- data/lib/new_relic/agent/instrumentation/resque/chain.rb +21 -0
- data/lib/new_relic/agent/instrumentation/resque/helper.rb +19 -0
- data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +34 -0
- data/lib/new_relic/agent/instrumentation/resque/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/resque.rb +29 -37
- data/lib/new_relic/agent/instrumentation/sequel.rb +15 -17
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +3 -3
- data/lib/new_relic/agent/instrumentation/sidekiq/client.rb +20 -0
- data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +30 -0
- data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +37 -0
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +28 -45
- data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +55 -0
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +31 -37
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +125 -0
- data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +33 -0
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +3 -3
- data/lib/new_relic/agent/instrumentation/sinatra.rb +35 -165
- data/lib/new_relic/agent/instrumentation/sunspot.rb +12 -4
- data/lib/new_relic/agent/instrumentation/thread/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +28 -0
- data/lib/new_relic/agent/instrumentation/thread/prepend.rb +22 -0
- data/lib/new_relic/agent/instrumentation/thread.rb +20 -0
- data/lib/new_relic/agent/instrumentation/tilt/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +41 -0
- data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/tilt.rb +25 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +22 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +80 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +14 -0
- data/lib/new_relic/agent/instrumentation/typhoeus.rb +14 -76
- data/lib/new_relic/agent/instrumentation.rb +2 -2
- data/lib/new_relic/agent/internal_agent_error.rb +3 -3
- data/lib/new_relic/agent/javascript_instrumentor.rb +48 -42
- data/lib/new_relic/agent/linking_metadata.rb +44 -0
- data/lib/new_relic/agent/local_log_decorator.rb +37 -0
- data/lib/new_relic/agent/log_event_aggregator.rb +235 -0
- data/lib/new_relic/agent/log_once.rb +2 -2
- data/lib/new_relic/agent/log_priority.rb +20 -0
- data/lib/new_relic/agent/logging.rb +39 -26
- data/lib/new_relic/agent/memory_logger.rb +3 -3
- data/lib/new_relic/agent/messaging.rb +70 -154
- data/lib/new_relic/agent/method_tracer.rb +152 -145
- data/lib/new_relic/agent/method_tracer_helpers.rb +87 -5
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +118 -0
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +28 -0
- data/lib/new_relic/agent/{inbound_request_monitor.rb → monitors/inbound_request_monitor.rb} +3 -4
- data/lib/new_relic/agent/{synthetics_monitor.rb → monitors/synthetics_monitor.rb} +8 -13
- data/lib/new_relic/agent/monitors.rb +26 -0
- data/lib/new_relic/agent/new_relic_service/encoders.rb +7 -7
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +6 -6
- data/lib/new_relic/agent/new_relic_service/marshaller.rb +3 -3
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +6 -5
- data/lib/new_relic/agent/new_relic_service.rb +258 -184
- data/lib/new_relic/agent/noticeable_error.rb +19 -0
- data/lib/new_relic/agent/null_logger.rb +8 -4
- data/lib/new_relic/agent/obfuscator.rb +9 -11
- data/lib/new_relic/agent/parameter_filtering.rb +25 -11
- data/lib/new_relic/agent/payload_metric_mapping.rb +10 -11
- data/lib/new_relic/agent/pipe_channel_manager.rb +28 -18
- data/lib/new_relic/agent/pipe_service.rb +9 -6
- data/lib/new_relic/agent/prepend_supportability.rb +3 -3
- data/lib/new_relic/agent/priority_sampled_buffer.rb +15 -15
- data/lib/new_relic/agent/range_extensions.rb +9 -29
- data/lib/new_relic/agent/rules_engine/replacement_rule.rb +12 -12
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +14 -14
- data/lib/new_relic/agent/rules_engine.rb +6 -5
- data/lib/new_relic/agent/sampler.rb +4 -5
- data/lib/new_relic/agent/sampler_collection.rb +4 -5
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +4 -3
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +13 -10
- data/lib/new_relic/agent/samplers/memory_sampler.rb +26 -15
- data/lib/new_relic/agent/samplers/object_sampler.rb +2 -2
- data/lib/new_relic/agent/samplers/vm_sampler.rb +22 -20
- data/lib/new_relic/agent/span_event_aggregator.rb +13 -13
- data/lib/new_relic/agent/span_event_primitive.rb +106 -68
- data/lib/new_relic/agent/sql_sampler.rb +22 -22
- data/lib/new_relic/agent/stats.rb +79 -42
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +11 -13
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +13 -14
- data/lib/new_relic/agent/stats_engine.rb +9 -9
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +8 -9
- data/lib/new_relic/agent/system_info.rb +95 -66
- data/lib/new_relic/agent/threading/agent_thread.rb +19 -15
- data/lib/new_relic/agent/threading/backtrace_node.rb +13 -14
- data/lib/new_relic/agent/threading/backtrace_service.rb +15 -15
- data/lib/new_relic/agent/threading/thread_profile.rb +24 -24
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +2 -2
- data/lib/new_relic/agent/tracer.rb +107 -101
- data/lib/new_relic/agent/transaction/abstract_segment.rb +128 -38
- data/lib/new_relic/agent/transaction/datastore_segment.rb +22 -18
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +184 -0
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +75 -84
- data/lib/new_relic/agent/transaction/external_request_segment.rb +66 -76
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +34 -46
- data/lib/new_relic/agent/transaction/request_attributes.rb +36 -36
- data/lib/new_relic/agent/transaction/segment.rb +35 -11
- data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +2 -4
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +2 -2
- data/lib/new_relic/agent/transaction/trace.rb +18 -16
- data/lib/new_relic/agent/transaction/trace_builder.rb +11 -11
- data/lib/new_relic/agent/transaction/trace_context.rb +102 -93
- data/lib/new_relic/agent/transaction/trace_node.rb +26 -28
- data/lib/new_relic/agent/transaction/tracing.rb +15 -12
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +5 -5
- data/lib/new_relic/agent/transaction.rb +210 -177
- data/lib/new_relic/agent/transaction_error_primitive.rb +32 -28
- data/lib/new_relic/agent/transaction_event_aggregator.rb +13 -13
- data/lib/new_relic/agent/transaction_event_primitive.rb +43 -47
- data/lib/new_relic/agent/transaction_event_recorder.rb +17 -16
- data/lib/new_relic/agent/transaction_metrics.rb +11 -10
- data/lib/new_relic/agent/transaction_sampler.rb +6 -7
- data/lib/new_relic/agent/transaction_time_aggregator.rb +27 -26
- data/lib/new_relic/agent/utilization/aws.rb +34 -4
- data/lib/new_relic/agent/utilization/azure.rb +4 -4
- data/lib/new_relic/agent/utilization/gcp.rb +8 -8
- data/lib/new_relic/agent/utilization/pcf.rb +6 -5
- data/lib/new_relic/agent/utilization/vendor.rb +44 -29
- data/lib/new_relic/agent/utilization_data.rb +8 -6
- data/lib/new_relic/agent/vm/jruby_vm.rb +2 -2
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +3 -3
- data/lib/new_relic/agent/vm/mri_vm.rb +46 -19
- data/lib/new_relic/agent/vm/snapshot.rb +6 -6
- data/lib/new_relic/agent/vm.rb +2 -2
- data/lib/new_relic/agent/worker_loop.rb +11 -13
- data/lib/new_relic/agent.rb +78 -79
- data/lib/new_relic/cli/command.rb +21 -23
- data/lib/new_relic/cli/commands/deployments.rb +93 -44
- data/lib/new_relic/cli/commands/install.rb +15 -17
- data/lib/new_relic/coerce.rb +19 -15
- data/lib/new_relic/collection_helper.rb +51 -49
- data/lib/new_relic/constants.rb +39 -0
- data/lib/new_relic/control/class_methods.rb +4 -4
- data/lib/new_relic/control/frameworks/external.rb +3 -3
- data/lib/new_relic/control/frameworks/rails.rb +24 -18
- data/lib/new_relic/control/frameworks/rails3.rb +4 -5
- data/lib/new_relic/control/frameworks/rails4.rb +2 -2
- data/lib/new_relic/control/frameworks/rails_notifications.rb +2 -2
- data/lib/new_relic/control/frameworks/ruby.rb +4 -4
- data/lib/new_relic/control/frameworks/sinatra.rb +8 -2
- data/lib/new_relic/control/frameworks.rb +2 -2
- data/lib/new_relic/control/instance_methods.rb +24 -46
- data/lib/new_relic/control/instrumentation.rb +40 -12
- data/lib/new_relic/control/private_instance_methods.rb +48 -0
- data/lib/new_relic/control/server_methods.rb +4 -5
- data/lib/new_relic/control.rb +2 -3
- data/lib/new_relic/delayed_job_injection.rb +2 -2
- data/lib/new_relic/dependency_detection.rb +129 -18
- data/lib/new_relic/environment_report.rb +41 -35
- data/lib/new_relic/helper.rb +49 -8
- data/lib/new_relic/language_support.rb +30 -6
- data/lib/new_relic/latest_changes.rb +9 -8
- data/lib/new_relic/local_environment.rb +25 -19
- data/lib/new_relic/metric_data.rb +32 -27
- data/lib/new_relic/metric_spec.rb +9 -7
- data/lib/new_relic/noticed_error.rb +44 -35
- data/lib/new_relic/rack/agent_hooks.rb +2 -2
- data/lib/new_relic/rack/agent_middleware.rb +6 -4
- data/lib/new_relic/rack/browser_monitoring.rb +134 -119
- data/lib/new_relic/rack.rb +2 -2
- data/lib/new_relic/recipes/capistrano3.rb +4 -62
- data/lib/new_relic/recipes/capistrano_legacy.rb +24 -27
- data/lib/new_relic/recipes/helpers/send_deployment.rb +69 -0
- data/lib/new_relic/recipes.rb +2 -2
- data/lib/new_relic/supportability_helper.rb +21 -6
- data/lib/new_relic/traced_thread.rb +35 -0
- data/lib/new_relic/version.rb +7 -18
- data/lib/newrelic_rpm.rb +12 -36
- data/lib/sequel/extensions/newrelic_instrumentation.rb +13 -16
- data/lib/sequel/plugins/newrelic_instrumentation.rb +5 -11
- data/lib/tasks/all.rb +4 -4
- data/lib/tasks/config.rake +22 -117
- data/lib/tasks/coverage_report.rake +28 -0
- data/lib/tasks/helpers/config.html.erb +21 -0
- data/lib/tasks/{config.text.erb → helpers/config.text.erb} +0 -0
- data/lib/tasks/helpers/format.rb +123 -0
- data/lib/tasks/helpers/matches.rb +12 -0
- data/lib/tasks/helpers/prompt.rb +24 -0
- data/lib/tasks/helpers/removers.rb +33 -0
- data/lib/tasks/install.rake +4 -0
- data/lib/tasks/instrumentation_generator/README.md +63 -0
- data/lib/tasks/instrumentation_generator/TODO.md +33 -0
- data/lib/tasks/instrumentation_generator/instrumentation.thor +124 -0
- data/lib/tasks/instrumentation_generator/templates/Envfile.tt +9 -0
- data/lib/tasks/instrumentation_generator/templates/chain.tt +22 -0
- data/lib/tasks/instrumentation_generator/templates/chain_method.tt +8 -0
- data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +29 -0
- data/lib/tasks/instrumentation_generator/templates/instrumentation.tt +13 -0
- data/lib/tasks/instrumentation_generator/templates/instrumentation_method.tt +3 -0
- data/lib/tasks/instrumentation_generator/templates/newrelic.yml.tt +19 -0
- data/lib/tasks/instrumentation_generator/templates/prepend.tt +13 -0
- data/lib/tasks/instrumentation_generator/templates/prepend_method.tt +3 -0
- data/lib/tasks/instrumentation_generator/templates/test.tt +15 -0
- data/lib/tasks/multiverse.rake +4 -0
- data/lib/tasks/multiverse.rb +12 -5
- data/lib/tasks/newrelic.rb +2 -2
- data/lib/tasks/tests.rake +14 -14
- data/newrelic.yml +648 -3
- data/newrelic_rpm.gemspec +28 -25
- data/recipes/newrelic.rb +3 -3
- data/test/agent_helper.rb +332 -103
- metadata +192 -119
- data/.travis.yml +0 -210
- data/bin/mongrel_rpm +0 -33
- data/cert/cacert.pem +0 -1177
- data/lib/new_relic/agent/cross_app_monitor.rb +0 -110
- data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +0 -44
- data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +0 -53
- data/lib/new_relic/agent/distributed_trace_intrinsics.rb +0 -90
- data/lib/new_relic/agent/distributed_trace_metrics.rb +0 -74
- data/lib/new_relic/agent/distributed_trace_monitor.rb +0 -30
- data/lib/new_relic/agent/distributed_trace_payload.rb +0 -175
- data/lib/new_relic/agent/distributed_trace_transport_type.rb +0 -43
- data/lib/new_relic/agent/http_clients/abstract_request.rb +0 -31
- data/lib/new_relic/agent/instrumentation/excon/connection.rb +0 -46
- data/lib/new_relic/agent/instrumentation/http.rb +0 -46
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +0 -44
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +0 -33
- data/lib/new_relic/agent/instrumentation/net.rb +0 -50
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +0 -125
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +0 -46
- data/lib/new_relic/agent/supported_versions.rb +0 -275
- data/lib/new_relic/agent/trace_context.rb +0 -244
- data/lib/new_relic/agent/trace_context_payload.rb +0 -134
- data/lib/new_relic/agent/trace_context_request_monitor.rb +0 -42
- data/lib/new_relic/build.rb +0 -2
- data/lib/new_relic/control/frameworks/merb.rb +0 -29
- data/lib/new_relic/metrics.rb +0 -13
- data/lib/tasks/config.html.erb +0 -32
- data/true +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
2
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'new_relic/helper'
|
6
6
|
require 'new_relic/agent/attribute_filter'
|
@@ -11,17 +11,28 @@ class NewRelic::NoticedError
|
|
11
11
|
extend NewRelic::CollectionHelper
|
12
12
|
|
13
13
|
attr_accessor :path, :timestamp, :message, :exception_class_name,
|
14
|
-
|
15
|
-
|
16
|
-
|
14
|
+
:request_uri, :request_port, :file_name, :line_number,
|
15
|
+
:stack_trace, :attributes_from_notice_error, :attributes,
|
16
|
+
:expected
|
17
17
|
|
18
|
-
attr_reader
|
18
|
+
attr_reader :exception_id, :is_internal
|
19
19
|
|
20
|
-
STRIPPED_EXCEPTION_REPLACEMENT_MESSAGE = "Message removed by New Relic 'strip_exception_messages' setting"
|
21
|
-
UNKNOWN_ERROR_CLASS_NAME = 'Error'
|
22
|
-
NIL_ERROR_MESSAGE = '<no message>'
|
20
|
+
STRIPPED_EXCEPTION_REPLACEMENT_MESSAGE = "Message removed by New Relic 'strip_exception_messages' setting"
|
21
|
+
UNKNOWN_ERROR_CLASS_NAME = 'Error'
|
22
|
+
NIL_ERROR_MESSAGE = '<no message>'
|
23
23
|
|
24
|
-
|
24
|
+
USER_ATTRIBUTES = "userAttributes"
|
25
|
+
AGENT_ATTRIBUTES = "agentAttributes"
|
26
|
+
INTRINSIC_ATTRIBUTES = "intrinsics"
|
27
|
+
|
28
|
+
DESTINATION = NewRelic::Agent::AttributeFilter::DST_ERROR_COLLECTOR
|
29
|
+
|
30
|
+
ERROR_PREFIX_KEY = 'error'
|
31
|
+
ERROR_MESSAGE_KEY = "#{ERROR_PREFIX_KEY}.message"
|
32
|
+
ERROR_CLASS_KEY = "#{ERROR_PREFIX_KEY}.class"
|
33
|
+
ERROR_EXPECTED_KEY = "#{ERROR_PREFIX_KEY}.expected"
|
34
|
+
|
35
|
+
def initialize(path, exception, timestamp = Process.clock_gettime(Process::CLOCK_REALTIME), expected = false)
|
25
36
|
@exception_id = exception.object_id
|
26
37
|
@path = path
|
27
38
|
|
@@ -39,14 +50,14 @@ class NewRelic::NoticedError
|
|
39
50
|
|
40
51
|
# replace error message if enabled
|
41
52
|
if NewRelic::Agent.config[:'strip_exception_messages.enabled'] &&
|
42
|
-
|
53
|
+
!self.class.passes_message_allowlist(exception.class)
|
43
54
|
@message = STRIPPED_EXCEPTION_REPLACEMENT_MESSAGE
|
44
55
|
end
|
45
56
|
|
46
57
|
@attributes_from_notice_error = nil
|
47
58
|
@attributes = nil
|
48
59
|
@timestamp = timestamp
|
49
|
-
@expected =
|
60
|
+
@expected = expected
|
50
61
|
end
|
51
62
|
|
52
63
|
def ==(other)
|
@@ -58,33 +69,21 @@ class NewRelic::NoticedError
|
|
58
69
|
end
|
59
70
|
|
60
71
|
def self.passes_message_allowlist(exception_class)
|
61
|
-
|
62
|
-
|
63
|
-
allowed = NewRelic::Agent.config[:'strip_exception_messages.allowed_classes'].concat(NewRelic::Agent.config[:'strip_exception_messages.whitelist'])
|
64
|
-
|
65
|
-
allowed.any? do |klass|
|
72
|
+
NewRelic::Agent.config[:'strip_exception_messages.allowed_classes'].any? do |klass|
|
66
73
|
exception_class <= klass
|
67
74
|
end
|
68
75
|
end
|
69
76
|
|
70
77
|
include NewRelic::Coerce
|
71
78
|
|
72
|
-
def to_collector_array(encoder=nil)
|
73
|
-
[
|
79
|
+
def to_collector_array(encoder = nil)
|
80
|
+
[NewRelic::Helper.time_to_millis(timestamp),
|
74
81
|
string(path),
|
75
82
|
string(message),
|
76
83
|
string(exception_class_name),
|
77
|
-
processed_attributes
|
84
|
+
processed_attributes]
|
78
85
|
end
|
79
86
|
|
80
|
-
USER_ATTRIBUTES = "userAttributes".freeze
|
81
|
-
AGENT_ATTRIBUTES = "agentAttributes".freeze
|
82
|
-
INTRINSIC_ATTRIBUTES = "intrinsics".freeze
|
83
|
-
|
84
|
-
EMPTY_HASH = {}.freeze
|
85
|
-
|
86
|
-
DESTINATION = NewRelic::Agent::AttributeFilter::DST_ERROR_COLLECTOR
|
87
|
-
|
88
87
|
# Note that we process attributes lazily and store the result. This is because
|
89
88
|
# there is a possibility that a noticed error will be discarded and not sent back
|
90
89
|
# as a traced error or TransactionError.
|
@@ -101,10 +100,10 @@ class NewRelic::NoticedError
|
|
101
100
|
|
102
101
|
def base_parameters
|
103
102
|
params = {}
|
104
|
-
params[:file_name]
|
105
|
-
params[:line_number]
|
106
|
-
params[:stack_trace]
|
107
|
-
params[
|
103
|
+
params[:file_name] = file_name if file_name
|
104
|
+
params[:line_number] = line_number if line_number
|
105
|
+
params[:stack_trace] = stack_trace if stack_trace
|
106
|
+
params[ERROR_EXPECTED_KEY.to_sym] = expected
|
108
107
|
params
|
109
108
|
end
|
110
109
|
|
@@ -133,11 +132,19 @@ class NewRelic::NoticedError
|
|
133
132
|
end
|
134
133
|
end
|
135
134
|
|
135
|
+
def build_error_attributes
|
136
|
+
@attributes_from_notice_error ||= {}
|
137
|
+
@attributes_from_notice_error[ERROR_MESSAGE_KEY] = string(message)
|
138
|
+
@attributes_from_notice_error[ERROR_CLASS_KEY] = string(exception_class_name)
|
139
|
+
|
140
|
+
@attributes_from_notice_error[ERROR_EXPECTED_KEY] = true if expected
|
141
|
+
end
|
142
|
+
|
136
143
|
def build_agent_attributes(merged_attributes)
|
137
144
|
agent_attributes = if @attributes
|
138
145
|
@attributes.agent_attributes_for(DESTINATION)
|
139
146
|
else
|
140
|
-
EMPTY_HASH
|
147
|
+
NewRelic::EMPTY_HASH
|
141
148
|
end
|
142
149
|
|
143
150
|
# It's possible to override the request_uri from the transaction attributes
|
@@ -155,7 +162,7 @@ class NewRelic::NoticedError
|
|
155
162
|
if @attributes
|
156
163
|
@attributes.intrinsic_attributes_for(DESTINATION)
|
157
164
|
else
|
158
|
-
EMPTY_HASH
|
165
|
+
NewRelic::EMPTY_HASH
|
159
166
|
end
|
160
167
|
end
|
161
168
|
|
@@ -179,6 +186,9 @@ class NewRelic::NoticedError
|
|
179
186
|
if exception.nil?
|
180
187
|
@exception_class_name = UNKNOWN_ERROR_CLASS_NAME
|
181
188
|
@message = NIL_ERROR_MESSAGE
|
189
|
+
elsif exception.is_a?(NewRelic::Agent::NoticeableError)
|
190
|
+
@exception_class_name = exception.class_name
|
191
|
+
@message = exception.message
|
182
192
|
else
|
183
193
|
if defined?(Rails::VERSION::MAJOR) && Rails::VERSION::MAJOR < 5 && exception.respond_to?(:original_exception)
|
184
194
|
exception = exception.original_exception || exception
|
@@ -187,5 +197,4 @@ class NewRelic::NoticedError
|
|
187
197
|
@message = exception.to_s
|
188
198
|
end
|
189
199
|
end
|
190
|
-
|
191
200
|
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
2
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'new_relic/agent/event_listener'
|
6
6
|
require 'new_relic/rack/agent_middleware'
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
2
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'new_relic/agent/tracer'
|
6
6
|
require 'new_relic/agent/instrumentation/controller_instrumentation'
|
@@ -13,10 +13,10 @@ module NewRelic
|
|
13
13
|
|
14
14
|
attr_reader :transaction_options, :category, :target
|
15
15
|
|
16
|
-
def initialize(app, options={})
|
16
|
+
def initialize(app, options = {})
|
17
17
|
@app = app
|
18
18
|
@category = :middleware
|
19
|
-
@target
|
19
|
+
@target = self
|
20
20
|
@transaction_options = {
|
21
21
|
:transaction_name => build_transaction_name
|
22
22
|
}
|
@@ -33,11 +33,13 @@ module NewRelic
|
|
33
33
|
# response code before it goes back to the client.
|
34
34
|
def capture_http_response_code(state, result)
|
35
35
|
return if NewRelic::Agent.config[:disable_middleware_instrumentation]
|
36
|
+
|
36
37
|
super
|
37
38
|
end
|
38
39
|
|
39
40
|
def capture_response_content_type(state, result)
|
40
41
|
return if NewRelic::Agent.config[:disable_middleware_instrumentation]
|
42
|
+
|
41
43
|
super
|
42
44
|
end
|
43
45
|
end
|
@@ -1,152 +1,167 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
2
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'rack'
|
6
6
|
require 'new_relic/rack/agent_middleware'
|
7
7
|
require 'new_relic/agent/instrumentation/middleware_proxy'
|
8
8
|
|
9
|
-
module NewRelic
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
9
|
+
module NewRelic
|
10
|
+
module Rack
|
11
|
+
# This middleware is used by the agent for the Real user monitoring (RUM)
|
12
|
+
# feature, and will usually be automatically injected in the middleware chain.
|
13
|
+
# If automatic injection is not working, you may manually use it in your
|
14
|
+
# middleware chain instead.
|
15
|
+
#
|
16
|
+
# @api public
|
17
|
+
#
|
18
|
+
class BrowserMonitoring < AgentMiddleware
|
19
|
+
# The maximum number of bytes of the response body that we will
|
20
|
+
# examine in order to look for a RUM insertion point.
|
21
|
+
SCAN_LIMIT = 50_000
|
22
|
+
|
23
|
+
CONTENT_TYPE = 'Content-Type'.freeze
|
24
|
+
CONTENT_DISPOSITION = 'Content-Disposition'.freeze
|
25
|
+
CONTENT_LENGTH = 'Content-Length'.freeze
|
26
|
+
ATTACHMENT = 'attachment'.freeze
|
27
|
+
TEXT_HTML = 'text/html'.freeze
|
28
|
+
|
29
|
+
BODY_START = "<body".freeze
|
30
|
+
HEAD_START = "<head".freeze
|
31
|
+
GT = ">".freeze
|
32
|
+
|
33
|
+
ALREADY_INSTRUMENTED_KEY = "newrelic.browser_monitoring_already_instrumented"
|
34
|
+
CHARSET_RE = /<\s*meta[^>]+charset\s*=[^>]*>/im.freeze
|
35
|
+
X_UA_COMPATIBLE_RE = /<\s*meta[^>]+http-equiv\s*=\s*['"]x-ua-compatible['"][^>]*>/im.freeze
|
36
|
+
|
37
|
+
def traced_call(env)
|
38
|
+
result = @app.call(env)
|
39
|
+
(status, headers, response) = result
|
40
|
+
|
41
|
+
js_to_inject = NewRelic::Agent.browser_timing_header
|
42
|
+
if (js_to_inject != NewRelic::EMPTY_STR) && should_instrument?(env, status, headers)
|
43
|
+
response_string = autoinstrument_source(response, headers, js_to_inject)
|
44
|
+
if headers.key?(CONTENT_LENGTH)
|
45
|
+
content_length = response_string ? response_string.bytesize : 0
|
46
|
+
headers[CONTENT_LENGTH] = content_length.to_s
|
47
|
+
end
|
48
|
+
|
49
|
+
env[ALREADY_INSTRUMENTED_KEY] = true
|
50
|
+
if response_string
|
51
|
+
response = ::Rack::Response.new(response_string, status, headers)
|
52
|
+
response.finish
|
53
|
+
else
|
54
|
+
result
|
55
|
+
end
|
43
56
|
else
|
44
57
|
result
|
45
58
|
end
|
46
|
-
else
|
47
|
-
result
|
48
59
|
end
|
49
|
-
end
|
50
|
-
|
51
|
-
ALREADY_INSTRUMENTED_KEY = "newrelic.browser_monitoring_already_instrumented"
|
52
|
-
|
53
|
-
def should_instrument?(env, status, headers)
|
54
|
-
NewRelic::Agent.config[:'browser_monitoring.auto_instrument'] &&
|
55
|
-
status == 200 &&
|
56
|
-
!env[ALREADY_INSTRUMENTED_KEY] &&
|
57
|
-
is_html?(headers) &&
|
58
|
-
!is_attachment?(headers) &&
|
59
|
-
!is_streaming?(env, headers)
|
60
|
-
end
|
61
60
|
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
61
|
+
def should_instrument?(env, status, headers)
|
62
|
+
NewRelic::Agent.config[:'browser_monitoring.auto_instrument'] &&
|
63
|
+
status == 200 &&
|
64
|
+
!env[ALREADY_INSTRUMENTED_KEY] &&
|
65
|
+
html?(headers) &&
|
66
|
+
!attachment?(headers) &&
|
67
|
+
!streaming?(env, headers)
|
68
|
+
end
|
69
69
|
|
70
|
-
|
71
|
-
|
70
|
+
private
|
71
|
+
|
72
|
+
def autoinstrument_source(response, headers, js_to_inject)
|
73
|
+
source = gather_source(response)
|
74
|
+
close_old_response(response)
|
75
|
+
return nil unless source
|
76
|
+
|
77
|
+
# Only scan the first 50k (roughly) then give up.
|
78
|
+
beginning_of_source = source[0..SCAN_LIMIT]
|
79
|
+
meta_tag_positions = find_meta_tag_positions(beginning_of_source)
|
80
|
+
if body_start = find_body_start(beginning_of_source)
|
81
|
+
if insertion_index = find_insertion_index(meta_tag_positions, beginning_of_source, body_start)
|
82
|
+
source = source_injection(source, insertion_index, js_to_inject)
|
83
|
+
else
|
84
|
+
NewRelic::Agent.logger.debug("Skipping RUM instrumentation. Could not properly determine location to inject script.")
|
85
|
+
end
|
86
|
+
else
|
87
|
+
msg = "Skipping RUM instrumentation. Unable to find <body> tag in first #{SCAN_LIMIT} bytes of document."
|
88
|
+
NewRelic::Agent.logger.log_once(:warn, :rum_insertion_failure, msg)
|
89
|
+
NewRelic::Agent.logger.debug(msg)
|
90
|
+
end
|
72
91
|
|
73
|
-
|
74
|
-
|
75
|
-
|
92
|
+
source
|
93
|
+
rescue => e
|
94
|
+
NewRelic::Agent.logger.debug("Skipping RUM instrumentation on exception.", e)
|
95
|
+
nil
|
96
|
+
end
|
76
97
|
|
77
|
-
|
78
|
-
|
98
|
+
def html?(headers)
|
99
|
+
headers[CONTENT_TYPE] && headers[CONTENT_TYPE].include?(TEXT_HTML)
|
100
|
+
end
|
79
101
|
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
return nil unless source
|
102
|
+
def attachment?(headers)
|
103
|
+
headers[CONTENT_DISPOSITION] && headers[CONTENT_DISPOSITION].include?(ATTACHMENT)
|
104
|
+
end
|
84
105
|
|
85
|
-
|
86
|
-
|
106
|
+
def streaming?(env, headers)
|
107
|
+
# Chunked transfer encoding is a streaming data transfer mechanism available only in HTTP/1.1
|
108
|
+
return true if headers && headers['Transfer-Encoding'] == 'chunked'
|
87
109
|
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
find_charset_position(beginning_of_source)
|
92
|
-
].compact
|
110
|
+
defined?(ActionController::Live) &&
|
111
|
+
env['action_controller.instance'].class.included_modules.include?(ActionController::Live)
|
112
|
+
end
|
93
113
|
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
insertion_index
|
98
|
-
|
114
|
+
def source_injection(source, insertion_index, js_to_inject)
|
115
|
+
source[0...insertion_index] <<
|
116
|
+
js_to_inject <<
|
117
|
+
source[insertion_index..-1]
|
118
|
+
end
|
99
119
|
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
source[insertion_index..-1]
|
120
|
+
def find_insertion_index(tag_positions, source_beginning, body_start)
|
121
|
+
if !tag_positions.empty?
|
122
|
+
tag_positions.max
|
104
123
|
else
|
105
|
-
|
124
|
+
find_end_of_head_open(source_beginning) || body_start
|
106
125
|
end
|
107
|
-
else
|
108
|
-
msg = "Skipping RUM instrumentation. Unable to find <body> tag in first #{SCAN_LIMIT} bytes of document."
|
109
|
-
NewRelic::Agent.logger.log_once(:warn, :rum_insertion_failure, msg)
|
110
|
-
NewRelic::Agent.logger.debug(msg)
|
111
126
|
end
|
112
127
|
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
128
|
+
def find_meta_tag_positions(source_beginning)
|
129
|
+
[
|
130
|
+
find_x_ua_compatible_position(source_beginning),
|
131
|
+
find_charset_position(source_beginning)
|
132
|
+
].compact
|
133
|
+
end
|
118
134
|
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
135
|
+
def gather_source(response)
|
136
|
+
source = nil
|
137
|
+
response.each { |fragment| source ? (source << fragment.to_s) : (source = fragment.to_s) }
|
138
|
+
source
|
139
|
+
end
|
124
140
|
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
response.close
|
141
|
+
# Per "The Response > The Body" section of Rack spec, we should close
|
142
|
+
# if our response is able. http://rack.rubyforge.org/doc/SPEC.html
|
143
|
+
def close_old_response(response)
|
144
|
+
response.close if response.respond_to?(:close)
|
130
145
|
end
|
131
|
-
end
|
132
146
|
|
133
|
-
|
134
|
-
|
135
|
-
|
147
|
+
def find_body_start(beginning_of_source)
|
148
|
+
beginning_of_source.index(BODY_START)
|
149
|
+
end
|
136
150
|
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
151
|
+
def find_x_ua_compatible_position(beginning_of_source)
|
152
|
+
match = X_UA_COMPATIBLE_RE.match(beginning_of_source)
|
153
|
+
match.end(0) if match
|
154
|
+
end
|
141
155
|
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
156
|
+
def find_charset_position(beginning_of_source)
|
157
|
+
match = CHARSET_RE.match(beginning_of_source)
|
158
|
+
match.end(0) if match
|
159
|
+
end
|
146
160
|
|
147
|
-
|
148
|
-
|
149
|
-
|
161
|
+
def find_end_of_head_open(beginning_of_source)
|
162
|
+
head_open = beginning_of_source.index(HEAD_START)
|
163
|
+
beginning_of_source.index(GT, head_open) + 1 if head_open
|
164
|
+
end
|
150
165
|
end
|
151
166
|
end
|
152
167
|
end
|
data/lib/new_relic/rack.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
2
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
# @api public
|
6
6
|
module NewRelic
|
@@ -1,11 +1,12 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
2
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'capistrano/framework'
|
6
|
+
require_relative 'helpers/send_deployment'
|
6
7
|
|
7
8
|
namespace :newrelic do
|
8
|
-
|
9
|
+
include SendDeployment
|
9
10
|
# notifies New Relic of a deployment
|
10
11
|
desc "Record a deployment in New Relic (newrelic.com)"
|
11
12
|
task :notice_deployment do
|
@@ -19,63 +20,4 @@ namespace :newrelic do
|
|
19
20
|
end
|
20
21
|
end
|
21
22
|
end
|
22
|
-
|
23
|
-
def send_deployment_notification_to_newrelic
|
24
|
-
environment = fetch(:newrelic_rails_env, fetch(:rack_env, fetch(:rails_env, fetch(:stage, "production"))))
|
25
|
-
|
26
|
-
require 'new_relic/cli/command.rb'
|
27
|
-
|
28
|
-
begin
|
29
|
-
# allow overrides to be defined for revision, description, changelog, appname, and user
|
30
|
-
rev = fetch(:newrelic_revision)
|
31
|
-
description = fetch(:newrelic_desc)
|
32
|
-
changelog = fetch(:newrelic_changelog)
|
33
|
-
appname = fetch(:newrelic_appname)
|
34
|
-
user = fetch(:newrelic_user)
|
35
|
-
license_key = fetch(:newrelic_license_key)
|
36
|
-
|
37
|
-
has_scm_from_plugin = respond_to?(:scm_plugin_installed?) && scm_plugin_installed?
|
38
|
-
has_scm_from_config = defined?(scm) && !scm.nil? && scm != :none
|
39
|
-
|
40
|
-
if has_scm_from_plugin || has_scm_from_config
|
41
|
-
changelog ||= lookup_changelog
|
42
|
-
rev ||= fetch(:current_revision)
|
43
|
-
end
|
44
|
-
|
45
|
-
new_revision = rev
|
46
|
-
deploy_options = {
|
47
|
-
:environment => environment,
|
48
|
-
:revision => new_revision,
|
49
|
-
:changelog => changelog,
|
50
|
-
:description => description,
|
51
|
-
:appname => appname,
|
52
|
-
:user => user,
|
53
|
-
:license_key => license_key
|
54
|
-
}
|
55
|
-
|
56
|
-
debug "Uploading deployment to New Relic"
|
57
|
-
deployment = NewRelic::Cli::Deployments.new deploy_options
|
58
|
-
deployment.run
|
59
|
-
info "Uploaded deployment information to New Relic"
|
60
|
-
|
61
|
-
rescue NewRelic::Cli::Command::CommandFailure => e
|
62
|
-
info e.message
|
63
|
-
rescue => e
|
64
|
-
info "Error creating New Relic deployment (#{e})\n#{e.backtrace.join("\n")}"
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
68
|
-
def lookup_changelog
|
69
|
-
previous_revision = fetch(:previous_revision)
|
70
|
-
current_revision = fetch(:current_revision)
|
71
|
-
return unless current_revision && previous_revision
|
72
|
-
|
73
|
-
debug "Retrieving changelog for New Relic Deployment details"
|
74
|
-
|
75
|
-
if Rake::Task.task_defined?("git:check")
|
76
|
-
log_command = "git --no-pager log --no-color --pretty=format:' * %an: %s' " +
|
77
|
-
"--abbrev-commit --no-merges #{previous_revision}..#{current_revision}"
|
78
|
-
`#{log_command}`
|
79
|
-
end
|
80
|
-
end
|
81
23
|
end
|