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,51 @@
|
|
1
|
+
module NewRelic
|
2
|
+
class MetricData
|
3
|
+
# nil, or a NewRelic::MetricSpec object if we have no cached ID
|
4
|
+
attr_accessor :metric_spec
|
5
|
+
# nil or a cached integer ID for the metric from the collector.
|
6
|
+
attr_accessor :metric_id
|
7
|
+
# the actual statistics object
|
8
|
+
attr_accessor :stats
|
9
|
+
|
10
|
+
def initialize(metric_spec, stats, metric_id)
|
11
|
+
@metric_spec = metric_spec
|
12
|
+
self.stats = stats
|
13
|
+
self.metric_id = metric_id
|
14
|
+
end
|
15
|
+
|
16
|
+
def eql?(o)
|
17
|
+
(metric_spec.eql? o.metric_spec) && (stats.eql? o.stats)
|
18
|
+
end
|
19
|
+
|
20
|
+
def original_spec
|
21
|
+
@original_spec || @metric_spec
|
22
|
+
end
|
23
|
+
|
24
|
+
# assigns a new metric spec, and retains the old metric spec as
|
25
|
+
# @original_spec if it exists currently
|
26
|
+
def metric_spec= new_spec
|
27
|
+
@original_spec = @metric_spec if @metric_spec
|
28
|
+
@metric_spec = new_spec
|
29
|
+
end
|
30
|
+
|
31
|
+
def hash
|
32
|
+
metric_spec.hash ^ stats.hash
|
33
|
+
end
|
34
|
+
|
35
|
+
# Serialize with all attributes, but if the metric id is not nil, then don't send the metric spec
|
36
|
+
def to_json(*a)
|
37
|
+
%Q[{"metric_spec":#{metric_id ? 'null' : metric_spec.to_json},"stats":{"total_exclusive_time":#{stats.total_exclusive_time},"min_call_time":#{stats.min_call_time},"call_count":#{stats.call_count},"sum_of_squares":#{stats.sum_of_squares},"total_call_time":#{stats.total_call_time},"max_call_time":#{stats.max_call_time}},"metric_id":#{metric_id ? metric_id : 'null'}}]
|
38
|
+
end
|
39
|
+
|
40
|
+
def to_s
|
41
|
+
if metric_spec
|
42
|
+
"#{metric_spec.name}(#{metric_spec.scope}): #{stats}"
|
43
|
+
else
|
44
|
+
"#{metric_id}: #{stats}"
|
45
|
+
end
|
46
|
+
end
|
47
|
+
def inspect
|
48
|
+
"#<MetricData metric_spec:#{metric_spec.inspect}, stats:#{stats.inspect}, metric_id:#{metric_id.inspect}>"
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,76 @@
|
|
1
|
+
# this struct uniquely defines a metric, optionally inside
|
2
|
+
# the call scope of another metric
|
3
|
+
class NewRelic::MetricSpec
|
4
|
+
attr_accessor :name
|
5
|
+
attr_accessor :scope
|
6
|
+
|
7
|
+
# the maximum length of a metric name or metric scope
|
8
|
+
MAX_LENGTH = 255
|
9
|
+
LENGTH_RANGE = (0...MAX_LENGTH)
|
10
|
+
# Need a "zero-arg" constructor so it can be instantiated from java (using
|
11
|
+
# jruby) for sending responses to ruby agents from the java collector.
|
12
|
+
#
|
13
|
+
def initialize(metric_name = '', metric_scope = '')
|
14
|
+
self.name = (metric_name || '') && metric_name[LENGTH_RANGE]
|
15
|
+
self.scope = metric_scope && metric_scope[LENGTH_RANGE]
|
16
|
+
end
|
17
|
+
|
18
|
+
# truncates the name and scope to the MAX_LENGTH
|
19
|
+
def truncate!
|
20
|
+
self.name = name[LENGTH_RANGE] if name && name.size > MAX_LENGTH
|
21
|
+
self.scope = scope[LENGTH_RANGE] if scope && scope.size > MAX_LENGTH
|
22
|
+
end
|
23
|
+
|
24
|
+
def ==(o)
|
25
|
+
self.eql?(o)
|
26
|
+
end
|
27
|
+
|
28
|
+
def eql? o
|
29
|
+
self.class == o.class &&
|
30
|
+
name.eql?(o.name) &&
|
31
|
+
# coerce scope to a string and compare
|
32
|
+
scope.to_s == o.scope.to_s
|
33
|
+
end
|
34
|
+
|
35
|
+
def hash
|
36
|
+
h = name.hash
|
37
|
+
h ^= scope.hash unless scope.nil?
|
38
|
+
h
|
39
|
+
end
|
40
|
+
# return a new metric spec if the given regex
|
41
|
+
# matches the name or scope.
|
42
|
+
def sub(pattern, replacement, apply_to_scope = true)
|
43
|
+
NewRelic::Control.instance.log.warn("The sub method on metric specs is deprecated") rescue nil
|
44
|
+
return nil if name !~ pattern &&
|
45
|
+
(!apply_to_scope || scope.nil? || scope !~ pattern)
|
46
|
+
new_name = name.sub(pattern, replacement)[LENGTH_RANGE]
|
47
|
+
|
48
|
+
if apply_to_scope
|
49
|
+
new_scope = (scope && scope.sub(pattern, replacement)[LENGTH_RANGE])
|
50
|
+
else
|
51
|
+
new_scope = scope
|
52
|
+
end
|
53
|
+
|
54
|
+
self.class.new new_name, new_scope
|
55
|
+
end
|
56
|
+
|
57
|
+
def to_s
|
58
|
+
return name if scope.empty?
|
59
|
+
"#{name}:#{scope}"
|
60
|
+
end
|
61
|
+
|
62
|
+
def inspect
|
63
|
+
"#<NewRelic::MetricSpec '#{name}':'#{scope}'>"
|
64
|
+
end
|
65
|
+
|
66
|
+
def to_json(*a)
|
67
|
+
{'name' => name,
|
68
|
+
'scope' => scope}.to_json(*a)
|
69
|
+
end
|
70
|
+
|
71
|
+
def <=>(o)
|
72
|
+
namecmp = self.name <=> o.name
|
73
|
+
return namecmp if namecmp != 0
|
74
|
+
return (self.scope || '') <=> (o.scope || '')
|
75
|
+
end
|
76
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# This class encapsulates an error that was noticed by New Relic in a managed app.
|
2
|
+
class NewRelic::NoticedError
|
3
|
+
extend NewRelic::CollectionHelper
|
4
|
+
attr_accessor :path, :timestamp, :params, :exception_class, :message
|
5
|
+
|
6
|
+
def initialize(path, data, exception, timestamp = Time.now)
|
7
|
+
self.path = path
|
8
|
+
self.params = NewRelic::NoticedError.normalize_params(data)
|
9
|
+
|
10
|
+
self.exception_class = exception.is_a?(Exception) ? exception.class.name : 'Error'
|
11
|
+
|
12
|
+
if exception.respond_to?('original_exception')
|
13
|
+
self.message = exception.original_exception.message.to_s
|
14
|
+
else
|
15
|
+
self.message = (exception || '<no message>').to_s
|
16
|
+
end
|
17
|
+
|
18
|
+
# clamp long messages to 4k so that we don't send a lot of
|
19
|
+
# overhead across the wire
|
20
|
+
self.message = self.message[0..4095] if self.message.length > 4096
|
21
|
+
|
22
|
+
# obfuscate error message if necessary
|
23
|
+
if NewRelic::Control.instance.fetch('high_security', false)
|
24
|
+
self.message = NewRelic::Agent::Database.obfuscate_sql(self.message)
|
25
|
+
end
|
26
|
+
|
27
|
+
self.timestamp = timestamp
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,76 @@
|
|
1
|
+
require 'rack'
|
2
|
+
|
3
|
+
module NewRelic::Rack
|
4
|
+
class BrowserMonitoring
|
5
|
+
|
6
|
+
def initialize(app, options = {})
|
7
|
+
@app = app
|
8
|
+
end
|
9
|
+
|
10
|
+
# method required by Rack interface
|
11
|
+
def call(env)
|
12
|
+
# Two experimental options for allowing TT capture based on http params
|
13
|
+
#
|
14
|
+
# if req.params['nr_capture_deep_tt']
|
15
|
+
# NewRelic::Agent::TransactionInfo.get.force_persist = true
|
16
|
+
# NewRelic::Agent::TransactionInfo.get.capture_deep_tt = true
|
17
|
+
# end
|
18
|
+
|
19
|
+
# if req.params['nr_capture_tt']
|
20
|
+
# NewRelic::Agent::TransactionInfo.get.force_persist = true
|
21
|
+
# end
|
22
|
+
|
23
|
+
result = @app.call(env) # [status, headers, response]
|
24
|
+
|
25
|
+
if (NewRelic::Agent.browser_timing_header != "") && should_instrument?(result[0], result[1])
|
26
|
+
response_string = autoinstrument_source(result[2], result[1])
|
27
|
+
|
28
|
+
if response_string
|
29
|
+
response = Rack::Response.new(response_string, result[0], result[1])
|
30
|
+
response.finish
|
31
|
+
else
|
32
|
+
result
|
33
|
+
end
|
34
|
+
else
|
35
|
+
result
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def should_instrument?(status, headers)
|
40
|
+
status == 200 && headers["Content-Type"] && headers["Content-Type"].include?("text/html") &&
|
41
|
+
!headers['Content-Disposition'].to_s.include?('attachment')
|
42
|
+
end
|
43
|
+
|
44
|
+
def autoinstrument_source(response, headers)
|
45
|
+
source = nil
|
46
|
+
response.each {|fragment| source ? (source << fragment.to_s) : (source = fragment.to_s)}
|
47
|
+
return nil unless source
|
48
|
+
|
49
|
+
body_start = source.index("<body")
|
50
|
+
body_close = source.rindex("</body>")
|
51
|
+
|
52
|
+
if body_start && body_close
|
53
|
+
footer = NewRelic::Agent.browser_timing_footer
|
54
|
+
header = NewRelic::Agent.browser_timing_header
|
55
|
+
|
56
|
+
if source.include?('X-UA-Compatible')
|
57
|
+
# put at end of header if UA-Compatible meta tag found
|
58
|
+
head_pos = source.index("</head>")
|
59
|
+
elsif head_open = source.index("<head")
|
60
|
+
# put at the beginning of the header
|
61
|
+
head_pos = source.index(">", head_open) + 1
|
62
|
+
else
|
63
|
+
# put the header right above body start
|
64
|
+
head_pos = body_start
|
65
|
+
end
|
66
|
+
|
67
|
+
source = source[0..(head_pos-1)] + header + source[head_pos..(body_close-1)] + footer + source[body_close..-1]
|
68
|
+
|
69
|
+
headers['Content-Length'] = source.length.to_s if headers['Content-Length']
|
70
|
+
end
|
71
|
+
|
72
|
+
source
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
end
|
@@ -0,0 +1,268 @@
|
|
1
|
+
require 'rack'
|
2
|
+
require 'rack/request'
|
3
|
+
require 'rack/response'
|
4
|
+
require 'rack/file'
|
5
|
+
require 'new_relic/metric_parser/metric_parser'
|
6
|
+
require 'new_relic/collection_helper'
|
7
|
+
|
8
|
+
module NewRelic
|
9
|
+
module Rack
|
10
|
+
class DeveloperMode
|
11
|
+
|
12
|
+
VIEW_PATH = File.expand_path('../../../../ui/views/', __FILE__)
|
13
|
+
HELPER_PATH = File.expand_path('../../../../ui/helpers/', __FILE__)
|
14
|
+
require File.join(HELPER_PATH, 'developer_mode_helper.rb')
|
15
|
+
|
16
|
+
|
17
|
+
include NewRelic::DeveloperModeHelper
|
18
|
+
|
19
|
+
def initialize(app)
|
20
|
+
@app = app
|
21
|
+
end
|
22
|
+
|
23
|
+
def call(env)
|
24
|
+
return @app.call(env) unless /^\/newrelic/ =~ ::Rack::Request.new(env).path_info
|
25
|
+
dup._call(env)
|
26
|
+
end
|
27
|
+
|
28
|
+
protected
|
29
|
+
|
30
|
+
def _call(env)
|
31
|
+
@req = ::Rack::Request.new(env)
|
32
|
+
@rendered = false
|
33
|
+
case @req.path_info
|
34
|
+
when /profile/
|
35
|
+
profile
|
36
|
+
when /file/
|
37
|
+
::Rack::File.new(VIEW_PATH).call(env)
|
38
|
+
when /index/
|
39
|
+
index
|
40
|
+
when /threads/
|
41
|
+
threads
|
42
|
+
when /reset/
|
43
|
+
reset
|
44
|
+
when /show_sample_detail/
|
45
|
+
show_sample_data
|
46
|
+
when /show_sample_summary/
|
47
|
+
show_sample_data
|
48
|
+
when /show_sample_sql/
|
49
|
+
show_sample_data
|
50
|
+
when /explain_sql/
|
51
|
+
explain_sql
|
52
|
+
when /show_source/
|
53
|
+
show_source
|
54
|
+
when /^\/newrelic\/?$/
|
55
|
+
index
|
56
|
+
else
|
57
|
+
@app.call(env)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
private
|
62
|
+
|
63
|
+
def index
|
64
|
+
get_samples
|
65
|
+
render(:index)
|
66
|
+
end
|
67
|
+
|
68
|
+
def reset
|
69
|
+
NewRelic::Agent.instance.transaction_sampler.reset!
|
70
|
+
NewRelic::Agent.instance.sql_sampler.reset!
|
71
|
+
::Rack::Response.new{|r| r.redirect('/newrelic/')}.finish
|
72
|
+
end
|
73
|
+
|
74
|
+
def explain_sql
|
75
|
+
get_segment
|
76
|
+
|
77
|
+
return render(:sample_not_found) unless @sample
|
78
|
+
|
79
|
+
@sql = @segment[:sql]
|
80
|
+
@trace = @segment[:backtrace]
|
81
|
+
|
82
|
+
if NewRelic::Agent.agent.record_sql == :obfuscated
|
83
|
+
@obfuscated_sql = @segment.obfuscated_sql
|
84
|
+
end
|
85
|
+
|
86
|
+
headers, explanations = @segment.explain_sql
|
87
|
+
if explanations
|
88
|
+
@explanation = explanations
|
89
|
+
if !@explanation.blank?
|
90
|
+
first_row = @explanation.first
|
91
|
+
# Show the standard headers if it looks like a mysql explain plan
|
92
|
+
# Otherwise show blank headers
|
93
|
+
if first_row.length < NewRelic::MYSQL_EXPLAIN_COLUMNS.length
|
94
|
+
@row_headers = nil
|
95
|
+
else
|
96
|
+
@row_headers = NewRelic::MYSQL_EXPLAIN_COLUMNS
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
render(:explain_sql)
|
101
|
+
end
|
102
|
+
|
103
|
+
def profile
|
104
|
+
NewRelic::Control.instance.profiling = params['start'] == 'true'
|
105
|
+
index
|
106
|
+
end
|
107
|
+
|
108
|
+
def threads
|
109
|
+
render(:threads)
|
110
|
+
end
|
111
|
+
|
112
|
+
def render(view, layout=true)
|
113
|
+
add_rack_array = true
|
114
|
+
if view.is_a? Hash
|
115
|
+
layout = false
|
116
|
+
if view[:object]
|
117
|
+
object = view[:object]
|
118
|
+
end
|
119
|
+
|
120
|
+
if view[:collection]
|
121
|
+
return view[:collection].map do |object|
|
122
|
+
render({:partial => view[:partial], :object => object})
|
123
|
+
end.join(' ')
|
124
|
+
end
|
125
|
+
|
126
|
+
if view[:partial]
|
127
|
+
add_rack_array = false
|
128
|
+
view = "_#{view[:partial]}"
|
129
|
+
end
|
130
|
+
end
|
131
|
+
binding = Proc.new {}.binding
|
132
|
+
if layout
|
133
|
+
body = render_with_layout(view) do
|
134
|
+
render_without_layout(view, binding)
|
135
|
+
end
|
136
|
+
else
|
137
|
+
body = render_without_layout(view, binding)
|
138
|
+
end
|
139
|
+
if add_rack_array
|
140
|
+
::Rack::Response.new(body).finish
|
141
|
+
else
|
142
|
+
body
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
146
|
+
# You have to call this with a block - the contents returned from
|
147
|
+
# that block are interpolated into the layout
|
148
|
+
def render_with_layout(view)
|
149
|
+
body = ERB.new(File.read(File.join(VIEW_PATH, 'layouts/newrelic_default.rhtml')))
|
150
|
+
body.result(Proc.new {}.binding)
|
151
|
+
end
|
152
|
+
|
153
|
+
# you have to pass a binding to this (a proc) so that ERB can have
|
154
|
+
# access to helper functions and local variables
|
155
|
+
def render_without_layout(view, binding)
|
156
|
+
ERB.new(File.read(File.join(VIEW_PATH, 'newrelic', view.to_s + '.rhtml')), nil, nil, 'frobnitz').result(binding)
|
157
|
+
end
|
158
|
+
|
159
|
+
def content_tag(tag, contents, opts={})
|
160
|
+
opt_values = opts.map {|k, v| "#{k}=\"#{v}\"" }.join(' ')
|
161
|
+
"<#{tag} #{opt_values}>#{contents}</#{tag}>"
|
162
|
+
end
|
163
|
+
|
164
|
+
def sample
|
165
|
+
@sample || @samples[0]
|
166
|
+
end
|
167
|
+
|
168
|
+
def params
|
169
|
+
@req.params
|
170
|
+
end
|
171
|
+
|
172
|
+
def segment
|
173
|
+
@segment
|
174
|
+
end
|
175
|
+
|
176
|
+
|
177
|
+
# show the selected source file with the highlighted selected line
|
178
|
+
def show_source
|
179
|
+
@filename = params['file']
|
180
|
+
line_number = params['line'].to_i
|
181
|
+
|
182
|
+
if !File.readable?(@filename)
|
183
|
+
@source="<p>Unable to read #{@filename}.</p>"
|
184
|
+
return
|
185
|
+
end
|
186
|
+
begin
|
187
|
+
file = File.new(@filename, 'r')
|
188
|
+
rescue => e
|
189
|
+
@source="<p>Unable to access the source file #{@filename} (#{e.message}).</p>"
|
190
|
+
return
|
191
|
+
end
|
192
|
+
@source = ""
|
193
|
+
|
194
|
+
@source << "<pre>"
|
195
|
+
file.each_line do |line|
|
196
|
+
# place an anchor 6 lines above the selected line (if the line # < 6)
|
197
|
+
if file.lineno == line_number - 6
|
198
|
+
@source << "</pre><pre id = 'selected_line'>"
|
199
|
+
@source << line.rstrip
|
200
|
+
@source << "</pre><pre>"
|
201
|
+
|
202
|
+
# highlight the selected line
|
203
|
+
elsif file.lineno == line_number
|
204
|
+
@source << "</pre><pre class = 'selected_source_line'>"
|
205
|
+
@source << line.rstrip
|
206
|
+
@source << "</pre><pre>"
|
207
|
+
else
|
208
|
+
@source << line
|
209
|
+
end
|
210
|
+
end
|
211
|
+
render(:show_source)
|
212
|
+
end
|
213
|
+
|
214
|
+
def show_sample_data
|
215
|
+
get_sample
|
216
|
+
|
217
|
+
return render(:sample_not_found) unless @sample
|
218
|
+
|
219
|
+
@request_params = @sample.params['request_params'] || {}
|
220
|
+
@custom_params = @sample.params['custom_params'] || {}
|
221
|
+
|
222
|
+
controller_metric = @sample.root_segment.called_segments.first.metric_name
|
223
|
+
|
224
|
+
metric_parser = NewRelic::MetricParser::MetricParser.for_metric_named controller_metric
|
225
|
+
@sample_controller_name = metric_parser.controller_name
|
226
|
+
@sample_action_name = metric_parser.action_name
|
227
|
+
|
228
|
+
@sql_segments = @sample.sql_segments
|
229
|
+
if params['d']
|
230
|
+
@sql_segments.sort!{|a,b| b.duration <=> a.duration }
|
231
|
+
end
|
232
|
+
|
233
|
+
render(:show_sample)
|
234
|
+
end
|
235
|
+
|
236
|
+
def get_samples
|
237
|
+
@samples = NewRelic::Agent.instance.transaction_sampler.samples.select do |sample|
|
238
|
+
sample.params[:path] != nil
|
239
|
+
end
|
240
|
+
|
241
|
+
return @samples = @samples.sort{|x,y| y.omit_segments_with('(Rails/Application Code Loading)|(Database/.*/.+ Columns)').duration <=>
|
242
|
+
x.omit_segments_with('(Rails/Application Code Loading)|(Database/.*/.+ Columns)').duration} if params['h']
|
243
|
+
return @samples = @samples.sort{|x,y| x.params[:uri] <=> y.params[:uri]} if params['u']
|
244
|
+
@samples = @samples.reverse
|
245
|
+
end
|
246
|
+
|
247
|
+
def get_sample
|
248
|
+
get_samples
|
249
|
+
id = params['id']
|
250
|
+
sample_id = id.to_i
|
251
|
+
@samples.each do |s|
|
252
|
+
if s.sample_id == sample_id
|
253
|
+
@sample = stripped_sample(s)
|
254
|
+
return
|
255
|
+
end
|
256
|
+
end
|
257
|
+
end
|
258
|
+
|
259
|
+
def get_segment
|
260
|
+
get_sample
|
261
|
+
return unless @sample
|
262
|
+
|
263
|
+
segment_id = params['segment'].to_i
|
264
|
+
@segment = @sample.find_segment(segment_id)
|
265
|
+
end
|
266
|
+
end
|
267
|
+
end
|
268
|
+
end
|