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
data/.travis.yml
DELETED
@@ -1,173 +0,0 @@
|
|
1
|
-
services:
|
2
|
-
- mysql
|
3
|
-
- redis-server
|
4
|
-
- memcached
|
5
|
-
- rabbitmq
|
6
|
-
|
7
|
-
language: ruby
|
8
|
-
|
9
|
-
sudo: required
|
10
|
-
|
11
|
-
before_install:
|
12
|
-
- gem --version
|
13
|
-
- gem update --system
|
14
|
-
- ./test/script/before_install/gemstash_mirror.sh
|
15
|
-
- bundle --version
|
16
|
-
|
17
|
-
install: bundle install
|
18
|
-
|
19
|
-
before_script: ./test/script/before_script/install_mongodb.sh
|
20
|
-
|
21
|
-
script: ./test/script/ci.sh
|
22
|
-
|
23
|
-
branches:
|
24
|
-
only:
|
25
|
-
- master
|
26
|
-
- dev
|
27
|
-
- release
|
28
|
-
|
29
|
-
notifications:
|
30
|
-
webhooks: http://notifitron.herokuapp.com/
|
31
|
-
on_success: always
|
32
|
-
on_failure: always
|
33
|
-
|
34
|
-
rvm:
|
35
|
-
# Run slowest builds first to try and optimize overall cycle time.
|
36
|
-
- jruby-9.1.13.0
|
37
|
-
- 2.5.0
|
38
|
-
- 2.4.2
|
39
|
-
- 2.3.5
|
40
|
-
- 2.2.8
|
41
|
-
- 2.1.10
|
42
|
-
- 2.0.0-p648
|
43
|
-
|
44
|
-
env:
|
45
|
-
global:
|
46
|
-
- BUNDLE_PATH=/home/travis/bundle
|
47
|
-
- MONGODB=2.6.11
|
48
|
-
- JAVA_OPTS="-XX:+TieredCompilation -XX:TieredStopAtLevel=1 -Xmx640m"
|
49
|
-
- JRUBY_OPTS="-Xcompile.invokedynamic=false -J-Djruby.compile.mode=OFF"
|
50
|
-
- RBXOPT="-Xcompiler.no_rbc -Xint"
|
51
|
-
- SERIALIZE=1
|
52
|
-
- TESTOPTS="-v"
|
53
|
-
- VERBOSE = 1
|
54
|
-
matrix:
|
55
|
-
# RUBY-1668 rails21, rails22, and rails23 are all excluded below
|
56
|
-
- TYPE=UNIT ENVIRONMENT=rails21
|
57
|
-
- TYPE=UNIT ENVIRONMENT=rails22
|
58
|
-
- TYPE=UNIT ENVIRONMENT=rails23
|
59
|
-
|
60
|
-
- TYPE=UNIT ENVIRONMENT=rails30
|
61
|
-
- TYPE=UNIT ENVIRONMENT=rails31
|
62
|
-
- TYPE=UNIT ENVIRONMENT=rails32
|
63
|
-
- TYPE=UNIT ENVIRONMENT=rails40
|
64
|
-
- TYPE=UNIT ENVIRONMENT=rails41
|
65
|
-
- TYPE=UNIT ENVIRONMENT=rails42
|
66
|
-
- TYPE=UNIT ENVIRONMENT=rails50
|
67
|
-
- TYPE=UNIT ENVIRONMENT=rails51
|
68
|
-
- TYPE=UNIT ENVIRONMENT=norails
|
69
|
-
- TYPE=FUNCTIONAL GROUP=agent
|
70
|
-
- TYPE=FUNCTIONAL GROUP=api
|
71
|
-
- TYPE=FUNCTIONAL GROUP=background
|
72
|
-
- TYPE=FUNCTIONAL GROUP=database
|
73
|
-
- TYPE=FUNCTIONAL GROUP=httpclients
|
74
|
-
- TYPE=FUNCTIONAL GROUP=rails
|
75
|
-
- TYPE=FUNCTIONAL GROUP=serialization
|
76
|
-
- TYPE=FUNCTIONAL GROUP=sinatra
|
77
|
-
- TYPE=FUNCTIONAL GROUP=rest
|
78
|
-
- TYPE=FUNCTIONAL GROUP=background_2
|
79
|
-
- TYPE=NULLVERSE
|
80
|
-
|
81
|
-
matrix:
|
82
|
-
fast_finish: true
|
83
|
-
exclude:
|
84
|
-
# Unsupported Rails/Ruby combinations
|
85
|
-
# 2.5
|
86
|
-
- rvm: 2.5.0
|
87
|
-
env: TYPE=UNIT ENVIRONMENT=rails21
|
88
|
-
- rvm: 2.5.0
|
89
|
-
env: TYPE=UNIT ENVIRONMENT=rails22
|
90
|
-
- rvm: 2.5.0
|
91
|
-
env: TYPE=UNIT ENVIRONMENT=rails23
|
92
|
-
- rvm: 2.5.0
|
93
|
-
env: TYPE=UNIT ENVIRONMENT=rails30
|
94
|
-
- rvm: 2.5.0
|
95
|
-
env: TYPE=UNIT ENVIRONMENT=rails31
|
96
|
-
- rvm: 2.5.0
|
97
|
-
env: TYPE=UNIT ENVIRONMENT=rails32
|
98
|
-
- rvm: 2.5.0
|
99
|
-
env: TYPE=UNIT ENVIRONMENT=rails40
|
100
|
-
- rvm: 2.5.0
|
101
|
-
env: TYPE=UNIT ENVIRONMENT=rails41
|
102
|
-
|
103
|
-
# 2.4
|
104
|
-
- rvm: 2.4.2
|
105
|
-
env: TYPE=UNIT ENVIRONMENT=rails21
|
106
|
-
- rvm: 2.4.2
|
107
|
-
env: TYPE=UNIT ENVIRONMENT=rails22
|
108
|
-
- rvm: 2.4.2
|
109
|
-
env: TYPE=UNIT ENVIRONMENT=rails23
|
110
|
-
- rvm: 2.4.2
|
111
|
-
env: TYPE=UNIT ENVIRONMENT=rails30
|
112
|
-
- rvm: 2.4.2
|
113
|
-
env: TYPE=UNIT ENVIRONMENT=rails31
|
114
|
-
- rvm: 2.4.2
|
115
|
-
env: TYPE=UNIT ENVIRONMENT=rails32
|
116
|
-
- rvm: 2.4.2
|
117
|
-
env: TYPE=UNIT ENVIRONMENT=rails40
|
118
|
-
- rvm: 2.4.2
|
119
|
-
env: TYPE=UNIT ENVIRONMENT=rails41
|
120
|
-
|
121
|
-
# 2.3
|
122
|
-
- rvm: 2.3.5
|
123
|
-
env: TYPE=UNIT ENVIRONMENT=rails21
|
124
|
-
- rvm: 2.3.5
|
125
|
-
env: TYPE=UNIT ENVIRONMENT=rails22
|
126
|
-
- rvm: 2.3.5
|
127
|
-
env: TYPE=UNIT ENVIRONMENT=rails23
|
128
|
-
|
129
|
-
# 2.2
|
130
|
-
- rvm: 2.2.8
|
131
|
-
env: TYPE=UNIT ENVIRONMENT=rails21
|
132
|
-
- rvm: 2.2.8
|
133
|
-
env: TYPE=UNIT ENVIRONMENT=rails22
|
134
|
-
- rvm: 2.2.8
|
135
|
-
env: TYPE=UNIT ENVIRONMENT=rails23
|
136
|
-
|
137
|
-
# 2.1
|
138
|
-
- rvm: 2.1.10
|
139
|
-
env: TYPE=UNIT ENVIRONMENT=rails21
|
140
|
-
- rvm: 2.1.10
|
141
|
-
env: TYPE=UNIT ENVIRONMENT=rails22
|
142
|
-
- rvm: 2.1.10
|
143
|
-
env: TYPE=UNIT ENVIRONMENT=rails23
|
144
|
-
- rvm: 2.1.10
|
145
|
-
env: TYPE=UNIT ENVIRONMENT=rails50
|
146
|
-
- rvm: 2.1.10
|
147
|
-
env: TYPE=UNIT ENVIRONMENT=rails51
|
148
|
-
|
149
|
-
# 2.0
|
150
|
-
- rvm: 2.0.0-p648
|
151
|
-
env: TYPE=UNIT ENVIRONMENT=rails21
|
152
|
-
- rvm: 2.0.0-p648
|
153
|
-
env: TYPE=UNIT ENVIRONMENT=rails22
|
154
|
-
- rvm: 2.0.0-p648
|
155
|
-
env: TYPE=UNIT ENVIRONMENT=rails23
|
156
|
-
- rvm: 2.0.0-p648
|
157
|
-
env: TYPE=UNIT ENVIRONMENT=rails50
|
158
|
-
- rvm: 2.0.0-p648
|
159
|
-
env: TYPE=UNIT ENVIRONMENT=rails51
|
160
|
-
|
161
|
-
# jruby 9.0
|
162
|
-
- rvm: jruby-9.1.13.0
|
163
|
-
env: TYPE=UNIT ENVIRONMENT=rails21
|
164
|
-
- rvm: jruby-9.1.13.0
|
165
|
-
env: TYPE=UNIT ENVIRONMENT=rails22
|
166
|
-
- rvm: jruby-9.1.13.0
|
167
|
-
env: TYPE=UNIT ENVIRONMENT=rails23
|
168
|
-
- rvm: jruby-9.1.13.0
|
169
|
-
env: TYPE=UNIT ENVIRONMENT=rails30
|
170
|
-
- rvm: jruby-9.1.13.0
|
171
|
-
env: TYPE=UNIT ENVIRONMENT=rails31
|
172
|
-
- rvm: jruby-9.1.13.0
|
173
|
-
env: TYPE=UNIT ENVIRONMENT=rails32
|
@@ -1,117 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
|
4
|
-
|
5
|
-
require 'new_relic/agent/transaction_state'
|
6
|
-
|
7
|
-
module NewRelic
|
8
|
-
module Agent
|
9
|
-
# This module supports calculation of actual time spent processing requests over the course of
|
10
|
-
# one harvest period. It's similar to what you would get if you just added up all the
|
11
|
-
# execution times of controller calls, however that will be inaccurate when requests
|
12
|
-
# span the minute boundaries. This module manages accounting of requests not yet
|
13
|
-
# completed.
|
14
|
-
#
|
15
|
-
# Calls are re-entrant. All start calls must be paired with finish
|
16
|
-
# calls, or a reset call.
|
17
|
-
module BusyCalculator
|
18
|
-
|
19
|
-
extend self
|
20
|
-
|
21
|
-
# For testability, add accessors:
|
22
|
-
attr_reader :harvest_start, :accumulator
|
23
|
-
|
24
|
-
# sets up busy calculations based on the start and end of
|
25
|
-
# transactions - used for a rough estimate of what percentage of
|
26
|
-
# wall clock time is spent processing requests
|
27
|
-
def dispatcher_start(time) #THREAD_LOCAL_ACCESS
|
28
|
-
state = TransactionState.tl_get
|
29
|
-
state.busy_entries ||= 0
|
30
|
-
callers = state.busy_entries += 1
|
31
|
-
return if callers > 1
|
32
|
-
@lock.synchronize do
|
33
|
-
@entrypoint_stack.push time
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
|
-
# called when a transaction finishes, to add time to the
|
38
|
-
# instance variable accumulator. this is harvested when we send
|
39
|
-
# data to the server
|
40
|
-
def dispatcher_finish(end_time = nil) #THREAD_LOCAL_ACCESS
|
41
|
-
state = TransactionState.tl_get
|
42
|
-
# If #dispatcher_start hasn't been called at least once, abort early
|
43
|
-
return unless state.busy_entries
|
44
|
-
|
45
|
-
end_time ||= time_now
|
46
|
-
callers = state.busy_entries -= 1
|
47
|
-
|
48
|
-
# Ignore nested calls
|
49
|
-
return if callers > 0
|
50
|
-
|
51
|
-
@lock.synchronize do
|
52
|
-
if @entrypoint_stack.empty?
|
53
|
-
::NewRelic::Agent.logger.warn("Stack underflow tracking dispatcher entry and exit!\n #{caller.join(" \n")}")
|
54
|
-
else
|
55
|
-
@accumulator += (end_time - @entrypoint_stack.pop).to_f
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
# this returns the size of the entry point stack, which
|
61
|
-
# determines how many transactions are running
|
62
|
-
def busy_count
|
63
|
-
@entrypoint_stack.size
|
64
|
-
end
|
65
|
-
|
66
|
-
# Reset the state of the information accumulated by all threads,
|
67
|
-
# but only reset the recursion counter for this thread.
|
68
|
-
def reset #THREAD_LOCAL_ACCESS
|
69
|
-
@entrypoint_stack = []
|
70
|
-
TransactionState.tl_get.busy_entries = 0
|
71
|
-
@lock ||= Mutex.new
|
72
|
-
@accumulator = 0
|
73
|
-
@harvest_start = time_now
|
74
|
-
end
|
75
|
-
|
76
|
-
|
77
|
-
# Called before uploading to to the server to collect current busy stats.
|
78
|
-
def harvest_busy
|
79
|
-
busy = 0
|
80
|
-
t0 = time_now
|
81
|
-
@lock.synchronize do
|
82
|
-
busy = accumulator
|
83
|
-
@accumulator = 0
|
84
|
-
|
85
|
-
# Walk through the stack and capture all times up to
|
86
|
-
# now for entrypoints
|
87
|
-
@entrypoint_stack.size.times do |frame|
|
88
|
-
busy += (t0 - @entrypoint_stack[frame]).to_f
|
89
|
-
@entrypoint_stack[frame] = t0
|
90
|
-
end
|
91
|
-
|
92
|
-
end
|
93
|
-
|
94
|
-
busy = 0.0 if busy < 0.0 # don't go below 0%
|
95
|
-
|
96
|
-
time_window = (t0 - harvest_start).to_f
|
97
|
-
time_window = 1.0 if time_window == 0.0 # protect against divide by zero
|
98
|
-
|
99
|
-
busy = busy / time_window
|
100
|
-
|
101
|
-
if Agent.config[:report_instance_busy]
|
102
|
-
NewRelic::Agent.record_metric('Instance/Busy', busy)
|
103
|
-
end
|
104
|
-
@harvest_start = t0
|
105
|
-
end
|
106
|
-
|
107
|
-
private
|
108
|
-
|
109
|
-
# so we can stub Time.now only for the BusyCalculator in tests
|
110
|
-
def time_now
|
111
|
-
Time.now
|
112
|
-
end
|
113
|
-
|
114
|
-
self.reset
|
115
|
-
end
|
116
|
-
end
|
117
|
-
end
|
@@ -1,55 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
|
4
|
-
|
5
|
-
require 'forwardable'
|
6
|
-
|
7
|
-
module NewRelic
|
8
|
-
module Agent
|
9
|
-
module Commands
|
10
|
-
class XraySession
|
11
|
-
extend Forwardable
|
12
|
-
|
13
|
-
attr_reader :id, :command_arguments
|
14
|
-
attr_reader :xray_session_name, :key_transaction_name,
|
15
|
-
:requested_trace_count, :duration, :sample_period
|
16
|
-
|
17
|
-
def initialize(command_arguments)
|
18
|
-
@command_arguments = command_arguments
|
19
|
-
@id = command_arguments.fetch("x_ray_id", nil)
|
20
|
-
@xray_session_name = command_arguments.fetch("xray_session_name", "")
|
21
|
-
@key_transaction_name = command_arguments.fetch("key_transaction_name", "")
|
22
|
-
@requested_trace_count = command_arguments.fetch("requested_trace_count", 100)
|
23
|
-
@duration = command_arguments.fetch("duration", 86400)
|
24
|
-
@sample_period = command_arguments.fetch("sample_period", 0.1)
|
25
|
-
@run_profiler = command_arguments.fetch("run_profiler", true)
|
26
|
-
end
|
27
|
-
|
28
|
-
def active?
|
29
|
-
@active
|
30
|
-
end
|
31
|
-
|
32
|
-
def run_profiler?
|
33
|
-
@run_profiler && NewRelic::Agent.config[:'xray_session.allow_profiles']
|
34
|
-
end
|
35
|
-
|
36
|
-
def activate
|
37
|
-
@active = true
|
38
|
-
@start_time = Time.now
|
39
|
-
end
|
40
|
-
|
41
|
-
def deactivate
|
42
|
-
@active = false
|
43
|
-
end
|
44
|
-
|
45
|
-
def requested_period
|
46
|
-
@sample_period
|
47
|
-
end
|
48
|
-
|
49
|
-
def finished?
|
50
|
-
@start_time + @duration < Time.now
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
end
|
@@ -1,161 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
|
4
|
-
|
5
|
-
require 'forwardable'
|
6
|
-
require 'thread'
|
7
|
-
require 'new_relic/agent/commands/xray_session'
|
8
|
-
|
9
|
-
module NewRelic
|
10
|
-
module Agent
|
11
|
-
module Commands
|
12
|
-
class XraySessionCollection
|
13
|
-
extend Forwardable
|
14
|
-
|
15
|
-
def initialize(backtrace_service, event_listener)
|
16
|
-
@backtrace_service = backtrace_service
|
17
|
-
|
18
|
-
# This lock protects access to the sessions hash, but it's expected
|
19
|
-
# that individual session objects within the hash will be manipulated
|
20
|
-
# outside the lock. This is safe because manipulation of the session
|
21
|
-
# objects is expected from only a single thread (the harvest thread)
|
22
|
-
@sessions_lock = Mutex.new
|
23
|
-
@sessions = {}
|
24
|
-
|
25
|
-
if event_listener
|
26
|
-
event_listener.subscribe(:before_harvest, &method(:cleanup_finished_sessions))
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
def handle_active_xray_sessions(agent_command)
|
31
|
-
# If X-Rays are disabled, just be quiet about it and don't start the
|
32
|
-
# command. Other hosts might be running the X-Ray, so we don't need
|
33
|
-
# to bark on every get_agent_commands.
|
34
|
-
if !NewRelic::Agent.config[:'xray_session.enabled']
|
35
|
-
NewRelic::Agent.logger.debug("Not responding to X-Ray command because of config 'xray_session.enabled' = #{NewRelic::Agent.config[:'xray_session.enabled']}")
|
36
|
-
return
|
37
|
-
end
|
38
|
-
|
39
|
-
incoming_ids = agent_command.arguments["xray_ids"]
|
40
|
-
deactivate_for_incoming_sessions(incoming_ids)
|
41
|
-
activate_sessions(incoming_ids)
|
42
|
-
end
|
43
|
-
|
44
|
-
def session_id_for_transaction_name(name)
|
45
|
-
@sessions_lock.synchronize do
|
46
|
-
@sessions.each do |id, session|
|
47
|
-
return id if session.key_transaction_name == name
|
48
|
-
end
|
49
|
-
end
|
50
|
-
nil
|
51
|
-
end
|
52
|
-
|
53
|
-
NO_PROFILES = [].freeze
|
54
|
-
|
55
|
-
def harvest_thread_profiles
|
56
|
-
return NO_PROFILES unless NewRelic::Agent::Threading::BacktraceService.is_supported?
|
57
|
-
|
58
|
-
profiles = active_thread_profiling_sessions.map do |session|
|
59
|
-
NewRelic::Agent.logger.debug("Harvesting profile for X-Ray session #{session.inspect}")
|
60
|
-
@backtrace_service.harvest(session.key_transaction_name)
|
61
|
-
end
|
62
|
-
profiles.reject! {|p| p.empty?}
|
63
|
-
profiles.compact
|
64
|
-
end
|
65
|
-
|
66
|
-
def stop_all_sessions
|
67
|
-
deactivate_for_incoming_sessions([])
|
68
|
-
end
|
69
|
-
|
70
|
-
def cleanup_finished_sessions
|
71
|
-
finished_session_ids.each do |id|
|
72
|
-
NewRelic::Agent.logger.debug("Finished X-Ray session #{id} by duration. Removing it from active sessions.")
|
73
|
-
remove_session_by_id(id)
|
74
|
-
end
|
75
|
-
end
|
76
|
-
|
77
|
-
|
78
|
-
### Internals
|
79
|
-
|
80
|
-
def new_relic_service
|
81
|
-
NewRelic::Agent.instance.service
|
82
|
-
end
|
83
|
-
|
84
|
-
# These are unsynchonized and should only be used for testing
|
85
|
-
def_delegators :@sessions, :[], :include?
|
86
|
-
|
87
|
-
def active_thread_profiling_sessions
|
88
|
-
@sessions_lock.synchronize do
|
89
|
-
@sessions.values.select { |s| s.active? && s.run_profiler? }
|
90
|
-
end
|
91
|
-
end
|
92
|
-
|
93
|
-
### Session activation
|
94
|
-
|
95
|
-
def activate_sessions(incoming_ids)
|
96
|
-
lookup_metadata_for(ids_to_activate(incoming_ids)).each do |raw|
|
97
|
-
add_session(XraySession.new(raw))
|
98
|
-
end
|
99
|
-
end
|
100
|
-
|
101
|
-
def ids_to_activate(incoming_ids)
|
102
|
-
@sessions_lock.synchronize { incoming_ids - @sessions.keys }
|
103
|
-
end
|
104
|
-
|
105
|
-
# Please don't hold the @sessions_lock across me! Calling the service
|
106
|
-
# is time-consuming, and will block request threads. Which is rude.
|
107
|
-
def lookup_metadata_for(ids_to_activate)
|
108
|
-
return [] if ids_to_activate.empty?
|
109
|
-
|
110
|
-
NewRelic::Agent.logger.debug("Retrieving metadata for X-Ray sessions #{ids_to_activate.inspect}")
|
111
|
-
new_relic_service.get_xray_metadata(ids_to_activate)
|
112
|
-
end
|
113
|
-
|
114
|
-
def add_session(session)
|
115
|
-
NewRelic::Agent.logger.debug("Adding X-Ray session #{session.inspect}")
|
116
|
-
NewRelic::Agent.increment_metric("Supportability/XraySessions/Starts")
|
117
|
-
|
118
|
-
@sessions_lock.synchronize { @sessions[session.id] = session }
|
119
|
-
|
120
|
-
session.activate
|
121
|
-
if session.run_profiler?
|
122
|
-
@backtrace_service.subscribe(session.key_transaction_name, session.command_arguments)
|
123
|
-
end
|
124
|
-
end
|
125
|
-
|
126
|
-
### Session deactivation
|
127
|
-
|
128
|
-
def deactivate_for_incoming_sessions(incoming_ids)
|
129
|
-
ids_to_remove(incoming_ids).each do |session_id|
|
130
|
-
remove_session_by_id(session_id)
|
131
|
-
end
|
132
|
-
end
|
133
|
-
|
134
|
-
def ids_to_remove(incoming_ids)
|
135
|
-
@sessions_lock.synchronize { @sessions.keys - incoming_ids }
|
136
|
-
end
|
137
|
-
|
138
|
-
def remove_session_by_id(id)
|
139
|
-
session = @sessions_lock.synchronize { @sessions.delete(id) }
|
140
|
-
|
141
|
-
if session
|
142
|
-
NewRelic::Agent.logger.debug("Removing X-Ray session #{session.inspect}")
|
143
|
-
NewRelic::Agent.increment_metric("Supportability/XraySessions/Stops")
|
144
|
-
|
145
|
-
if session.run_profiler?
|
146
|
-
@backtrace_service.unsubscribe(session.key_transaction_name)
|
147
|
-
end
|
148
|
-
session.deactivate
|
149
|
-
end
|
150
|
-
end
|
151
|
-
|
152
|
-
def finished_session_ids
|
153
|
-
@sessions_lock.synchronize do
|
154
|
-
@sessions.map{|k, s| k if s.finished?}.compact
|
155
|
-
end
|
156
|
-
end
|
157
|
-
|
158
|
-
end
|
159
|
-
end
|
160
|
-
end
|
161
|
-
end
|