wd_newrelic_rpm 3.3.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +591 -0
- data/LICENSE +64 -0
- data/README.rdoc +179 -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/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 +467 -0
- data/lib/new_relic/agent/agent.rb +1325 -0
- data/lib/new_relic/agent/beacon_configuration.rb +121 -0
- data/lib/new_relic/agent/browser_monitoring.rb +142 -0
- data/lib/new_relic/agent/busy_calculator.rb +99 -0
- data/lib/new_relic/agent/chained_call.rb +13 -0
- data/lib/new_relic/agent/database.rb +223 -0
- data/lib/new_relic/agent/error_collector.rb +251 -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 +137 -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/controller_instrumentation.rb +443 -0
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +238 -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 +353 -0
- data/lib/new_relic/agent/instrumentation/metric_frame/pop.rb +80 -0
- data/lib/new_relic/agent/instrumentation/net.rb +29 -0
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +37 -0
- data/lib/new_relic/agent/instrumentation/queue_time.rb +210 -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 +37 -0
- data/lib/new_relic/agent/instrumentation/sinatra.rb +78 -0
- data/lib/new_relic/agent/instrumentation/sunspot.rb +29 -0
- data/lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb +21 -0
- data/lib/new_relic/agent/method_tracer.rb +528 -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_lock_sampler.rb +40 -0
- data/lib/new_relic/agent/samplers/memory_sampler.rb +143 -0
- data/lib/new_relic/agent/samplers/object_sampler.rb +26 -0
- data/lib/new_relic/agent/shim_agent.rb +29 -0
- data/lib/new_relic/agent/sql_sampler.rb +286 -0
- data/lib/new_relic/agent/stats_engine.rb +26 -0
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +123 -0
- data/lib/new_relic/agent/stats_engine/metric_stats.rb +187 -0
- data/lib/new_relic/agent/stats_engine/samplers.rb +95 -0
- data/lib/new_relic/agent/stats_engine/transactions.rb +125 -0
- data/lib/new_relic/agent/transaction_info.rb +74 -0
- data/lib/new_relic/agent/transaction_sample_builder.rb +116 -0
- data/lib/new_relic/agent/transaction_sampler.rb +468 -0
- data/lib/new_relic/agent/worker_loop.rb +89 -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 +105 -0
- data/lib/new_relic/commands/install.rb +80 -0
- data/lib/new_relic/control.rb +46 -0
- data/lib/new_relic/control/class_methods.rb +53 -0
- data/lib/new_relic/control/configuration.rb +206 -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 +31 -0
- data/lib/new_relic/control/frameworks/rails.rb +164 -0
- data/lib/new_relic/control/frameworks/rails3.rb +75 -0
- data/lib/new_relic/control/frameworks/ruby.rb +42 -0
- data/lib/new_relic/control/frameworks/sinatra.rb +20 -0
- data/lib/new_relic/control/instance_methods.rb +179 -0
- data/lib/new_relic/control/instrumentation.rb +100 -0
- data/lib/new_relic/control/logging_methods.rb +143 -0
- data/lib/new_relic/control/profiling.rb +25 -0
- data/lib/new_relic/control/server_methods.rb +114 -0
- data/lib/new_relic/data_serialization.rb +151 -0
- data/lib/new_relic/delayed_job_injection.rb +51 -0
- data/lib/new_relic/language_support.rb +73 -0
- data/lib/new_relic/local_environment.rb +428 -0
- data/lib/new_relic/merbtasks.rb +6 -0
- data/lib/new_relic/metric_data.rb +51 -0
- data/lib/new_relic/metric_spec.rb +76 -0
- data/lib/new_relic/metrics.rb +9 -0
- data/lib/new_relic/noticed_error.rb +29 -0
- data/lib/new_relic/rack/browser_monitoring.rb +76 -0
- data/lib/new_relic/rack/developer_mode.rb +268 -0
- data/lib/new_relic/recipes.rb +77 -0
- data/lib/new_relic/stats.rb +335 -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 +261 -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 +203 -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 +55 -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 +19 -0
- data/newrelic.yml +265 -0
- data/newrelic_rpm.gemspec +312 -0
- data/recipes/newrelic.rb +6 -0
- data/test/active_record_fixtures.rb +77 -0
- data/test/config/newrelic.yml +48 -0
- data/test/config/test_control.rb +48 -0
- data/test/fixtures/proc_cpuinfo.txt +575 -0
- data/test/new_relic/agent/agent/connect_test.rb +403 -0
- data/test/new_relic/agent/agent/start_test.rb +255 -0
- data/test/new_relic/agent/agent/start_worker_thread_test.rb +153 -0
- data/test/new_relic/agent/agent_test.rb +140 -0
- data/test/new_relic/agent/agent_test_controller.rb +77 -0
- data/test/new_relic/agent/agent_test_controller_test.rb +382 -0
- data/test/new_relic/agent/apdex_from_server_test.rb +9 -0
- data/test/new_relic/agent/beacon_configuration_test.rb +111 -0
- data/test/new_relic/agent/browser_monitoring_test.rb +323 -0
- data/test/new_relic/agent/busy_calculator_test.rb +81 -0
- data/test/new_relic/agent/database_test.rb +149 -0
- data/test/new_relic/agent/error_collector/notice_error_test.rb +257 -0
- data/test/new_relic/agent/error_collector_test.rb +192 -0
- data/test/new_relic/agent/instrumentation/active_record_instrumentation_test.rb +576 -0
- data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +34 -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 +50 -0
- data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +84 -0
- data/test/new_relic/agent/instrumentation/queue_time_test.rb +382 -0
- data/test/new_relic/agent/instrumentation/rack_test.rb +35 -0
- data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +184 -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 +164 -0
- data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +234 -0
- data/test/new_relic/agent/method_tracer_test.rb +386 -0
- data/test/new_relic/agent/mock_scope_listener.rb +23 -0
- data/test/new_relic/agent/rpm_agent_test.rb +149 -0
- data/test/new_relic/agent/sampler_test.rb +19 -0
- data/test/new_relic/agent/shim_agent_test.rb +20 -0
- data/test/new_relic/agent/sql_sampler_test.rb +192 -0
- data/test/new_relic/agent/stats_engine/metric_stats/harvest_test.rb +150 -0
- data/test/new_relic/agent/stats_engine/metric_stats_test.rb +82 -0
- data/test/new_relic/agent/stats_engine/samplers_test.rb +99 -0
- data/test/new_relic/agent/stats_engine_test.rb +220 -0
- data/test/new_relic/agent/transaction_info_test.rb +13 -0
- data/test/new_relic/agent/transaction_sample_builder_test.rb +219 -0
- data/test/new_relic/agent/transaction_sampler_test.rb +967 -0
- data/test/new_relic/agent/worker_loop_test.rb +66 -0
- data/test/new_relic/agent_test.rb +187 -0
- data/test/new_relic/collection_helper_test.rb +149 -0
- data/test/new_relic/command/deployments_test.rb +68 -0
- data/test/new_relic/control/class_methods_test.rb +62 -0
- data/test/new_relic/control/configuration_test.rb +84 -0
- data/test/new_relic/control/logging_methods_test.rb +185 -0
- data/test/new_relic/control_test.rb +256 -0
- data/test/new_relic/data_serialization_test.rb +208 -0
- data/test/new_relic/delayed_job_injection_test.rb +16 -0
- data/test/new_relic/local_environment_test.rb +85 -0
- data/test/new_relic/metric_data_test.rb +125 -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/rack/all_test.rb +11 -0
- data/test/new_relic/rack/browser_monitoring_test.rb +142 -0
- data/test/new_relic/rack/developer_mode_helper_test.rb +141 -0
- data/test/new_relic/rack/developer_mode_test.rb +74 -0
- data/test/new_relic/stats_test.rb +411 -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 +389 -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 +177 -0
- data/test/new_relic/version_number_test.rb +89 -0
- data/test/script/build_test_gem.sh +51 -0
- data/test/script/ci.sh +94 -0
- data/test/script/ci_bench.sh +52 -0
- data/test/test_contexts.rb +29 -0
- data/test/test_helper.rb +155 -0
- data/ui/helpers/developer_mode_helper.rb +357 -0
- data/ui/helpers/google_pie_chart.rb +48 -0
- data/ui/views/layouts/newrelic_default.rhtml +47 -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 +53 -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/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/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 +376 -0
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'new_relic/metric_parser/java_parser'
|
2
|
+
module NewRelic
|
3
|
+
module MetricParser
|
4
|
+
class StrutsAction < NewRelic::MetricParser::MetricParser
|
5
|
+
include NewRelic::MetricParser::JavaParser
|
6
|
+
|
7
|
+
def method_name
|
8
|
+
"execute"
|
9
|
+
end
|
10
|
+
|
11
|
+
def full_class_name
|
12
|
+
segment_1
|
13
|
+
end
|
14
|
+
|
15
|
+
def call_rate_suffix
|
16
|
+
'cpm'
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'new_relic/metric_parser/java_parser'
|
2
|
+
module NewRelic
|
3
|
+
module MetricParser
|
4
|
+
class StrutsResult < NewRelic::MetricParser::MetricParser
|
5
|
+
include JavaParser
|
6
|
+
|
7
|
+
def method_name
|
8
|
+
"execute"
|
9
|
+
end
|
10
|
+
|
11
|
+
def full_class_name
|
12
|
+
segment_1
|
13
|
+
end
|
14
|
+
|
15
|
+
def call_rate_suffix
|
16
|
+
'cpm'
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,70 @@
|
|
1
|
+
require 'new_relic/metric_parser'
|
2
|
+
module NewRelic
|
3
|
+
module MetricParser
|
4
|
+
class View < NewRelic::MetricParser::MetricParser
|
5
|
+
def is_view?; true; end
|
6
|
+
|
7
|
+
def is_render?
|
8
|
+
segments.last == "Rendering"
|
9
|
+
end
|
10
|
+
def is_compiler?
|
11
|
+
segments.last == "Compile"
|
12
|
+
end
|
13
|
+
def pie_chart_label
|
14
|
+
case segments.last
|
15
|
+
when "Rendering"
|
16
|
+
"#{file_name(segments[-2])} Template"
|
17
|
+
when "Partial"
|
18
|
+
"#{file_name(segments[-2])} Partial"
|
19
|
+
when "Collection"
|
20
|
+
"#{file_name(segments[-2])} Collection"
|
21
|
+
when ".rhtml Processing"
|
22
|
+
"ERB compilation"
|
23
|
+
else
|
24
|
+
segments[1..-1]
|
25
|
+
end
|
26
|
+
end
|
27
|
+
def template_label
|
28
|
+
case segments.last
|
29
|
+
when "Rendering"
|
30
|
+
"#{file_name(segments[1..-2].join(NewRelic::MetricParser::MetricParser::SEPARATOR))} Template"
|
31
|
+
when "Partial"
|
32
|
+
"#{file_name(segments[1..-2].join(NewRelic::MetricParser::MetricParser::SEPARATOR))} Partial"
|
33
|
+
when "Collection"
|
34
|
+
"#{file_name(segments[1..-2].join(NewRelic::MetricParser::MetricParser::SEPARATOR))} Collection"
|
35
|
+
when ".rhtml Processing"
|
36
|
+
"ERB compilation"
|
37
|
+
else
|
38
|
+
segments[1..-1].join("/")
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
def short_name
|
43
|
+
segments[1..-2].join(NewRelic::MetricParser::MetricParser::SEPARATOR)
|
44
|
+
end
|
45
|
+
|
46
|
+
def controller_name
|
47
|
+
template_label
|
48
|
+
end
|
49
|
+
|
50
|
+
def action_name
|
51
|
+
# Strip the extension
|
52
|
+
segments[-2].gsub(/\..*$/, "")
|
53
|
+
end
|
54
|
+
|
55
|
+
def developer_name
|
56
|
+
template_label
|
57
|
+
end
|
58
|
+
|
59
|
+
def url
|
60
|
+
'/' + file_name(segments[1..-2].join('/'))
|
61
|
+
end
|
62
|
+
private
|
63
|
+
def file_name(path)
|
64
|
+
label = path.gsub /\.html\.rhtml/, '.rhtml'
|
65
|
+
label = segments[1] if label.empty?
|
66
|
+
label
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'new_relic/metric_parser'
|
2
|
+
# The metric where the mongrel queue time is stored
|
3
|
+
module NewRelic
|
4
|
+
module MetricParser
|
5
|
+
class WebFrontend < NewRelic::MetricParser::MetricParser
|
6
|
+
def short_name
|
7
|
+
if segments.last == 'Average Queue Time'
|
8
|
+
'Mongrel Average Queue Time'
|
9
|
+
else
|
10
|
+
super
|
11
|
+
end
|
12
|
+
end
|
13
|
+
def legend_name
|
14
|
+
'Mongrel Wait'
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'new_relic/metric_parser'
|
2
|
+
module NewRelic
|
3
|
+
module MetricParser
|
4
|
+
class WebService < NewRelic::MetricParser::MetricParser
|
5
|
+
def is_web_service?
|
6
|
+
segments[1] != 'Soap' && segments[1] != 'Xml Rpc'
|
7
|
+
end
|
8
|
+
|
9
|
+
def webservice_call_rate_suffix
|
10
|
+
'rpm'
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,133 @@
|
|
1
|
+
class NewRelic::MetricParser::WebTransaction < NewRelic::MetricParser::MetricParser
|
2
|
+
|
3
|
+
def is_web_transaction?; true; end
|
4
|
+
def is_transaction?; true; end
|
5
|
+
|
6
|
+
module Controller
|
7
|
+
def category; 'Controller'; end
|
8
|
+
# If the controller name segments look like a file path, convert it to the controller
|
9
|
+
# class name. If it begins with a capital letter, assume it's already a class name
|
10
|
+
def controller_name
|
11
|
+
path = segments[2..-2].join('/')
|
12
|
+
path < 'a' ? path : camelize(path)+"Controller"
|
13
|
+
end
|
14
|
+
|
15
|
+
def action_name
|
16
|
+
segments[-1]
|
17
|
+
end
|
18
|
+
|
19
|
+
def developer_name
|
20
|
+
if action_name
|
21
|
+
"#{controller_name}##{action_name}"
|
22
|
+
else
|
23
|
+
controller_name
|
24
|
+
end
|
25
|
+
end
|
26
|
+
def short_name
|
27
|
+
developer_name
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
private
|
32
|
+
# Wow, ugliness. Ganked from Rails to make metric parser rails-free
|
33
|
+
def camelize(str)
|
34
|
+
str.to_s.gsub(/\/(.?)/) { "::#{$1.upcase}" }.gsub(/(?:^|_)(.)/) { $1.upcase }
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
# Like a controller but 2nd segment is always full class name,
|
39
|
+
# and 3rd segment (optional) is the action name
|
40
|
+
module Task
|
41
|
+
include Controller
|
42
|
+
def is_web_transaction?; false; end
|
43
|
+
def category; 'Task'; end
|
44
|
+
def action_name; segments[3]; end
|
45
|
+
def controller_name; segments[2]; end
|
46
|
+
end
|
47
|
+
|
48
|
+
module Rack
|
49
|
+
include Task
|
50
|
+
|
51
|
+
def is_web_transaction?; true; end
|
52
|
+
def category; 'Rack App'; end
|
53
|
+
end
|
54
|
+
|
55
|
+
module Spring
|
56
|
+
def category; 'Spring Transaction'; end
|
57
|
+
end
|
58
|
+
|
59
|
+
module SpringView
|
60
|
+
def is_web_transaction?; true; end
|
61
|
+
def category; 'Spring View'; end
|
62
|
+
end
|
63
|
+
|
64
|
+
module SpringController
|
65
|
+
def is_web_transaction?; true; end
|
66
|
+
def category; 'Spring Controller'; end
|
67
|
+
end
|
68
|
+
|
69
|
+
module Solr
|
70
|
+
def category; 'Solr Request'; end
|
71
|
+
end
|
72
|
+
|
73
|
+
module CXF
|
74
|
+
def category; 'CXF Transaction'; end
|
75
|
+
end
|
76
|
+
|
77
|
+
module Pattern
|
78
|
+
def category;'Pattern';end
|
79
|
+
def developer_name
|
80
|
+
"#{category}: #{pattern}"
|
81
|
+
end
|
82
|
+
def pattern
|
83
|
+
segments[2..-1].join('/')
|
84
|
+
end
|
85
|
+
def short_name
|
86
|
+
pattern
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
module Sinatra
|
91
|
+
include Pattern
|
92
|
+
def is_web_transaction?; true; end
|
93
|
+
def category; 'Sinatra'; end
|
94
|
+
end
|
95
|
+
|
96
|
+
def initialize(name)
|
97
|
+
super
|
98
|
+
if %w[Sinatra Spring SpringController SpringView Solr CXF Task Pattern Rack Controller].include?(segment_1)
|
99
|
+
self.extend NewRelic::MetricParser::WebTransaction.const_get(segment_1)
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
def developer_name
|
104
|
+
url
|
105
|
+
end
|
106
|
+
|
107
|
+
def short_name
|
108
|
+
if segments.length > 2
|
109
|
+
developer_name
|
110
|
+
else
|
111
|
+
'All Web Transactions'
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
def url
|
116
|
+
'/' + segments[2..-1].join('/')
|
117
|
+
end
|
118
|
+
|
119
|
+
# this is used to match transaction traces to controller actions.
|
120
|
+
# TT's don't have a preceding slash :P
|
121
|
+
def tt_path
|
122
|
+
segments[2..-1].join('/')
|
123
|
+
end
|
124
|
+
|
125
|
+
def call_rate_suffix
|
126
|
+
'rpm'
|
127
|
+
end
|
128
|
+
|
129
|
+
# default to v2 Web Transactions tab
|
130
|
+
def drilldown_url(metric_id)
|
131
|
+
{:controller => '/v2/transactions', :action => 'index', :anchor => "id=#{metric_id}"}
|
132
|
+
end
|
133
|
+
end
|
metadata
ADDED
@@ -0,0 +1,376 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: wd_newrelic_rpm
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.3.4.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Bill Kayser
|
9
|
+
- Jon Guymon
|
10
|
+
- Justin George
|
11
|
+
- Darin Swanson
|
12
|
+
autorequire:
|
13
|
+
bindir: bin
|
14
|
+
cert_chain: []
|
15
|
+
date: 2012-04-24 00:00:00.000000000 Z
|
16
|
+
dependencies:
|
17
|
+
- !ruby/object:Gem::Dependency
|
18
|
+
name: jeweler
|
19
|
+
requirement: &70237809766480 !ruby/object:Gem::Requirement
|
20
|
+
none: false
|
21
|
+
requirements:
|
22
|
+
- - ! '>='
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: '0'
|
25
|
+
type: :development
|
26
|
+
prerelease: false
|
27
|
+
version_requirements: *70237809766480
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: mocha
|
30
|
+
requirement: &70237809765800 !ruby/object:Gem::Requirement
|
31
|
+
none: false
|
32
|
+
requirements:
|
33
|
+
- - ! '>='
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '0'
|
36
|
+
type: :development
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: *70237809765800
|
39
|
+
- !ruby/object:Gem::Dependency
|
40
|
+
name: shoulda
|
41
|
+
requirement: &70237809765040 !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ! '>='
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
type: :development
|
48
|
+
prerelease: false
|
49
|
+
version_requirements: *70237809765040
|
50
|
+
description: ! 'Weasel Diesel compatible version of rpm. New Relic is a performance
|
51
|
+
management system, developed by New Relic,
|
52
|
+
|
53
|
+
Inc (http://www.newrelic.com). New Relic provides you with deep
|
54
|
+
|
55
|
+
information about the performance of your web application as it runs
|
56
|
+
|
57
|
+
in production. The New Relic Ruby Agent is dual-purposed as a either a
|
58
|
+
|
59
|
+
Gem or plugin, hosted on
|
60
|
+
|
61
|
+
http://github.com/newrelic/rpm/
|
62
|
+
|
63
|
+
'
|
64
|
+
email: support@newrelic.com
|
65
|
+
executables:
|
66
|
+
- newrelic_cmd
|
67
|
+
- mongrel_rpm
|
68
|
+
- newrelic
|
69
|
+
extensions: []
|
70
|
+
extra_rdoc_files:
|
71
|
+
- CHANGELOG
|
72
|
+
- LICENSE
|
73
|
+
- README.rdoc
|
74
|
+
- newrelic.yml
|
75
|
+
files:
|
76
|
+
- CHANGELOG
|
77
|
+
- LICENSE
|
78
|
+
- README.rdoc
|
79
|
+
- bin/mongrel_rpm
|
80
|
+
- bin/newrelic
|
81
|
+
- bin/newrelic_cmd
|
82
|
+
- cert/cacert.pem
|
83
|
+
- cert/oldsite.pem
|
84
|
+
- cert/site.pem
|
85
|
+
- install.rb
|
86
|
+
- lib/conditional_vendored_dependency_detection.rb
|
87
|
+
- lib/conditional_vendored_metric_parser.rb
|
88
|
+
- lib/new_relic/agent.rb
|
89
|
+
- lib/new_relic/agent/agent.rb
|
90
|
+
- lib/new_relic/agent/beacon_configuration.rb
|
91
|
+
- lib/new_relic/agent/browser_monitoring.rb
|
92
|
+
- lib/new_relic/agent/busy_calculator.rb
|
93
|
+
- lib/new_relic/agent/chained_call.rb
|
94
|
+
- lib/new_relic/agent/database.rb
|
95
|
+
- lib/new_relic/agent/error_collector.rb
|
96
|
+
- lib/new_relic/agent/instrumentation.rb
|
97
|
+
- lib/new_relic/agent/instrumentation/active_merchant.rb
|
98
|
+
- lib/new_relic/agent/instrumentation/active_record.rb
|
99
|
+
- lib/new_relic/agent/instrumentation/acts_as_solr.rb
|
100
|
+
- lib/new_relic/agent/instrumentation/authlogic.rb
|
101
|
+
- lib/new_relic/agent/instrumentation/controller_instrumentation.rb
|
102
|
+
- lib/new_relic/agent/instrumentation/data_mapper.rb
|
103
|
+
- lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb
|
104
|
+
- lib/new_relic/agent/instrumentation/memcache.rb
|
105
|
+
- lib/new_relic/agent/instrumentation/merb/controller.rb
|
106
|
+
- lib/new_relic/agent/instrumentation/merb/errors.rb
|
107
|
+
- lib/new_relic/agent/instrumentation/metric_frame.rb
|
108
|
+
- lib/new_relic/agent/instrumentation/metric_frame/pop.rb
|
109
|
+
- lib/new_relic/agent/instrumentation/net.rb
|
110
|
+
- lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
|
111
|
+
- lib/new_relic/agent/instrumentation/queue_time.rb
|
112
|
+
- lib/new_relic/agent/instrumentation/rack.rb
|
113
|
+
- lib/new_relic/agent/instrumentation/rails/action_controller.rb
|
114
|
+
- lib/new_relic/agent/instrumentation/rails/action_web_service.rb
|
115
|
+
- lib/new_relic/agent/instrumentation/rails/errors.rb
|
116
|
+
- lib/new_relic/agent/instrumentation/rails3/action_controller.rb
|
117
|
+
- lib/new_relic/agent/instrumentation/rails3/errors.rb
|
118
|
+
- lib/new_relic/agent/instrumentation/sinatra.rb
|
119
|
+
- lib/new_relic/agent/instrumentation/sunspot.rb
|
120
|
+
- lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
|
121
|
+
- lib/new_relic/agent/method_tracer.rb
|
122
|
+
- lib/new_relic/agent/sampler.rb
|
123
|
+
- lib/new_relic/agent/samplers/cpu_sampler.rb
|
124
|
+
- lib/new_relic/agent/samplers/delayed_job_lock_sampler.rb
|
125
|
+
- lib/new_relic/agent/samplers/memory_sampler.rb
|
126
|
+
- lib/new_relic/agent/samplers/object_sampler.rb
|
127
|
+
- lib/new_relic/agent/shim_agent.rb
|
128
|
+
- lib/new_relic/agent/sql_sampler.rb
|
129
|
+
- lib/new_relic/agent/stats_engine.rb
|
130
|
+
- lib/new_relic/agent/stats_engine/gc_profiler.rb
|
131
|
+
- lib/new_relic/agent/stats_engine/metric_stats.rb
|
132
|
+
- lib/new_relic/agent/stats_engine/samplers.rb
|
133
|
+
- lib/new_relic/agent/stats_engine/transactions.rb
|
134
|
+
- lib/new_relic/agent/transaction_info.rb
|
135
|
+
- lib/new_relic/agent/transaction_sample_builder.rb
|
136
|
+
- lib/new_relic/agent/transaction_sampler.rb
|
137
|
+
- lib/new_relic/agent/worker_loop.rb
|
138
|
+
- lib/new_relic/collection_helper.rb
|
139
|
+
- lib/new_relic/command.rb
|
140
|
+
- lib/new_relic/commands/deployments.rb
|
141
|
+
- lib/new_relic/commands/install.rb
|
142
|
+
- lib/new_relic/control.rb
|
143
|
+
- lib/new_relic/control/class_methods.rb
|
144
|
+
- lib/new_relic/control/configuration.rb
|
145
|
+
- lib/new_relic/control/frameworks.rb
|
146
|
+
- lib/new_relic/control/frameworks/external.rb
|
147
|
+
- lib/new_relic/control/frameworks/merb.rb
|
148
|
+
- lib/new_relic/control/frameworks/rails.rb
|
149
|
+
- lib/new_relic/control/frameworks/rails3.rb
|
150
|
+
- lib/new_relic/control/frameworks/ruby.rb
|
151
|
+
- lib/new_relic/control/frameworks/sinatra.rb
|
152
|
+
- lib/new_relic/control/instance_methods.rb
|
153
|
+
- lib/new_relic/control/instrumentation.rb
|
154
|
+
- lib/new_relic/control/logging_methods.rb
|
155
|
+
- lib/new_relic/control/profiling.rb
|
156
|
+
- lib/new_relic/control/server_methods.rb
|
157
|
+
- lib/new_relic/data_serialization.rb
|
158
|
+
- lib/new_relic/delayed_job_injection.rb
|
159
|
+
- lib/new_relic/language_support.rb
|
160
|
+
- lib/new_relic/local_environment.rb
|
161
|
+
- lib/new_relic/merbtasks.rb
|
162
|
+
- lib/new_relic/metric_data.rb
|
163
|
+
- lib/new_relic/metric_spec.rb
|
164
|
+
- lib/new_relic/metrics.rb
|
165
|
+
- lib/new_relic/noticed_error.rb
|
166
|
+
- lib/new_relic/rack/browser_monitoring.rb
|
167
|
+
- lib/new_relic/rack/developer_mode.rb
|
168
|
+
- lib/new_relic/recipes.rb
|
169
|
+
- lib/new_relic/stats.rb
|
170
|
+
- lib/new_relic/timer_lib.rb
|
171
|
+
- lib/new_relic/transaction_analysis.rb
|
172
|
+
- lib/new_relic/transaction_analysis/segment_summary.rb
|
173
|
+
- lib/new_relic/transaction_sample.rb
|
174
|
+
- lib/new_relic/transaction_sample/composite_segment.rb
|
175
|
+
- lib/new_relic/transaction_sample/fake_segment.rb
|
176
|
+
- lib/new_relic/transaction_sample/segment.rb
|
177
|
+
- lib/new_relic/transaction_sample/summary_segment.rb
|
178
|
+
- lib/new_relic/url_rule.rb
|
179
|
+
- lib/new_relic/version.rb
|
180
|
+
- lib/newrelic_rpm.rb
|
181
|
+
- lib/tasks/all.rb
|
182
|
+
- lib/tasks/install.rake
|
183
|
+
- lib/tasks/tests.rake
|
184
|
+
- newrelic.yml
|
185
|
+
- newrelic_rpm.gemspec
|
186
|
+
- recipes/newrelic.rb
|
187
|
+
- test/active_record_fixtures.rb
|
188
|
+
- test/config/newrelic.yml
|
189
|
+
- test/config/test_control.rb
|
190
|
+
- test/fixtures/proc_cpuinfo.txt
|
191
|
+
- test/new_relic/agent/agent/connect_test.rb
|
192
|
+
- test/new_relic/agent/agent/start_test.rb
|
193
|
+
- test/new_relic/agent/agent/start_worker_thread_test.rb
|
194
|
+
- test/new_relic/agent/agent_test.rb
|
195
|
+
- test/new_relic/agent/agent_test_controller.rb
|
196
|
+
- test/new_relic/agent/agent_test_controller_test.rb
|
197
|
+
- test/new_relic/agent/apdex_from_server_test.rb
|
198
|
+
- test/new_relic/agent/beacon_configuration_test.rb
|
199
|
+
- test/new_relic/agent/browser_monitoring_test.rb
|
200
|
+
- test/new_relic/agent/busy_calculator_test.rb
|
201
|
+
- test/new_relic/agent/database_test.rb
|
202
|
+
- test/new_relic/agent/error_collector/notice_error_test.rb
|
203
|
+
- test/new_relic/agent/error_collector_test.rb
|
204
|
+
- test/new_relic/agent/instrumentation/active_record_instrumentation_test.rb
|
205
|
+
- test/new_relic/agent/instrumentation/controller_instrumentation_test.rb
|
206
|
+
- test/new_relic/agent/instrumentation/instrumentation_test.rb
|
207
|
+
- test/new_relic/agent/instrumentation/metric_frame/pop_test.rb
|
208
|
+
- test/new_relic/agent/instrumentation/metric_frame_test.rb
|
209
|
+
- test/new_relic/agent/instrumentation/net_instrumentation_test.rb
|
210
|
+
- test/new_relic/agent/instrumentation/queue_time_test.rb
|
211
|
+
- test/new_relic/agent/instrumentation/rack_test.rb
|
212
|
+
- test/new_relic/agent/instrumentation/task_instrumentation_test.rb
|
213
|
+
- test/new_relic/agent/memcache_instrumentation_test.rb
|
214
|
+
- test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb
|
215
|
+
- test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb
|
216
|
+
- test/new_relic/agent/method_tracer_test.rb
|
217
|
+
- test/new_relic/agent/mock_scope_listener.rb
|
218
|
+
- test/new_relic/agent/rpm_agent_test.rb
|
219
|
+
- test/new_relic/agent/sampler_test.rb
|
220
|
+
- test/new_relic/agent/shim_agent_test.rb
|
221
|
+
- test/new_relic/agent/sql_sampler_test.rb
|
222
|
+
- test/new_relic/agent/stats_engine/metric_stats/harvest_test.rb
|
223
|
+
- test/new_relic/agent/stats_engine/metric_stats_test.rb
|
224
|
+
- test/new_relic/agent/stats_engine/samplers_test.rb
|
225
|
+
- test/new_relic/agent/stats_engine_test.rb
|
226
|
+
- test/new_relic/agent/transaction_info_test.rb
|
227
|
+
- test/new_relic/agent/transaction_sample_builder_test.rb
|
228
|
+
- test/new_relic/agent/transaction_sampler_test.rb
|
229
|
+
- test/new_relic/agent/worker_loop_test.rb
|
230
|
+
- test/new_relic/agent_test.rb
|
231
|
+
- test/new_relic/collection_helper_test.rb
|
232
|
+
- test/new_relic/command/deployments_test.rb
|
233
|
+
- test/new_relic/control/class_methods_test.rb
|
234
|
+
- test/new_relic/control/configuration_test.rb
|
235
|
+
- test/new_relic/control/logging_methods_test.rb
|
236
|
+
- test/new_relic/control_test.rb
|
237
|
+
- test/new_relic/data_serialization_test.rb
|
238
|
+
- test/new_relic/delayed_job_injection_test.rb
|
239
|
+
- test/new_relic/local_environment_test.rb
|
240
|
+
- test/new_relic/metric_data_test.rb
|
241
|
+
- test/new_relic/metric_parser/metric_parser_test.rb
|
242
|
+
- test/new_relic/metric_spec_test.rb
|
243
|
+
- test/new_relic/rack/all_test.rb
|
244
|
+
- test/new_relic/rack/browser_monitoring_test.rb
|
245
|
+
- test/new_relic/rack/developer_mode_helper_test.rb
|
246
|
+
- test/new_relic/rack/developer_mode_test.rb
|
247
|
+
- test/new_relic/stats_test.rb
|
248
|
+
- test/new_relic/transaction_analysis/segment_summary_test.rb
|
249
|
+
- test/new_relic/transaction_analysis_test.rb
|
250
|
+
- test/new_relic/transaction_sample/composite_segment_test.rb
|
251
|
+
- test/new_relic/transaction_sample/fake_segment_test.rb
|
252
|
+
- test/new_relic/transaction_sample/segment_test.rb
|
253
|
+
- test/new_relic/transaction_sample/summary_segment_test.rb
|
254
|
+
- test/new_relic/transaction_sample_subtest_test.rb
|
255
|
+
- test/new_relic/transaction_sample_test.rb
|
256
|
+
- test/new_relic/version_number_test.rb
|
257
|
+
- test/script/build_test_gem.sh
|
258
|
+
- test/script/ci.sh
|
259
|
+
- test/script/ci_bench.sh
|
260
|
+
- test/test_contexts.rb
|
261
|
+
- test/test_helper.rb
|
262
|
+
- ui/helpers/developer_mode_helper.rb
|
263
|
+
- ui/helpers/google_pie_chart.rb
|
264
|
+
- ui/views/layouts/newrelic_default.rhtml
|
265
|
+
- ui/views/newrelic/_explain_plans.rhtml
|
266
|
+
- ui/views/newrelic/_sample.rhtml
|
267
|
+
- ui/views/newrelic/_segment.rhtml
|
268
|
+
- ui/views/newrelic/_segment_limit_message.rhtml
|
269
|
+
- ui/views/newrelic/_segment_row.rhtml
|
270
|
+
- ui/views/newrelic/_show_sample_detail.rhtml
|
271
|
+
- ui/views/newrelic/_show_sample_sql.rhtml
|
272
|
+
- ui/views/newrelic/_show_sample_summary.rhtml
|
273
|
+
- ui/views/newrelic/_sql_row.rhtml
|
274
|
+
- ui/views/newrelic/_stack_trace.rhtml
|
275
|
+
- ui/views/newrelic/_table.rhtml
|
276
|
+
- ui/views/newrelic/explain_sql.rhtml
|
277
|
+
- ui/views/newrelic/file/images/arrow-close.png
|
278
|
+
- ui/views/newrelic/file/images/arrow-open.png
|
279
|
+
- ui/views/newrelic/file/images/blue_bar.gif
|
280
|
+
- ui/views/newrelic/file/images/file_icon.png
|
281
|
+
- ui/views/newrelic/file/images/gray_bar.gif
|
282
|
+
- ui/views/newrelic/file/images/new-relic-rpm-desktop.gif
|
283
|
+
- ui/views/newrelic/file/images/new_relic_rpm_desktop.gif
|
284
|
+
- ui/views/newrelic/file/images/textmate.png
|
285
|
+
- ui/views/newrelic/file/javascript/jquery-1.4.2.js
|
286
|
+
- ui/views/newrelic/file/javascript/transaction_sample.js
|
287
|
+
- ui/views/newrelic/file/stylesheets/style.css
|
288
|
+
- ui/views/newrelic/index.rhtml
|
289
|
+
- ui/views/newrelic/sample_not_found.rhtml
|
290
|
+
- ui/views/newrelic/show_sample.rhtml
|
291
|
+
- ui/views/newrelic/show_source.rhtml
|
292
|
+
- ui/views/newrelic/threads.rhtml
|
293
|
+
- vendor/gems/dependency_detection-0.0.1.build/LICENSE
|
294
|
+
- vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb
|
295
|
+
- vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection/version.rb
|
296
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb
|
297
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb
|
298
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/action_mailer.rb
|
299
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_merchant.rb
|
300
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_record.rb
|
301
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/apdex.rb
|
302
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/background_transaction.rb
|
303
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/client.rb
|
304
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller.rb
|
305
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_cpu.rb
|
306
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_ext.rb
|
307
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database.rb
|
308
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database_pool.rb
|
309
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net.rb
|
310
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net_parser.rb
|
311
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/errors.rb
|
312
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/external.rb
|
313
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/frontend.rb
|
314
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/gc.rb
|
315
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/hibernate_session.rb
|
316
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java.rb
|
317
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java_parser.rb
|
318
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp.rb
|
319
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp_tag.rb
|
320
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/mem_cache.rb
|
321
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/metric_parser.rb
|
322
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/orm.rb
|
323
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/other_transaction.rb
|
324
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet.rb
|
325
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_context_listener.rb
|
326
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_filter.rb
|
327
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr.rb
|
328
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr_request_handler.rb
|
329
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring.rb
|
330
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_controller.rb
|
331
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_view.rb
|
332
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_action.rb
|
333
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_result.rb
|
334
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/version.rb
|
335
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/view.rb
|
336
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_frontend.rb
|
337
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_service.rb
|
338
|
+
- vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_transaction.rb
|
339
|
+
homepage: http://www.github.com/newrelic/rpm
|
340
|
+
licenses: []
|
341
|
+
post_install_message: ! "\nPLEASE NOTE:\n\nDeveloper Mode is now a Rack middleware.\n\nDeveloper
|
342
|
+
Mode is no longer available in Rails 2.1 and earlier.\nHowever, starting in version
|
343
|
+
2.12 you can use Developer Mode in any\nRack based framework, in addition to Rails.
|
344
|
+
\ To install developer mode\nin a non-Rails application, just add NewRelic::Rack::DeveloperMode
|
345
|
+
to\nyour middleware stack.\n\nIf you are using JRuby, we recommend using at least
|
346
|
+
version 1.4 or \nlater because of issues with the implementation of the timeout
|
347
|
+
library.\n\nRefer to the README.md file for more information.\n\nPlease see http://github.com/newrelic/rpm/blob/master/CHANGELOG\nfor
|
348
|
+
a complete description of the features and enhancements available\nin version 3.3
|
349
|
+
of the Ruby Agent.\n \n"
|
350
|
+
rdoc_options:
|
351
|
+
- --line-numbers
|
352
|
+
- --inline-source
|
353
|
+
- --title
|
354
|
+
- New Relic Ruby Agent
|
355
|
+
require_paths:
|
356
|
+
- lib
|
357
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
358
|
+
none: false
|
359
|
+
requirements:
|
360
|
+
- - ! '>='
|
361
|
+
- !ruby/object:Gem::Version
|
362
|
+
version: '0'
|
363
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
364
|
+
none: false
|
365
|
+
requirements:
|
366
|
+
- - ! '>='
|
367
|
+
- !ruby/object:Gem::Version
|
368
|
+
version: '0'
|
369
|
+
requirements: []
|
370
|
+
rubyforge_project:
|
371
|
+
rubygems_version: 1.8.16
|
372
|
+
signing_key:
|
373
|
+
specification_version: 3
|
374
|
+
summary: New Relic Ruby Agent
|
375
|
+
test_files: []
|
376
|
+
has_rdoc:
|