newrelic_rpm 4.8.0.341 → 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 +4 -1
- data/CHANGELOG.md +868 -3
- data/CONTRIBUTING.md +106 -19
- data/Gemfile +6 -2
- data/Guardfile +18 -1
- data/LICENSE +208 -38
- data/README.md +81 -88
- 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 +145 -31
- data/lib/new_relic/agent/adaptive_sampler.rb +104 -0
- data/lib/new_relic/agent/agent.rb +192 -190
- data/lib/new_relic/agent/agent_logger.rb +5 -1
- data/lib/new_relic/agent/attribute_filter.rb +85 -25
- 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 +375 -67
- 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 +12 -7
- 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 +21 -3
- 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 +12 -11
- 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 +51 -20
- 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 +31 -29
- 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 +25 -20
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +29 -14
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +18 -22
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +11 -12
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +17 -5
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +5 -7
- data/lib/new_relic/agent/http_clients/uri_util.rb +12 -11
- 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 -74
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +82 -56
- data/lib/new_relic/agent/instrumentation/active_job.rb +19 -17
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_record.rb +85 -38
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +82 -24
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +168 -0
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +102 -31
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +47 -57
- 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 +24 -8
- data/lib/new_relic/agent/instrumentation/authlogic.rb +1 -1
- data/lib/new_relic/agent/instrumentation/bunny.rb +115 -44
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +18 -12
- data/lib/new_relic/agent/instrumentation/curb.rb +121 -35
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +6 -4
- 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 +8 -5
- data/lib/new_relic/agent/instrumentation/excon/middleware.rb +4 -3
- data/lib/new_relic/agent/instrumentation/grape.rb +46 -35
- data/lib/new_relic/agent/instrumentation/http.rb +8 -5
- data/lib/new_relic/agent/instrumentation/httpclient.rb +7 -5
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
- data/lib/new_relic/agent/instrumentation/memcache.rb +5 -3
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +10 -6
- 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 +11 -5
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +39 -7
- data/lib/new_relic/agent/instrumentation/net.rb +60 -23
- 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 +1 -1
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
- data/lib/new_relic/agent/instrumentation/{rails5 → rails_notifications}/action_cable.rb +8 -5
- data/lib/new_relic/agent/instrumentation/{rails5 → rails_notifications}/action_controller.rb +4 -4
- data/lib/new_relic/agent/instrumentation/{rails4 → rails_notifications}/action_view.rb +4 -4
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rake.rb +56 -22
- data/lib/new_relic/agent/instrumentation/redis.rb +141 -56
- 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 +27 -10
- 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 +15 -59
- data/lib/new_relic/agent/method_tracer.rb +42 -25
- data/lib/new_relic/agent/method_tracer_helpers.rb +5 -5
- 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/{synthetics_monitor.rb → monitors/synthetics_monitor.rb} +4 -7
- 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 +1 -1
- data/lib/new_relic/agent/priority_sampled_buffer.rb +95 -0
- data/lib/new_relic/agent/range_extensions.rb +1 -1
- 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 +1 -1
- 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 +23 -7
- data/lib/new_relic/agent/stats.rb +1 -1
- data/lib/new_relic/agent/stats_engine.rb +4 -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 +3 -3
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +6 -13
- data/lib/new_relic/agent/system_info.rb +18 -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 +191 -278
- data/lib/new_relic/agent/transaction/abstract_segment.rb +38 -5
- data/lib/new_relic/agent/transaction/datastore_segment.rb +30 -5
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +171 -0
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +123 -71
- data/lib/new_relic/agent/transaction/external_request_segment.rb +41 -89
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +7 -8
- data/lib/new_relic/agent/transaction/request_attributes.rb +1 -1
- data/lib/new_relic/agent/transaction/segment.rb +42 -2
- 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 +7 -23
- data/lib/new_relic/agent/transaction/trace_builder.rb +1 -2
- data/lib/new_relic/agent/transaction/trace_context.rb +168 -0
- data/lib/new_relic/agent/transaction/trace_node.rb +12 -8
- data/lib/new_relic/agent/transaction/tracing.rb +2 -100
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction_error_primitive.rb +13 -22
- data/lib/new_relic/agent/transaction_event_aggregator.rb +7 -16
- data/lib/new_relic/agent/transaction_event_primitive.rb +31 -42
- data/lib/new_relic/agent/transaction_event_recorder.rb +8 -16
- data/lib/new_relic/agent/transaction_metrics.rb +1 -1
- data/lib/new_relic/agent/transaction_sampler.rb +3 -14
- data/lib/new_relic/agent/transaction_time_aggregator.rb +155 -0
- data/lib/new_relic/agent/utilization/aws.rb +1 -1
- data/lib/new_relic/agent/utilization/azure.rb +1 -1
- data/lib/new_relic/agent/utilization/gcp.rb +1 -1
- data/lib/new_relic/agent/utilization/pcf.rb +1 -1
- data/lib/new_relic/agent/utilization/vendor.rb +1 -1
- data/lib/new_relic/agent/utilization_data.rb +37 -2
- 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 -1
- 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 +1 -1
- data/lib/new_relic/control/frameworks/rails3.rb +1 -1
- 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 +1 -1
- 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 +39 -18
- 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 +15 -1
- data/lib/new_relic/version.rb +4 -4
- data/lib/newrelic_rpm.rb +1 -1
- data/lib/sequel/extensions/newrelic_instrumentation.rb +3 -3
- data/lib/sequel/plugins/newrelic_instrumentation.rb +2 -2
- 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_rpm.gemspec +23 -17
- data/recipes/newrelic.rb +1 -1
- data/test/agent_helper.rb +357 -78
- metadata +154 -60
- data/.travis.yml +0 -173
- 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 -140
- data/lib/new_relic/agent/cross_app_tracing.rb +0 -143
- data/lib/new_relic/agent/distributed_trace_monitor.rb +0 -29
- data/lib/new_relic/agent/distributed_trace_payload.rb +0 -223
- data/lib/new_relic/agent/distributed_trace_priority_sampled_buffer.rb +0 -72
- data/lib/new_relic/agent/http_clients/abstract_request.rb +0 -31
- data/lib/new_relic/agent/instrumentation/active_record_4.rb +0 -42
- data/lib/new_relic/agent/instrumentation/active_record_5.rb +0 -36
- data/lib/new_relic/agent/instrumentation/evented_subscriber.rb +0 -104
- data/lib/new_relic/agent/instrumentation/rails4/action_controller.rb +0 -32
- data/lib/new_relic/agent/instrumentation/rails5/action_view.rb +0 -27
- 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/synthetics_event_buffer.rb +0 -40
- data/lib/new_relic/agent/throughput_monitor.rb +0 -59
- data/lib/new_relic/agent/transaction/attributes.rb +0 -153
- data/lib/new_relic/agent/transaction/xray_sample_buffer.rb +0 -64
- data/lib/new_relic/agent/transaction_state.rb +0 -145
- data/lib/new_relic/agent/transaction_timings.rb +0 -57
- data/lib/new_relic/metrics.rb +0 -13
- 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
@@ -0,0 +1,32 @@
|
|
1
|
+
{
|
2
|
+
"name": "newrelic-build-ruby",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "Builds various flavors of Ruby on Ubuntu",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"lint": "eslint *.js",
|
8
|
+
"package": "ncc build index.js -o dist"
|
9
|
+
},
|
10
|
+
"repository": {
|
11
|
+
"type": "git",
|
12
|
+
"url": "git+https://github.com/newrelic/newrelic-ruby-agent.git"
|
13
|
+
},
|
14
|
+
"keywords": [
|
15
|
+
"NewRelic",
|
16
|
+
"GitHub",
|
17
|
+
"Actions",
|
18
|
+
"Ruby"
|
19
|
+
],
|
20
|
+
"bugs": {
|
21
|
+
"url": "https://github.com/newrelic/newrelic-ruby-agent/issues"
|
22
|
+
},
|
23
|
+
"author": "New Relic",
|
24
|
+
"license": "Apache-2.0",
|
25
|
+
"dependencies": {
|
26
|
+
"@actions/cache": "^1.0.2",
|
27
|
+
"@actions/core": "^1.2.4",
|
28
|
+
"@actions/exec": "^1.0.4",
|
29
|
+
"@actions/io": "^1.0.2",
|
30
|
+
"ncc": "^0.3.6"
|
31
|
+
}
|
32
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
_Before contributing, please read our [contributing guidelines](https://github.com/newrelic/newrelic-ruby-agent/blob/main/CONTRIBUTING.md) and [code of conduct](https://github.com/newrelic/.github/blob/master/CODE_OF_CONDUCT.md)._
|
2
|
+
|
3
|
+
# Overview
|
4
|
+
Describe the changes present in the pull request
|
5
|
+
|
6
|
+
# Related Github Issue
|
7
|
+
Include a link to the related GitHub issue, if applicable
|
8
|
+
|
9
|
+
# Testing
|
10
|
+
The agent includes a suite of unit and functional tests which should be used to
|
11
|
+
verify your changes don't break existing functionality. These tests will run with
|
12
|
+
Github Actions when a pull request is made. More details on running the tests locally can be found
|
13
|
+
[here for our unit tests](https://github.com/newrelic/newrelic-ruby-agent/blob/main/test/README.md),
|
14
|
+
and [here for our functional tests](https://github.com/newrelic/newrelic-ruby-agent/blob/main/test/multiverse/README.md).
|
15
|
+
For most contributions it is strongly recommended to add additional tests which
|
16
|
+
exercise your changes.
|
@@ -0,0 +1,212 @@
|
|
1
|
+
name: Continuous Integration
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- main
|
7
|
+
- dev
|
8
|
+
pull_request:
|
9
|
+
|
10
|
+
jobs:
|
11
|
+
build-ruby:
|
12
|
+
runs-on: ubuntu-latest
|
13
|
+
strategy:
|
14
|
+
matrix:
|
15
|
+
ruby-version: [2.0.0-p648, 2.1.10, 2.2.10, 2.3.8, 2.4.10, 2.5.8, 2.6.6, 2.7.1, jruby-9.2.12.0]
|
16
|
+
steps:
|
17
|
+
- uses: actions/checkout@v2
|
18
|
+
|
19
|
+
- name: Build Ruby ${{ matrix.ruby-version }}
|
20
|
+
uses: ./.github/actions/build-ruby
|
21
|
+
with:
|
22
|
+
ruby-version: ${{ matrix.ruby-version }}
|
23
|
+
|
24
|
+
mini-env:
|
25
|
+
needs: build-ruby
|
26
|
+
runs-on: ubuntu-latest
|
27
|
+
strategy:
|
28
|
+
fail-fast: false
|
29
|
+
matrix:
|
30
|
+
rails: [norails, rails60, rails52, rails51, rails42, rails41, rails40, rails32, rails31, rails30]
|
31
|
+
ruby-version: [2.0.0-p648, 2.1.10, 2.2.10, 2.3.8, 2.4.10, 2.5.8, 2.6.6, 2.7.1, jruby-9.2.12.0]
|
32
|
+
exclude:
|
33
|
+
- ruby-version: "2.7.1"
|
34
|
+
rails: rails30
|
35
|
+
- ruby-version: "2.7.1"
|
36
|
+
rails: rails31
|
37
|
+
- ruby-version: "2.7.1"
|
38
|
+
rails: rails32
|
39
|
+
- ruby-version: "2.7.1"
|
40
|
+
rails: rails40
|
41
|
+
- ruby-version: "2.7.1"
|
42
|
+
rails: rails41
|
43
|
+
- ruby-version: "2.7.1"
|
44
|
+
rails: rails42
|
45
|
+
- ruby-version: "2.7.1"
|
46
|
+
rails: rails50
|
47
|
+
- ruby-version: "2.7.1"
|
48
|
+
rails: rails51
|
49
|
+
- ruby-version: "2.7.1"
|
50
|
+
rails: rails52
|
51
|
+
- ruby-version: "2.6.6"
|
52
|
+
rails: rails30
|
53
|
+
- ruby-version: "2.6.6"
|
54
|
+
rails: rails31
|
55
|
+
- ruby-version: "2.6.6"
|
56
|
+
rails: rails32
|
57
|
+
- ruby-version: "2.6.6"
|
58
|
+
rails: rails40
|
59
|
+
- ruby-version: "2.6.6"
|
60
|
+
rails: rails41
|
61
|
+
- ruby-version: "2.5.8"
|
62
|
+
rails: rails30
|
63
|
+
- ruby-version: "2.5.8"
|
64
|
+
rails: rails31
|
65
|
+
- ruby-version: "2.5.8"
|
66
|
+
rails: rails40
|
67
|
+
- ruby-version: "2.5.8"
|
68
|
+
rails: rails41
|
69
|
+
- ruby-version: "2.4.10"
|
70
|
+
rails: rails30
|
71
|
+
- ruby-version: "2.4.10"
|
72
|
+
rails: rails31
|
73
|
+
- ruby-version: "2.4.10"
|
74
|
+
rails: rails40
|
75
|
+
- ruby-version: "2.4.10"
|
76
|
+
rails: rails41
|
77
|
+
- ruby-version: "2.4.10"
|
78
|
+
rails: rails60
|
79
|
+
- ruby-version: "2.3.8"
|
80
|
+
rails: rails60
|
81
|
+
- ruby-version: "2.2.10"
|
82
|
+
rails: rails60
|
83
|
+
- ruby-version: "2.1.10"
|
84
|
+
rails: rails50
|
85
|
+
- ruby-version: "2.1.10"
|
86
|
+
rails: rails51
|
87
|
+
- ruby-version: "2.1.10"
|
88
|
+
rails: rails52
|
89
|
+
- ruby-version: "2.1.10"
|
90
|
+
rails: rails60
|
91
|
+
- ruby-version: "2.0.0-p648"
|
92
|
+
rails: rails50
|
93
|
+
- ruby-version: "2.0.0-p648"
|
94
|
+
rails: rails51
|
95
|
+
- ruby-version: "2.0.0-p648"
|
96
|
+
rails: rails52
|
97
|
+
- ruby-version: "2.0.0-p648"
|
98
|
+
rails: rails60
|
99
|
+
- ruby-version: "jruby-9.2.12.0"
|
100
|
+
rails: rails30
|
101
|
+
- ruby-version: "jruby-9.2.12.0"
|
102
|
+
rails: rails31
|
103
|
+
- ruby-version: "jruby-9.2.12.0"
|
104
|
+
rails: rails32
|
105
|
+
- ruby-version: "jruby-9.2.12.0"
|
106
|
+
rails: rails40
|
107
|
+
- ruby-version: "jruby-9.2.12.0"
|
108
|
+
rails: rails41
|
109
|
+
- ruby-version: "jruby-9.2.12.0"
|
110
|
+
rails: rails60
|
111
|
+
- ruby-version: "jruby-9.2.12.0"
|
112
|
+
rails: rails52
|
113
|
+
steps:
|
114
|
+
- uses: actions/checkout@v2
|
115
|
+
|
116
|
+
- name: Build Ruby ${{ matrix.ruby-version }}
|
117
|
+
uses: ./.github/actions/build-ruby
|
118
|
+
with:
|
119
|
+
ruby-version: ${{ matrix.ruby-version }}
|
120
|
+
|
121
|
+
- name: Start mysql
|
122
|
+
run: sudo systemctl start mysql
|
123
|
+
|
124
|
+
- name: Run Unit Tests
|
125
|
+
uses: nick-invision/retry@v1.0.0
|
126
|
+
with:
|
127
|
+
timeout_minutes: 20
|
128
|
+
max_attempts: 2
|
129
|
+
command: bundle exec rake test:env[${{ matrix.rails }}] TESTOPTS="--verbose"
|
130
|
+
env:
|
131
|
+
DB_PORT: 3306
|
132
|
+
MYSQL_PASSWORD: root
|
133
|
+
|
134
|
+
multiverse:
|
135
|
+
needs: build-ruby
|
136
|
+
runs-on: ubuntu-latest
|
137
|
+
services:
|
138
|
+
redis:
|
139
|
+
image: redis
|
140
|
+
ports:
|
141
|
+
- 6379:6379
|
142
|
+
options: >-
|
143
|
+
--health-cmd "redis-cli ping"
|
144
|
+
--health-interval 10s
|
145
|
+
--health-timeout 5s
|
146
|
+
--health-retries 5
|
147
|
+
mongodb:
|
148
|
+
image: mongo
|
149
|
+
ports:
|
150
|
+
- 27017:27017
|
151
|
+
rabbitmq:
|
152
|
+
image: rabbitmq:latest
|
153
|
+
ports:
|
154
|
+
- 5672:5672
|
155
|
+
options: >-
|
156
|
+
--health-cmd "rabbitmqctl node_health_check"
|
157
|
+
--health-interval 10s
|
158
|
+
--health-timeout 5s
|
159
|
+
--health-retries 5
|
160
|
+
memcached:
|
161
|
+
image: memcached:latest
|
162
|
+
ports:
|
163
|
+
- 11211:11211
|
164
|
+
options: >-
|
165
|
+
--health-cmd "timeout 5 bash -c 'cat < /dev/null > /dev/udp/127.0.0.1/11211'"
|
166
|
+
--health-interval 10s
|
167
|
+
--health-timeout 5s
|
168
|
+
--health-retries 5
|
169
|
+
|
170
|
+
strategy:
|
171
|
+
fail-fast: false
|
172
|
+
matrix:
|
173
|
+
multiverse: [agent, api, background, background_2, database, httpclients, rails, rest, serialization, sinatra]
|
174
|
+
ruby-version: [2.0.0-p648, 2.1.10, 2.2.10, 2.3.8, 2.4.10, 2.5.8, 2.6.6, 2.7.1, jruby-9.2.12.0]
|
175
|
+
include:
|
176
|
+
- ruby-version: "2.7.1"
|
177
|
+
multiverse: infinite_tracing
|
178
|
+
- ruby-version: "2.6.6"
|
179
|
+
multiverse: infinite_tracing
|
180
|
+
- ruby-version: "2.5.8"
|
181
|
+
multiverse: infinite_tracing
|
182
|
+
exclude:
|
183
|
+
- ruby-version: "2.7.1"
|
184
|
+
multiverse: api
|
185
|
+
- ruby-version: "2.7.1"
|
186
|
+
multiverse: sinatra
|
187
|
+
- ruby-version: "jruby-9.2.12.0"
|
188
|
+
multiverse: agent
|
189
|
+
steps:
|
190
|
+
- uses: actions/checkout@v2
|
191
|
+
|
192
|
+
- name: Build Ruby ${{ matrix.ruby-version }}
|
193
|
+
uses: ./.github/actions/build-ruby
|
194
|
+
with:
|
195
|
+
ruby-version: ${{ matrix.ruby-version }}
|
196
|
+
|
197
|
+
- name: Start mysql
|
198
|
+
run: sudo systemctl start mysql
|
199
|
+
|
200
|
+
- name: Run Multiverse Tests
|
201
|
+
uses: nick-invision/retry@v1.0.0
|
202
|
+
with:
|
203
|
+
timeout_minutes: 30
|
204
|
+
max_attempts: 4
|
205
|
+
command: bundle exec rake test:multiverse[group=${{ matrix.multiverse }},verbose]
|
206
|
+
env:
|
207
|
+
DB_PORT: 3306
|
208
|
+
MYSQL_PASSWORD: root
|
209
|
+
|
210
|
+
- name: Annotate errors
|
211
|
+
if: ${{ failure() }}
|
212
|
+
uses: ./.github/actions/annotate
|
@@ -0,0 +1,22 @@
|
|
1
|
+
name: PR Review Checklist
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request:
|
5
|
+
types: [opened]
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
sidekick_checklist:
|
9
|
+
name:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
steps:
|
12
|
+
- name: Checklist
|
13
|
+
uses: unsplash/comment-on-pr@master
|
14
|
+
env:
|
15
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
16
|
+
with:
|
17
|
+
msg: "PR review checklist:\n
|
18
|
+
- [ ] Perform code review\n
|
19
|
+
- [ ] Add performance label\n
|
20
|
+
- [ ] Perform appropriate level of performance testing\n
|
21
|
+
- [ ] Confirm all checks passed\n
|
22
|
+
- [ ] Add version label prior to acceptance"
|
@@ -0,0 +1,78 @@
|
|
1
|
+
name: Release
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- main
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
release:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
steps:
|
12
|
+
- uses: actions/checkout@v2
|
13
|
+
with:
|
14
|
+
fetch-depth: 0
|
15
|
+
- name: update rubygems
|
16
|
+
run: gem update --system
|
17
|
+
- name: Install onetimepass
|
18
|
+
run: pip install onetimepass
|
19
|
+
- name: Configure gem credentials
|
20
|
+
run: |
|
21
|
+
echo ::set-env name=GEM_HOST_API_KEY::${{ secrets.RUBYGEMS_API_KEY }}
|
22
|
+
echo ::set-env name=RUBYGEMS_MFA_KEY::${{ secrets.RUBYGEMS_MFA_KEY }}
|
23
|
+
- name: Build newrelic_rpm gem
|
24
|
+
run: gem build newrelic_rpm.gemspec
|
25
|
+
- name: Build newrelic-infinite_tracing gem
|
26
|
+
run: |
|
27
|
+
cd infinite_tracing
|
28
|
+
gem build newrelic-infinite_tracing.gemspec
|
29
|
+
cd ..
|
30
|
+
- name: Determine version
|
31
|
+
run: |
|
32
|
+
echo ::set-env name=VERSION::$(ls newrelic_rpm-*.gem | ruby -pe 'sub(/newrelic_rpm\-(.*).gem/, "\\1")')
|
33
|
+
- name: Tag new version
|
34
|
+
run: |
|
35
|
+
if [ $(git tag -l ${{ env.VERSION }}) ]; then
|
36
|
+
echo "Tag already created for this version"
|
37
|
+
else
|
38
|
+
git tag ${{ env.VERSION }}
|
39
|
+
git push origin ${{ env.VERSION }}
|
40
|
+
fi
|
41
|
+
|
42
|
+
- name: Obtain OTP to publish newrelic_rpm to rubygems.org
|
43
|
+
run: echo ::set-env name=RUBYGEMS_OTP::$(python ./.github/workflows/scripts/rubygems-authenticate.py RUBYGEMS_MFA_KEY)
|
44
|
+
- name: Publish newrelic_rpm to rubygems.org
|
45
|
+
run: ruby ./.github/workflows/scripts/rubygems-publish.rb newrelic_rpm
|
46
|
+
|
47
|
+
- name: Obtain OTP to publish newrelic-infinite_tracing to rubygems.org
|
48
|
+
run: echo ::set-env name=RUBYGEMS_OTP::$(python ./.github/workflows/scripts/rubygems-authenticate.py RUBYGEMS_MFA_KEY)
|
49
|
+
- name: Publish newrelic-infinite_tracing to rubygems.org
|
50
|
+
run: ruby ./.github/workflows/scripts/rubygems-publish.rb infinite_tracing/newrelic-infinite_tracing
|
51
|
+
|
52
|
+
- name: Update system configuration page
|
53
|
+
run: |
|
54
|
+
PAYLOAD="{
|
55
|
+
\"system_configuration\": {
|
56
|
+
\"key\": \"ruby_agent_version\",
|
57
|
+
\"value\": \"${{ env.VERSION }}\"
|
58
|
+
}
|
59
|
+
}"
|
60
|
+
CONTENT_TYPE='Content-Type: application/json'
|
61
|
+
|
62
|
+
# STAGING
|
63
|
+
curl -X POST 'https://staging-api.newrelic.com/v2/system_configuration.json' \
|
64
|
+
-H "X-Api-Key:${{ secrets.NEW_RELIC_API_KEY_STAGING }}" -i \
|
65
|
+
-H "$CONTENT_TYPE" \
|
66
|
+
-d "$PAYLOAD"
|
67
|
+
|
68
|
+
# PRODUCTION
|
69
|
+
curl -X POST 'https://api.newrelic.com/v2/system_configuration.json' \
|
70
|
+
-H "X-Api-Key:${{ secrets.NEW_RELIC_API_KEY_PRODUCTION }}" -i \
|
71
|
+
-H "$CONTENT_TYPE" \
|
72
|
+
-d "$PAYLOAD"
|
73
|
+
|
74
|
+
# EU PRODUCTION
|
75
|
+
curl -X POST 'https://api.eu.newrelic.com/v2/system_configuration.json' \
|
76
|
+
-H "X-Api-Key:$ {{ secrets.NEW_RELIC_API_KEY_PRODUCTION }}" -i \
|
77
|
+
-H "$CONTENT_TYPE" \
|
78
|
+
-d "$PAYLOAD"
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import os
|
2
|
+
|
3
|
+
import argparse
|
4
|
+
import onetimepass
|
5
|
+
|
6
|
+
if __name__ == '__main__':
|
7
|
+
|
8
|
+
parser = argparse.ArgumentParser(
|
9
|
+
description='Generate a one-time password from a key'
|
10
|
+
)
|
11
|
+
parser.add_argument('env_var', type=str, help='The name of the environment variable from which to load the MFA key from the service')
|
12
|
+
args = parser.parse_args()
|
13
|
+
print(onetimepass.get_totp(os.getenv(args.env_var)))
|
@@ -0,0 +1,32 @@
|
|
1
|
+
gem_name = ARGV[0]
|
2
|
+
raise "gem name sans version must be supplied" if gem_name.to_s == ""
|
3
|
+
|
4
|
+
api_key = ENV["GEM_HOST_API_KEY"]
|
5
|
+
raise "GEM_HOST_API_KEY must be set" if api_key.to_s == ""
|
6
|
+
|
7
|
+
version = ENV["VERSION"]
|
8
|
+
raise "VERSION environment must be set" if version.to_s == ""
|
9
|
+
|
10
|
+
gem_filename = "#{gem_name}-#{version}.gem"
|
11
|
+
raise "#{gem_filename} is missing!" unless File.exist?(gem_filename)
|
12
|
+
|
13
|
+
otp = ENV["RUBYGEMS_OTP"]
|
14
|
+
raise "RUBYGEMS_OTP environment must be set" if otp.to_s == ""
|
15
|
+
|
16
|
+
puts "Publshing the #{gem_filename} file..."
|
17
|
+
cmd = "gem push --otp #{otp} #{gem_filename}"
|
18
|
+
puts "executing: #{cmd}"
|
19
|
+
|
20
|
+
result = `#{cmd}`
|
21
|
+
if $?.to_i.zero?
|
22
|
+
puts "#{gem_filename} successfully pushed to rubygems.org!"
|
23
|
+
else
|
24
|
+
if result =~ /Repushing of gem versions is not allowed/
|
25
|
+
puts "Pushing #{gem_filename} skipped because this version is already published to rubygems.org!"
|
26
|
+
exit 0
|
27
|
+
else
|
28
|
+
puts "#{gem_filename} failed to push to rubygems.org!"
|
29
|
+
puts result
|
30
|
+
exit 1
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
name: Snyk Check
|
2
|
+
|
3
|
+
on:
|
4
|
+
schedule:
|
5
|
+
- cron: "0 7 * * *"
|
6
|
+
pull_request:
|
7
|
+
branches:
|
8
|
+
- main
|
9
|
+
|
10
|
+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
11
|
+
jobs:
|
12
|
+
security:
|
13
|
+
runs-on: ubuntu-latest
|
14
|
+
steps:
|
15
|
+
- uses: actions/checkout@v2
|
16
|
+
- name: Setup Ruby
|
17
|
+
uses: actions/setup-ruby@v1
|
18
|
+
with:
|
19
|
+
ruby-version: 2.6
|
20
|
+
- name: Bundle
|
21
|
+
run: bundle install
|
22
|
+
- name: Run Snyk
|
23
|
+
uses: snyk/actions/ruby@master
|
24
|
+
env:
|
25
|
+
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
26
|
+
with:
|
27
|
+
command: test
|