sundawg_newrelic_rpm 3.5.8.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +22 -0
- data/.project +23 -0
- data/.travis.yml +9 -0
- data/CHANGELOG +969 -0
- data/GUIDELINES_FOR_CONTRIBUTING.md +76 -0
- data/Gemfile +20 -0
- data/LICENSE +87 -0
- data/README.md +195 -0
- data/Rakefile +58 -0
- data/bin/mongrel_rpm +33 -0
- data/bin/newrelic +13 -0
- data/bin/newrelic_cmd +5 -0
- data/cert/cacert.pem +118 -0
- data/cert/oldsite.pem +28 -0
- data/cert/site.pem +27 -0
- data/config.dot +290 -0
- data/config/database.yml +5 -0
- data/gem-public_cert.pem +20 -0
- data/init.rb +31 -0
- data/install.rb +9 -0
- data/lib/conditional_vendored_dependency_detection.rb +3 -0
- data/lib/conditional_vendored_metric_parser.rb +5 -0
- data/lib/new_relic/agent.rb +488 -0
- data/lib/new_relic/agent/agent.rb +1069 -0
- data/lib/new_relic/agent/agent_logger.rb +173 -0
- data/lib/new_relic/agent/audit_logger.rb +72 -0
- data/lib/new_relic/agent/beacon_configuration.rb +107 -0
- data/lib/new_relic/agent/browser_monitoring.rb +195 -0
- data/lib/new_relic/agent/busy_calculator.rb +112 -0
- data/lib/new_relic/agent/chained_call.rb +13 -0
- data/lib/new_relic/agent/configuration.rb +74 -0
- data/lib/new_relic/agent/configuration/defaults.rb +132 -0
- data/lib/new_relic/agent/configuration/environment_source.rb +49 -0
- data/lib/new_relic/agent/configuration/manager.rb +148 -0
- data/lib/new_relic/agent/configuration/mask_defaults.rb +11 -0
- data/lib/new_relic/agent/configuration/server_source.rb +31 -0
- data/lib/new_relic/agent/configuration/yaml_source.rb +67 -0
- data/lib/new_relic/agent/cross_app_monitor.rb +239 -0
- data/lib/new_relic/agent/cross_app_tracing.rb +281 -0
- data/lib/new_relic/agent/database.rb +254 -0
- data/lib/new_relic/agent/error_collector.rb +266 -0
- data/lib/new_relic/agent/event_listener.rb +43 -0
- data/lib/new_relic/agent/instrumentation.rb +9 -0
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +29 -0
- data/lib/new_relic/agent/instrumentation/active_record.rb +134 -0
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +68 -0
- data/lib/new_relic/agent/instrumentation/authlogic.rb +19 -0
- data/lib/new_relic/agent/instrumentation/browser_monitoring_timings.rb +51 -0
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +485 -0
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +230 -0
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +52 -0
- data/lib/new_relic/agent/instrumentation/memcache.rb +80 -0
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +41 -0
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +29 -0
- data/lib/new_relic/agent/instrumentation/metric_frame.rb +356 -0
- data/lib/new_relic/agent/instrumentation/metric_frame/pop.rb +80 -0
- data/lib/new_relic/agent/instrumentation/net.rb +31 -0
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +23 -0
- data/lib/new_relic/agent/instrumentation/queue_time.rb +68 -0
- data/lib/new_relic/agent/instrumentation/rack.rb +98 -0
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +114 -0
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +42 -0
- data/lib/new_relic/agent/instrumentation/rails/errors.rb +42 -0
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +180 -0
- data/lib/new_relic/agent/instrumentation/rails3/errors.rb +41 -0
- data/lib/new_relic/agent/instrumentation/rails4/action_controller.rb +145 -0
- data/lib/new_relic/agent/instrumentation/rails4/errors.rb +45 -0
- data/lib/new_relic/agent/instrumentation/resque.rb +81 -0
- data/lib/new_relic/agent/instrumentation/sinatra.rb +107 -0
- data/lib/new_relic/agent/instrumentation/sunspot.rb +29 -0
- data/lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb +22 -0
- data/lib/new_relic/agent/method_tracer.rb +530 -0
- data/lib/new_relic/agent/new_relic_service.rb +513 -0
- data/lib/new_relic/agent/pipe_channel_manager.rb +175 -0
- data/lib/new_relic/agent/pipe_service.rb +63 -0
- data/lib/new_relic/agent/rules_engine.rb +72 -0
- data/lib/new_relic/agent/sampler.rb +50 -0
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +58 -0
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +86 -0
- data/lib/new_relic/agent/samplers/memory_sampler.rb +141 -0
- data/lib/new_relic/agent/samplers/object_sampler.rb +26 -0
- data/lib/new_relic/agent/shim_agent.rb +28 -0
- data/lib/new_relic/agent/sql_sampler.rb +251 -0
- data/lib/new_relic/agent/stats.rb +149 -0
- data/lib/new_relic/agent/stats_engine.rb +30 -0
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +116 -0
- data/lib/new_relic/agent/stats_engine/metric_stats.rb +161 -0
- data/lib/new_relic/agent/stats_engine/samplers.rb +97 -0
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +58 -0
- data/lib/new_relic/agent/stats_engine/transactions.rb +145 -0
- data/lib/new_relic/agent/thread.rb +32 -0
- data/lib/new_relic/agent/thread_profiler.rb +319 -0
- data/lib/new_relic/agent/transaction_info.rb +119 -0
- data/lib/new_relic/agent/transaction_sample_builder.rb +126 -0
- data/lib/new_relic/agent/transaction_sampler.rb +459 -0
- data/lib/new_relic/agent/worker_loop.rb +96 -0
- data/lib/new_relic/coerce.rb +37 -0
- data/lib/new_relic/collection_helper.rb +77 -0
- data/lib/new_relic/command.rb +85 -0
- data/lib/new_relic/commands/deployments.rb +114 -0
- data/lib/new_relic/commands/install.rb +80 -0
- data/lib/new_relic/control.rb +44 -0
- data/lib/new_relic/control/class_methods.rb +58 -0
- data/lib/new_relic/control/frameworks.rb +10 -0
- data/lib/new_relic/control/frameworks/external.rb +16 -0
- data/lib/new_relic/control/frameworks/merb.rb +25 -0
- data/lib/new_relic/control/frameworks/rails.rb +173 -0
- data/lib/new_relic/control/frameworks/rails3.rb +71 -0
- data/lib/new_relic/control/frameworks/rails4.rb +23 -0
- data/lib/new_relic/control/frameworks/ruby.rb +21 -0
- data/lib/new_relic/control/frameworks/sinatra.rb +20 -0
- data/lib/new_relic/control/instance_methods.rb +145 -0
- data/lib/new_relic/control/instrumentation.rb +95 -0
- data/lib/new_relic/control/profiling.rb +25 -0
- data/lib/new_relic/control/server_methods.rb +80 -0
- data/lib/new_relic/delayed_job_injection.rb +51 -0
- data/lib/new_relic/helper.rb +66 -0
- data/lib/new_relic/language_support.rb +92 -0
- data/lib/new_relic/latest_changes.rb +31 -0
- data/lib/new_relic/local_environment.rb +385 -0
- data/lib/new_relic/merbtasks.rb +6 -0
- data/lib/new_relic/metric_data.rb +70 -0
- data/lib/new_relic/metric_spec.rb +80 -0
- data/lib/new_relic/metrics.rb +9 -0
- data/lib/new_relic/noticed_error.rb +59 -0
- data/lib/new_relic/okjson.rb +599 -0
- data/lib/new_relic/rack.rb +4 -0
- data/lib/new_relic/rack/agent_hooks.rb +20 -0
- data/lib/new_relic/rack/browser_monitoring.rb +85 -0
- data/lib/new_relic/rack/developer_mode.rb +271 -0
- data/lib/new_relic/rack/error_collector.rb +66 -0
- data/lib/new_relic/recipes.rb +99 -0
- data/lib/new_relic/timer_lib.rb +27 -0
- data/lib/new_relic/transaction_analysis.rb +77 -0
- data/lib/new_relic/transaction_analysis/segment_summary.rb +49 -0
- data/lib/new_relic/transaction_sample.rb +272 -0
- data/lib/new_relic/transaction_sample/composite_segment.rb +27 -0
- data/lib/new_relic/transaction_sample/fake_segment.rb +9 -0
- data/lib/new_relic/transaction_sample/segment.rb +205 -0
- data/lib/new_relic/transaction_sample/summary_segment.rb +21 -0
- data/lib/new_relic/url_rule.rb +14 -0
- data/lib/new_relic/version.rb +66 -0
- data/lib/newrelic_rpm.rb +49 -0
- data/lib/tasks/all.rb +4 -0
- data/lib/tasks/install.rake +7 -0
- data/lib/tasks/tests.rake +17 -0
- data/newrelic.yml +227 -0
- data/newrelic_rpm.gemspec +50 -0
- data/recipes/newrelic.rb +6 -0
- data/test/active_record_fixtures.rb +77 -0
- data/test/config/newrelic.yml +49 -0
- data/test/config/test_control.rb +48 -0
- data/test/fixtures/proc_cpuinfo.txt +575 -0
- data/test/intentional_fail.rb +10 -0
- data/test/multiverse/.gitignore +11 -0
- data/test/multiverse/README.md +85 -0
- data/test/multiverse/lib/multiverse/color.rb +13 -0
- data/test/multiverse/lib/multiverse/envfile.rb +66 -0
- data/test/multiverse/lib/multiverse/environment.rb +16 -0
- data/test/multiverse/lib/multiverse/output_collector.rb +29 -0
- data/test/multiverse/lib/multiverse/runner.rb +44 -0
- data/test/multiverse/lib/multiverse/suite.rb +164 -0
- data/test/multiverse/script/run_one +3 -0
- data/test/multiverse/script/runner +9 -0
- data/test/multiverse/suites/active_record/Envfile +13 -0
- data/test/multiverse/suites/active_record/ar_method_aliasing.rb +94 -0
- data/test/multiverse/suites/active_record/config/newrelic.yml +22 -0
- data/test/multiverse/suites/active_record/encoding_test.rb +26 -0
- data/test/multiverse/suites/agent_only/Envfile +9 -0
- data/test/multiverse/suites/agent_only/audit_log_test.rb +97 -0
- data/test/multiverse/suites/agent_only/config/newrelic.yml +23 -0
- data/test/multiverse/suites/agent_only/cross_application_tracing_test.rb +56 -0
- data/test/multiverse/suites/agent_only/http_response_code_test.rb +53 -0
- data/test/multiverse/suites/agent_only/key_transactions_test.rb +66 -0
- data/test/multiverse/suites/agent_only/logging_test.rb +163 -0
- data/test/multiverse/suites/agent_only/marshaling_test.rb +96 -0
- data/test/multiverse/suites/agent_only/method_visibility_test.rb +98 -0
- data/test/multiverse/suites/agent_only/no_dns_resolv.rb +17 -0
- data/test/multiverse/suites/agent_only/pipe_manager_test.rb +33 -0
- data/test/multiverse/suites/agent_only/rename_rule_test.rb +57 -0
- data/test/multiverse/suites/agent_only/rum_instrumentation_test.rb +81 -0
- data/test/multiverse/suites/agent_only/service_timeout_test.rb +32 -0
- data/test/multiverse/suites/agent_only/ssl_test.rb +22 -0
- data/test/multiverse/suites/agent_only/start_up_test.rb +21 -0
- data/test/multiverse/suites/agent_only/test_trace_method_with_punctuation.rb +30 -0
- data/test/multiverse/suites/agent_only/test_trace_transaction_with_punctuation.rb +32 -0
- data/test/multiverse/suites/agent_only/testing_app.rb +17 -0
- data/test/multiverse/suites/agent_only/thread_profiling_test.rb +92 -0
- data/test/multiverse/suites/config_file_loading/Envfile +7 -0
- data/test/multiverse/suites/config_file_loading/config_file_loading_test.rb +106 -0
- data/test/multiverse/suites/datamapper/Envfile +8 -0
- data/test/multiverse/suites/datamapper/config/newrelic.yml +22 -0
- data/test/multiverse/suites/datamapper/encoding_test.rb +36 -0
- data/test/multiverse/suites/rails/Envfile +18 -0
- data/test/multiverse/suites/rails/app.rb +49 -0
- data/test/multiverse/suites/rails/app/views/foos/_foo.html.haml +1 -0
- data/test/multiverse/suites/rails/app/views/views/_a_partial.html.erb +1 -0
- data/test/multiverse/suites/rails/app/views/views/_mid_partial.html.erb +1 -0
- data/test/multiverse/suites/rails/app/views/views/_top_partial.html.erb +3 -0
- data/test/multiverse/suites/rails/app/views/views/deep_partial.html.erb +3 -0
- data/test/multiverse/suites/rails/app/views/views/haml_view.html.haml +6 -0
- data/test/multiverse/suites/rails/app/views/views/index.html.erb +4 -0
- data/test/multiverse/suites/rails/config/newrelic.yml +32 -0
- data/test/multiverse/suites/rails/error_tracing_test.rb +211 -0
- data/test/multiverse/suites/rails/gc_instrumentation_test.rb +79 -0
- data/test/multiverse/suites/rails/queue_time_test.rb +55 -0
- data/test/multiverse/suites/rails/view_instrumentation_test.rb +205 -0
- data/test/multiverse/suites/resque/Envfile +24 -0
- data/test/multiverse/suites/resque/Rakefile +8 -0
- data/test/multiverse/suites/resque/config/newrelic.yml +22 -0
- data/test/multiverse/suites/resque/instrumentation_test.rb +151 -0
- data/test/multiverse/suites/resque/resque_setup.rb +15 -0
- data/test/multiverse/suites/sinatra/Envfile +15 -0
- data/test/multiverse/suites/sinatra/config/newrelic.yml +24 -0
- data/test/multiverse/suites/sinatra/sinatra_error_tracing_test.rb +38 -0
- data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +77 -0
- data/test/multiverse/suites/sinatra/sinatra_routes_test.rb +46 -0
- data/test/multiverse/suites/sinatra/sinatra_test.rb +139 -0
- data/test/multiverse/test/multiverse_test.rb +55 -0
- data/test/multiverse/test/suite_examples/one/a/Envfile +3 -0
- data/test/multiverse/test/suite_examples/one/a/a_test.rb +11 -0
- data/test/multiverse/test/suite_examples/one/a/config/newrelic.yml +24 -0
- data/test/multiverse/test/suite_examples/one/b/Envfile +3 -0
- data/test/multiverse/test/suite_examples/one/b/b_test.rb +11 -0
- data/test/multiverse/test/suite_examples/one/b/config/newrelic.yml +24 -0
- data/test/multiverse/test/suite_examples/three/a/Envfile +2 -0
- data/test/multiverse/test/suite_examples/three/a/fail_test.rb +6 -0
- data/test/multiverse/test/suite_examples/three/b/Envfile +2 -0
- data/test/multiverse/test/suite_examples/three/b/win_test.rb +6 -0
- data/test/multiverse/test/suite_examples/two/a/Envfile +1 -0
- data/test/multiverse/test/suite_examples/two/a/fail_test.rb +6 -0
- data/test/new_relic/agent/agent/connect_test.rb +295 -0
- data/test/new_relic/agent/agent/start_test.rb +205 -0
- data/test/new_relic/agent/agent/start_worker_thread_test.rb +88 -0
- data/test/new_relic/agent/agent_logger_test.rb +153 -0
- data/test/new_relic/agent/agent_test.rb +301 -0
- data/test/new_relic/agent/agent_test_controller.rb +77 -0
- data/test/new_relic/agent/agent_test_controller_test.rb +381 -0
- data/test/new_relic/agent/apdex_from_server_test.rb +9 -0
- data/test/new_relic/agent/audit_logger_test.rb +105 -0
- data/test/new_relic/agent/beacon_configuration_test.rb +107 -0
- data/test/new_relic/agent/browser_monitoring_test.rb +395 -0
- data/test/new_relic/agent/busy_calculator_test.rb +96 -0
- data/test/new_relic/agent/configuration/environment_source_test.rb +79 -0
- data/test/new_relic/agent/configuration/manager_test.rb +232 -0
- data/test/new_relic/agent/configuration/server_source_test.rb +50 -0
- data/test/new_relic/agent/configuration/yaml_source_test.rb +85 -0
- data/test/new_relic/agent/cross_app_monitor_test.rb +237 -0
- data/test/new_relic/agent/database_test.rb +194 -0
- data/test/new_relic/agent/error_collector/notice_error_test.rb +268 -0
- data/test/new_relic/agent/error_collector_test.rb +246 -0
- data/test/new_relic/agent/event_listener_test.rb +67 -0
- data/test/new_relic/agent/instrumentation/active_record_instrumentation_test.rb +606 -0
- data/test/new_relic/agent/instrumentation/browser_monitoring_timings_test.rb +66 -0
- data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +107 -0
- data/test/new_relic/agent/instrumentation/instrumentation_test.rb +11 -0
- data/test/new_relic/agent/instrumentation/metric_frame/pop_test.rb +171 -0
- data/test/new_relic/agent/instrumentation/metric_frame_test.rb +151 -0
- data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +461 -0
- data/test/new_relic/agent/instrumentation/queue_time_test.rb +97 -0
- data/test/new_relic/agent/instrumentation/rack_test.rb +35 -0
- data/test/new_relic/agent/instrumentation/sinatra_test.rb +25 -0
- data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +182 -0
- data/test/new_relic/agent/memcache_instrumentation_test.rb +143 -0
- data/test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb +158 -0
- data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +222 -0
- data/test/new_relic/agent/method_tracer_test.rb +389 -0
- data/test/new_relic/agent/mock_scope_listener.rb +26 -0
- data/test/new_relic/agent/new_relic_service_test.rb +571 -0
- data/test/new_relic/agent/pipe_channel_manager_test.rb +131 -0
- data/test/new_relic/agent/pipe_service_test.rb +133 -0
- data/test/new_relic/agent/rpm_agent_test.rb +115 -0
- data/test/new_relic/agent/rules_engine_test.rb +82 -0
- data/test/new_relic/agent/sampler_test.rb +19 -0
- data/test/new_relic/agent/shim_agent_test.rb +16 -0
- data/test/new_relic/agent/sql_sampler_test.rb +244 -0
- data/test/new_relic/agent/stats_engine/gc_profiler_test.rb +85 -0
- data/test/new_relic/agent/stats_engine/metric_stats_test.rb +180 -0
- data/test/new_relic/agent/stats_engine/samplers_test.rb +99 -0
- data/test/new_relic/agent/stats_engine_test.rb +184 -0
- data/test/new_relic/agent/stats_hash_test.rb +93 -0
- data/test/new_relic/agent/stats_test.rb +197 -0
- data/test/new_relic/agent/thread_profiler_test.rb +582 -0
- data/test/new_relic/agent/thread_test.rb +89 -0
- data/test/new_relic/agent/threaded_test.rb +65 -0
- data/test/new_relic/agent/transaction_info_test.rb +106 -0
- data/test/new_relic/agent/transaction_sample_builder_test.rb +227 -0
- data/test/new_relic/agent/transaction_sampler_test.rb +968 -0
- data/test/new_relic/agent/worker_loop_test.rb +84 -0
- data/test/new_relic/agent_test.rb +296 -0
- data/test/new_relic/coerce_test.rb +65 -0
- data/test/new_relic/collection_helper_test.rb +148 -0
- data/test/new_relic/command/deployments_test.rb +84 -0
- data/test/new_relic/control/class_methods_test.rb +44 -0
- data/test/new_relic/control/frameworks/rails_test.rb +26 -0
- data/test/new_relic/control_test.rb +194 -0
- data/test/new_relic/delayed_job_injection_test.rb +21 -0
- data/test/new_relic/dispatcher_test.rb +54 -0
- data/test/new_relic/fake_collector.rb +389 -0
- data/test/new_relic/framework_test.rb +53 -0
- data/test/new_relic/helper_test.rb +24 -0
- data/test/new_relic/load_test.rb +13 -0
- data/test/new_relic/local_environment_test.rb +85 -0
- data/test/new_relic/metric_data_test.rb +183 -0
- data/test/new_relic/metric_parser/metric_parser_test.rb +11 -0
- data/test/new_relic/metric_spec_test.rb +95 -0
- data/test/new_relic/noticed_error_test.rb +32 -0
- data/test/new_relic/rack/agent_hooks_test.rb +30 -0
- data/test/new_relic/rack/all_test.rb +11 -0
- data/test/new_relic/rack/browser_monitoring_test.rb +152 -0
- data/test/new_relic/rack/developer_mode_helper_test.rb +141 -0
- data/test/new_relic/rack/developer_mode_test.rb +80 -0
- data/test/new_relic/rack/error_collector_test.rb +90 -0
- data/test/new_relic/transaction_analysis/segment_summary_test.rb +91 -0
- data/test/new_relic/transaction_analysis_test.rb +121 -0
- data/test/new_relic/transaction_sample/composite_segment_test.rb +35 -0
- data/test/new_relic/transaction_sample/fake_segment_test.rb +17 -0
- data/test/new_relic/transaction_sample/segment_test.rb +415 -0
- data/test/new_relic/transaction_sample/summary_segment_test.rb +31 -0
- data/test/new_relic/transaction_sample_subtest_test.rb +56 -0
- data/test/new_relic/transaction_sample_test.rb +250 -0
- data/test/new_relic/version_number_test.rb +97 -0
- data/test/script/build_test_gem.sh +57 -0
- data/test/script/ci.sh +168 -0
- data/test/script/ci_agent-tests_runner.sh +82 -0
- data/test/script/ci_bench.sh +52 -0
- data/test/script/ci_multiverse_runner.sh +63 -0
- data/test/test_contexts.rb +30 -0
- data/test/test_helper.rb +240 -0
- data/ui/helpers/developer_mode_helper.rb +367 -0
- data/ui/helpers/google_pie_chart.rb +49 -0
- data/ui/views/layouts/newrelic_default.rhtml +48 -0
- data/ui/views/newrelic/_explain_plans.rhtml +27 -0
- data/ui/views/newrelic/_sample.rhtml +20 -0
- data/ui/views/newrelic/_segment.rhtml +28 -0
- data/ui/views/newrelic/_segment_limit_message.rhtml +1 -0
- data/ui/views/newrelic/_segment_row.rhtml +12 -0
- data/ui/views/newrelic/_show_sample_detail.rhtml +24 -0
- data/ui/views/newrelic/_show_sample_sql.rhtml +24 -0
- data/ui/views/newrelic/_show_sample_summary.rhtml +3 -0
- data/ui/views/newrelic/_sql_row.rhtml +16 -0
- data/ui/views/newrelic/_stack_trace.rhtml +15 -0
- data/ui/views/newrelic/_table.rhtml +12 -0
- data/ui/views/newrelic/explain_sql.rhtml +43 -0
- data/ui/views/newrelic/file/images/arrow-close.png +0 -0
- data/ui/views/newrelic/file/images/arrow-open.png +0 -0
- data/ui/views/newrelic/file/images/blue_bar.gif +0 -0
- data/ui/views/newrelic/file/images/file_icon.png +0 -0
- data/ui/views/newrelic/file/images/gray_bar.gif +0 -0
- data/ui/views/newrelic/file/images/new-relic-rpm-desktop.gif +0 -0
- data/ui/views/newrelic/file/images/new_relic_rpm_desktop.gif +0 -0
- data/ui/views/newrelic/file/images/textmate.png +0 -0
- data/ui/views/newrelic/file/javascript/jquery-1.4.2.js +6240 -0
- data/ui/views/newrelic/file/javascript/transaction_sample.js +120 -0
- data/ui/views/newrelic/file/stylesheets/style.css +490 -0
- data/ui/views/newrelic/index.rhtml +71 -0
- data/ui/views/newrelic/sample_not_found.rhtml +2 -0
- data/ui/views/newrelic/show_sample.rhtml +80 -0
- data/ui/views/newrelic/show_source.rhtml +3 -0
- data/ui/views/newrelic/threads.rhtml +45 -0
- data/vendor/gems/dependency_detection-0.0.1.build/LICENSE +5 -0
- data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb +67 -0
- data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection/version.rb +3 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/.specification +116 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb +1 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb +64 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/action_mailer.rb +14 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_merchant.rb +31 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_record.rb +33 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/apdex.rb +89 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/background_transaction.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/client.rb +46 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller.rb +67 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_cpu.rb +43 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_ext.rb +17 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database.rb +48 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database_pool.rb +24 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net.rb +28 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net_parser.rb +17 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/errors.rb +11 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/external.rb +55 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/frontend.rb +40 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/gc.rb +20 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/hibernate_session.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java.rb +31 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java_parser.rb +17 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp.rb +34 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp_tag.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/mem_cache.rb +55 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/metric_parser.rb +135 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/orm.rb +27 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/other_transaction.rb +40 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_context_listener.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_filter.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_init.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr.rb +27 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr_request_handler.rb +15 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring.rb +54 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_controller.rb +6 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_view.rb +6 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_action.rb +20 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_result.rb +20 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/version.rb +5 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/view.rb +70 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_frontend.rb +18 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_service.rb +14 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_transaction.rb +133 -0
- metadata +494 -0
@@ -0,0 +1,92 @@
|
|
1
|
+
module NewRelic::LanguageSupport
|
2
|
+
extend self
|
3
|
+
|
4
|
+
module Control
|
5
|
+
def self.included(base)
|
6
|
+
# need to use syck rather than psych when possible
|
7
|
+
if defined?(::YAML::ENGINE)
|
8
|
+
if !NewRelic::LanguageSupport.using_engine?('jruby') &&
|
9
|
+
(NewRelic::LanguageSupport.using_version?('1.9.1') ||
|
10
|
+
NewRelic::LanguageSupport.using_version?('1.9.2'))
|
11
|
+
base.class_eval do
|
12
|
+
def load_newrelic_yml(*args)
|
13
|
+
yamler = ::YAML::ENGINE.yamler
|
14
|
+
::YAML::ENGINE.yamler = 'syck'
|
15
|
+
val = super
|
16
|
+
::YAML::ENGINE.yamler = yamler
|
17
|
+
val
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
@@forkable = nil
|
26
|
+
def can_fork?
|
27
|
+
# this is expensive to check, so we should only check once
|
28
|
+
return @@forkable if @@forkable != nil
|
29
|
+
|
30
|
+
if Process.respond_to?(:fork)
|
31
|
+
# if this is not 1.9.2 or higher, we have to make sure
|
32
|
+
@@forkable = ::RUBY_VERSION < '1.9.2' ? test_forkability : true
|
33
|
+
else
|
34
|
+
@@forkable = false
|
35
|
+
end
|
36
|
+
|
37
|
+
@@forkable
|
38
|
+
end
|
39
|
+
|
40
|
+
def using_engine?(engine)
|
41
|
+
if defined?(::RUBY_ENGINE)
|
42
|
+
::RUBY_ENGINE == engine
|
43
|
+
else
|
44
|
+
engine == 'ruby'
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def broken_gc?
|
49
|
+
NewRelic::LanguageSupport.using_version?('1.8.7') &&
|
50
|
+
RUBY_PATCHLEVEL < 348 &&
|
51
|
+
!NewRelic::LanguageSupport.using_engine?('jruby') &&
|
52
|
+
!NewRelic::LanguageSupport.using_engine?('rbx')
|
53
|
+
end
|
54
|
+
|
55
|
+
def with_disabled_gc
|
56
|
+
if defined?(::GC) && ::GC.respond_to?(:disable)
|
57
|
+
val = nil
|
58
|
+
begin
|
59
|
+
::GC.disable
|
60
|
+
val = yield
|
61
|
+
ensure
|
62
|
+
::GC.enable
|
63
|
+
end
|
64
|
+
val
|
65
|
+
else
|
66
|
+
yield
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
def with_cautious_gc
|
71
|
+
if broken_gc?
|
72
|
+
with_disabled_gc { yield }
|
73
|
+
else
|
74
|
+
yield
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
def using_version?(version)
|
79
|
+
numbers = version.split('.')
|
80
|
+
numbers == ::RUBY_VERSION.split('.')[0, numbers.size]
|
81
|
+
end
|
82
|
+
|
83
|
+
def test_forkability
|
84
|
+
child = Process.fork { exit! }
|
85
|
+
# calling wait here doesn't seem like it should necessary, but it seems to
|
86
|
+
# resolve some weird edge cases with resque forking.
|
87
|
+
Process.wait child
|
88
|
+
true
|
89
|
+
rescue NotImplementedError
|
90
|
+
false
|
91
|
+
end
|
92
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
#!/usr/bin/ruby
|
2
|
+
|
3
|
+
module NewRelic
|
4
|
+
module LatestChanges
|
5
|
+
def self.default_changelog
|
6
|
+
File.join(File.dirname(__FILE__), '..', '..', 'CHANGELOG')
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.read(changelog=default_changelog)
|
10
|
+
footer = <<'EOS'
|
11
|
+
See https://github.com/newrelic/rpm/blob/master/CHANGELOG for a full list of
|
12
|
+
changes.
|
13
|
+
EOS
|
14
|
+
|
15
|
+
return footer unless File.exists?(changelog)
|
16
|
+
|
17
|
+
version_count = 0
|
18
|
+
changes = []
|
19
|
+
File.read(changelog).each_line do |line|
|
20
|
+
if line.match(/##\s+v[\d.]+\s+##/)
|
21
|
+
version_count += 1
|
22
|
+
end
|
23
|
+
break if version_count >= 2
|
24
|
+
changes << line.chomp
|
25
|
+
end
|
26
|
+
|
27
|
+
changes << footer
|
28
|
+
change_message = changes.join("\n")
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,385 @@
|
|
1
|
+
require 'set'
|
2
|
+
require 'new_relic/version'
|
3
|
+
|
4
|
+
module NewRelic
|
5
|
+
# An instance of LocalEnvironment is responsible for determining
|
6
|
+
# three things:
|
7
|
+
#
|
8
|
+
# * Dispatcher - A supported dispatcher, or nil (:mongrel, :thin, :passenger, :webrick, etc)
|
9
|
+
# * Dispatcher Instance ID, which distinguishes agents on a single host from each other
|
10
|
+
#
|
11
|
+
# If the environment can't be determined, it will be set to
|
12
|
+
# nil and dispatcher_instance_id will have nil.
|
13
|
+
#
|
14
|
+
# NewRelic::LocalEnvironment should be accessed through NewRelic::Control#env (via the NewRelic::Control singleton).
|
15
|
+
class LocalEnvironment
|
16
|
+
# mongrel, thin, webrick, or possibly nil
|
17
|
+
def discovered_dispatcher
|
18
|
+
discover_dispatcher unless @discovered_dispatcher
|
19
|
+
@discovered_dispatcher
|
20
|
+
end
|
21
|
+
|
22
|
+
# used to distinguish instances of a dispatcher from each other, may be nil
|
23
|
+
attr_writer :dispatcher_instance_id
|
24
|
+
# The number of cpus, if detected, or nil - many platforms do not
|
25
|
+
# support this :(
|
26
|
+
attr_reader :processors
|
27
|
+
|
28
|
+
def initialize
|
29
|
+
# Extend self with any any submodules of LocalEnvironment. These can override
|
30
|
+
# the discover methods to discover new framworks and dispatchers.
|
31
|
+
NewRelic::LocalEnvironment.constants.each do | const |
|
32
|
+
mod = NewRelic::LocalEnvironment.const_get const
|
33
|
+
self.extend mod if mod.instance_of? Module
|
34
|
+
end
|
35
|
+
|
36
|
+
discover_dispatcher
|
37
|
+
@gems = Set.new
|
38
|
+
@plugins = Set.new
|
39
|
+
@config = Hash.new
|
40
|
+
end
|
41
|
+
|
42
|
+
# Add the given key/value pair to the app environment
|
43
|
+
# settings. Must pass either a value or a block. Block
|
44
|
+
# is called to get the value and any raised errors are
|
45
|
+
# silently ignored.
|
46
|
+
def append_environment_value(name, value = nil)
|
47
|
+
value = yield if block_given?
|
48
|
+
@config[name] = value if value
|
49
|
+
rescue => e
|
50
|
+
Agent.logger.error e
|
51
|
+
end
|
52
|
+
|
53
|
+
# yields to the block and appends the returned value to the list
|
54
|
+
# of gems - this catches errors that might be raised in the block
|
55
|
+
def append_gem_list
|
56
|
+
@gems += yield
|
57
|
+
rescue => e
|
58
|
+
Agent.logger.error e
|
59
|
+
end
|
60
|
+
|
61
|
+
# yields to the block and appends the returned value to the list
|
62
|
+
# of plugins - this catches errors that might be raised in the block
|
63
|
+
def append_plugin_list
|
64
|
+
@plugins += yield
|
65
|
+
rescue => e
|
66
|
+
Agent.logger.error e
|
67
|
+
end
|
68
|
+
|
69
|
+
# An instance id pulled from either @dispatcher_instance_id or by
|
70
|
+
# splitting out the first part of the running file
|
71
|
+
def dispatcher_instance_id
|
72
|
+
if @dispatcher_instance_id.nil?
|
73
|
+
if @discovered_dispatcher.nil?
|
74
|
+
@dispatcher_instance_id = File.basename($0).split(".").first
|
75
|
+
end
|
76
|
+
end
|
77
|
+
@dispatcher_instance_id
|
78
|
+
end
|
79
|
+
|
80
|
+
# Interrogates some common ruby constants for useful information
|
81
|
+
# about what kind of ruby environment the agent is running in
|
82
|
+
def gather_ruby_info
|
83
|
+
append_environment_value('Ruby version'){ RUBY_VERSION }
|
84
|
+
append_environment_value('Ruby description'){ RUBY_DESCRIPTION } if defined? ::RUBY_DESCRIPTION
|
85
|
+
append_environment_value('Ruby platform') { RUBY_PLATFORM }
|
86
|
+
append_environment_value('Ruby patchlevel') { RUBY_PATCHLEVEL }
|
87
|
+
# room here for other ruby implementations, when.
|
88
|
+
if defined? ::JRUBY_VERSION
|
89
|
+
gather_jruby_info
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
# like gather_ruby_info but for the special case of JRuby
|
94
|
+
def gather_jruby_info
|
95
|
+
append_environment_value('JRuby version') { JRUBY_VERSION }
|
96
|
+
append_environment_value('Java VM version') { ENV_JAVA['java.vm.version']}
|
97
|
+
end
|
98
|
+
|
99
|
+
# See what the number of cpus is, works only on some linux variants
|
100
|
+
def gather_cpu_info(proc_file='/proc/cpuinfo')
|
101
|
+
return unless File.readable? proc_file
|
102
|
+
@processors = append_environment_value('Processors') do
|
103
|
+
cpuinfo = ''
|
104
|
+
File.open(proc_file) do |f|
|
105
|
+
loop do
|
106
|
+
begin
|
107
|
+
cpuinfo << f.read_nonblock(4096).strip
|
108
|
+
rescue EOFError
|
109
|
+
break
|
110
|
+
rescue Errno::EWOULDBLOCK, Errno::EAGAIN
|
111
|
+
cpuinfo = ''
|
112
|
+
break # don't select file handle, just give up
|
113
|
+
end
|
114
|
+
end
|
115
|
+
end
|
116
|
+
processors = cpuinfo.split("\n").select {|line| line =~ /^processor\s*:/ }.size
|
117
|
+
|
118
|
+
if processors == 0
|
119
|
+
processors = 1 # assume there is at least one processor
|
120
|
+
::NewRelic::Agent.logger.warn("Cannot determine the number of processors in #{proc_file}")
|
121
|
+
end
|
122
|
+
processors
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
# Grabs the architecture string from either `uname -p` or the env
|
127
|
+
# variable PROCESSOR_ARCHITECTURE
|
128
|
+
def gather_architecture_info
|
129
|
+
append_environment_value('Arch') { `uname -p` } ||
|
130
|
+
append_environment_value('Arch') { ENV['PROCESSOR_ARCHITECTURE'] }
|
131
|
+
end
|
132
|
+
|
133
|
+
# gathers OS info from either `uname -v`, `uname -s`, or the OS
|
134
|
+
# env variable
|
135
|
+
def gather_os_info
|
136
|
+
append_environment_value('OS version') { `uname -v` }
|
137
|
+
append_environment_value('OS') { `uname -s` } ||
|
138
|
+
append_environment_value('OS') { ENV['OS'] }
|
139
|
+
end
|
140
|
+
|
141
|
+
# Gathers the architecture and cpu info
|
142
|
+
def gather_system_info
|
143
|
+
gather_architecture_info
|
144
|
+
gather_cpu_info
|
145
|
+
end
|
146
|
+
|
147
|
+
# Looks for a capistrano file indicating the current revision
|
148
|
+
def gather_revision_info
|
149
|
+
rev_file = File.join(NewRelic::Control.instance.root, "REVISION")
|
150
|
+
if File.readable?(rev_file) && File.size(rev_file) < 64
|
151
|
+
append_environment_value('Revision') do
|
152
|
+
File.open(rev_file) { | file | file.readline.strip }
|
153
|
+
end
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
# The name of the AR database adapter for the current environment and
|
158
|
+
# the current schema version
|
159
|
+
def gather_ar_adapter_info
|
160
|
+
append_environment_value 'Database adapter' do
|
161
|
+
if defined?(ActiveRecord) && defined?(ActiveRecord::Base) &&
|
162
|
+
ActiveRecord::Base.respond_to?(:configurations)
|
163
|
+
config = ActiveRecord::Base.configurations[NewRelic::Control.instance.env]
|
164
|
+
if config
|
165
|
+
config['adapter']
|
166
|
+
end
|
167
|
+
end
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
171
|
+
# Datamapper version
|
172
|
+
def gather_dm_adapter_info
|
173
|
+
append_environment_value 'DataMapper version' do
|
174
|
+
require 'dm-core/version'
|
175
|
+
DataMapper::VERSION
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
# sensing for which adapter is defined, then appends the relevant
|
180
|
+
# config information
|
181
|
+
def gather_db_info
|
182
|
+
# room here for more database adapters, when.
|
183
|
+
if defined? ::ActiveRecord
|
184
|
+
gather_ar_adapter_info
|
185
|
+
end
|
186
|
+
if defined? ::DataMapper
|
187
|
+
gather_dm_adapter_info
|
188
|
+
end
|
189
|
+
end
|
190
|
+
|
191
|
+
# Collect base statistics about the environment and record them for
|
192
|
+
# comparison and change detection.
|
193
|
+
def gather_environment_info
|
194
|
+
append_environment_value 'Framework', Agent.config[:framework].to_s
|
195
|
+
append_environment_value 'Dispatcher', Agent.config[:dispatcher].to_s if Agent.config[:dispatcher]
|
196
|
+
append_environment_value 'Dispatcher instance id', @dispatcher_instance_id if @dispatcher_instance_id
|
197
|
+
append_environment_value('Environment') { NewRelic::Control.instance.env }
|
198
|
+
|
199
|
+
# miscellaneous other helpful debugging information
|
200
|
+
gather_ruby_info
|
201
|
+
gather_system_info
|
202
|
+
gather_revision_info
|
203
|
+
gather_db_info
|
204
|
+
end
|
205
|
+
|
206
|
+
# Take a snapshot of the environment information for this application
|
207
|
+
# Returns an associative array
|
208
|
+
def snapshot
|
209
|
+
i = @config.to_a
|
210
|
+
i << [ 'Plugin List', @plugins.to_a] if not @plugins.empty?
|
211
|
+
i << [ 'Gems', @gems.to_a] if not @gems.empty?
|
212
|
+
i
|
213
|
+
end
|
214
|
+
|
215
|
+
# it's a working jruby if it has the runtime method, and object
|
216
|
+
# space is enabled
|
217
|
+
def working_jruby?
|
218
|
+
!(defined?(::JRuby) && JRuby.respond_to?(:runtime) && !JRuby.runtime.is_object_space_enabled)
|
219
|
+
end
|
220
|
+
|
221
|
+
# Runs through all the objects in ObjectSpace to find the first one that
|
222
|
+
# match the provided class
|
223
|
+
def find_class_in_object_space(klass)
|
224
|
+
ObjectSpace.each_object(klass) do |x|
|
225
|
+
return x
|
226
|
+
end
|
227
|
+
return nil
|
228
|
+
end
|
229
|
+
|
230
|
+
# Sets the @mongrel instance variable if we can find a Mongrel::HttpServer
|
231
|
+
def mongrel
|
232
|
+
return @mongrel if @mongrel
|
233
|
+
if defined?(::Mongrel) && defined?(::Mongrel::HttpServer) && working_jruby?
|
234
|
+
@mongrel = find_class_in_object_space(::Mongrel::HttpServer)
|
235
|
+
end
|
236
|
+
@mongrel
|
237
|
+
end
|
238
|
+
|
239
|
+
private
|
240
|
+
|
241
|
+
# Although you can override the dispatcher with NEWRELIC_DISPATCHER this
|
242
|
+
# is not advisable since it implies certain api's being available.
|
243
|
+
def discover_dispatcher
|
244
|
+
dispatchers = %w[passenger torquebox trinidad glassfish resque thin mongrel litespeed webrick fastcgi unicorn]
|
245
|
+
while dispatchers.any? && @discovered_dispatcher.nil?
|
246
|
+
send 'check_for_'+(dispatchers.shift)
|
247
|
+
end
|
248
|
+
end
|
249
|
+
|
250
|
+
def check_for_torquebox
|
251
|
+
return unless defined?(::JRuby) &&
|
252
|
+
( org.torquebox::TorqueBox rescue nil)
|
253
|
+
@discovered_dispatcher = :torquebox
|
254
|
+
end
|
255
|
+
|
256
|
+
def check_for_glassfish
|
257
|
+
return unless defined?(::JRuby) &&
|
258
|
+
(((com.sun.grizzly.jruby.rack.DefaultRackApplicationFactory rescue nil) &&
|
259
|
+
defined?(com::sun::grizzly::jruby::rack::DefaultRackApplicationFactory)) ||
|
260
|
+
(jruby_rack? && defined?(::GlassFish::Server)))
|
261
|
+
@discovered_dispatcher = :glassfish
|
262
|
+
end
|
263
|
+
|
264
|
+
def check_for_trinidad
|
265
|
+
return unless defined?(::JRuby) && jruby_rack? && defined?(::Trinidad::Server)
|
266
|
+
@discovered_dispatcher = :trinidad
|
267
|
+
end
|
268
|
+
|
269
|
+
def jruby_rack?
|
270
|
+
((org.jruby.rack.DefaultRackApplicationFactory rescue nil) &&
|
271
|
+
defined?(org::jruby::rack::DefaultRackApplicationFactory))
|
272
|
+
end
|
273
|
+
|
274
|
+
def check_for_webrick
|
275
|
+
return unless defined?(::WEBrick) && defined?(::WEBrick::VERSION)
|
276
|
+
@discovered_dispatcher = :webrick
|
277
|
+
if defined?(::OPTIONS) && OPTIONS.respond_to?(:fetch)
|
278
|
+
# OPTIONS is set by script/server
|
279
|
+
@dispatcher_instance_id = OPTIONS.fetch(:port)
|
280
|
+
end
|
281
|
+
@dispatcher_instance_id = default_port unless @dispatcher_instance_id
|
282
|
+
end
|
283
|
+
|
284
|
+
def check_for_fastcgi
|
285
|
+
return unless defined?(::FCGI)
|
286
|
+
@discovered_dispatcher = :fastcgi
|
287
|
+
end
|
288
|
+
|
289
|
+
# this case covers starting by mongrel_rails
|
290
|
+
def check_for_mongrel
|
291
|
+
return unless defined?(::Mongrel) && defined?(::Mongrel::HttpServer)
|
292
|
+
@discovered_dispatcher = :mongrel
|
293
|
+
|
294
|
+
# Get the port from the server if it's started
|
295
|
+
|
296
|
+
if mongrel && mongrel.respond_to?(:port)
|
297
|
+
@dispatcher_instance_id = mongrel.port.to_s
|
298
|
+
end
|
299
|
+
|
300
|
+
# Get the port from the configurator if one was created
|
301
|
+
if @dispatcher_instance_id.nil? && defined?(::Mongrel::Configurator)
|
302
|
+
ObjectSpace.each_object(Mongrel::Configurator) do |mongrel|
|
303
|
+
@dispatcher_instance_id = mongrel.defaults[:port] && mongrel.defaults[:port].to_s
|
304
|
+
end unless defined?(::JRuby) && !JRuby.runtime.is_object_space_enabled
|
305
|
+
end
|
306
|
+
|
307
|
+
# Still can't find the port. Let's look at ARGV to fall back
|
308
|
+
@dispatcher_instance_id = default_port if @dispatcher_instance_id.nil?
|
309
|
+
end
|
310
|
+
|
311
|
+
def check_for_unicorn
|
312
|
+
if (defined?(::Unicorn) && defined?(::Unicorn::HttpServer)) && working_jruby?
|
313
|
+
v = find_class_in_object_space(::Unicorn::HttpServer)
|
314
|
+
@discovered_dispatcher = :unicorn if v
|
315
|
+
end
|
316
|
+
end
|
317
|
+
|
318
|
+
def check_for_resque
|
319
|
+
using_resque = (
|
320
|
+
defined?(::Resque) &&
|
321
|
+
(ENV['QUEUE'] || ENV['QUEUES']) &&
|
322
|
+
(File.basename($0) == 'rake' && ARGV.include?('resque:work'))
|
323
|
+
)
|
324
|
+
@discovered_dispatcher = :resque if using_resque
|
325
|
+
end
|
326
|
+
|
327
|
+
def check_for_thin
|
328
|
+
if defined?(::Thin) && defined?(::Thin::Server)
|
329
|
+
# This case covers the thin web dispatcher
|
330
|
+
# Same issue as above- we assume only one instance per process
|
331
|
+
ObjectSpace.each_object(Thin::Server) do |thin_dispatcher|
|
332
|
+
@discovered_dispatcher = :thin
|
333
|
+
backend = thin_dispatcher.backend
|
334
|
+
# We need a way to uniquely identify and distinguish agents. The port
|
335
|
+
# works for this. When using sockets, use the socket file name.
|
336
|
+
if backend.respond_to? :port
|
337
|
+
@dispatcher_instance_id = backend.port
|
338
|
+
elsif backend.respond_to? :socket
|
339
|
+
@dispatcher_instance_id = backend.socket
|
340
|
+
else
|
341
|
+
raise "Unknown thin backend: #{backend}"
|
342
|
+
end
|
343
|
+
end # each thin instance
|
344
|
+
end
|
345
|
+
if defined?(::Thin) && defined?(::Thin::VERSION) && !@discovered_dispatcher
|
346
|
+
@discovered_dispatcher = :thin
|
347
|
+
@dispatcher_instance_id = default_port
|
348
|
+
end
|
349
|
+
end
|
350
|
+
|
351
|
+
def check_for_litespeed
|
352
|
+
if caller.pop =~ /fcgi-bin\/RailsRunner\.rb/
|
353
|
+
@discovered_dispatcher = :litespeed
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
357
|
+
def check_for_passenger
|
358
|
+
if defined?(::PhusionPassenger)
|
359
|
+
@discovered_dispatcher = :passenger
|
360
|
+
end
|
361
|
+
end
|
362
|
+
|
363
|
+
|
364
|
+
def default_port
|
365
|
+
require 'optparse'
|
366
|
+
# If nothing else is found, use the 3000 default
|
367
|
+
default_port = 3000
|
368
|
+
OptionParser.new do |opts|
|
369
|
+
opts.on("-p", "--port=port", String) { | p | default_port = p }
|
370
|
+
opts.parse(ARGV.clone) rescue nil
|
371
|
+
end
|
372
|
+
default_port
|
373
|
+
end
|
374
|
+
|
375
|
+
public
|
376
|
+
# outputs a human-readable description
|
377
|
+
def to_s
|
378
|
+
s = "LocalEnvironment["
|
379
|
+
s << ";dispatcher=#{@discovered_dispatcher}" if @discovered_dispatcher
|
380
|
+
s << ";instance=#{@dispatcher_instance_id}" if @dispatcher_instance_id
|
381
|
+
s << "]"
|
382
|
+
end
|
383
|
+
|
384
|
+
end
|
385
|
+
end
|