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,120 @@
|
|
1
|
+
function show_request_params()
|
2
|
+
{
|
3
|
+
$('#params_link').hide();
|
4
|
+
$('#request_params').show();
|
5
|
+
}
|
6
|
+
|
7
|
+
function show_view(page_id){
|
8
|
+
$('#show_sample_summary, #show_sample_sql, #show_sample_detail').hide();
|
9
|
+
$('#' + page_id).show();
|
10
|
+
}
|
11
|
+
|
12
|
+
function toggle_row_class(theLink)
|
13
|
+
{
|
14
|
+
var image = $('img', theLink).first();
|
15
|
+
var visible = toggle_row_class_for_image(image);
|
16
|
+
image.attr('src', (visible ? EXPANDED_IMAGE : COLLAPSED_IMAGE));
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggle_row_class_for_image(image)
|
20
|
+
{
|
21
|
+
var clazz = image.attr('class_for_children');
|
22
|
+
var elements = $('#trace_detail_table').find('tr.' + clazz);
|
23
|
+
if (elements.size() == 0) return;
|
24
|
+
var visible = !elements.first().is(':visible');
|
25
|
+
show_or_hide_elements(elements, visible);
|
26
|
+
return visible;
|
27
|
+
}
|
28
|
+
|
29
|
+
function stack_trace_ids(unique_id) {
|
30
|
+
return {'show': 'show_rails_link' + unique_id, 'hide': 'hide_rails_link' + unique_id,
|
31
|
+
'app': 'application_stack_trace' + unique_id, 'full': 'full_stack_trace' + unique_id};
|
32
|
+
}
|
33
|
+
|
34
|
+
function show_rails(unique_id) {
|
35
|
+
traces = stack_trace_ids(unique_id);
|
36
|
+
$('#' + traces.full).show();
|
37
|
+
$('#' + traces.app).hide();
|
38
|
+
$('#' + traces.show).hide();
|
39
|
+
$('#' + traces.hide).show();
|
40
|
+
}
|
41
|
+
|
42
|
+
function hide_rails(unique_id) {
|
43
|
+
traces = stack_trace_ids(unique_id);
|
44
|
+
$('#' + traces.full).hide();
|
45
|
+
$('#' + traces.app).show();
|
46
|
+
$('#' + traces.show).show();
|
47
|
+
$('#' + traces.hide).hide();
|
48
|
+
}
|
49
|
+
|
50
|
+
function show_or_hide_class_elements(clazz, visible)
|
51
|
+
{
|
52
|
+
var elements = $('#trace_detail_table').find('tr.' + clazz);
|
53
|
+
show_or_hide_elements(elements, visible);
|
54
|
+
}
|
55
|
+
|
56
|
+
function show_or_hide_elements(elements, visible)
|
57
|
+
{
|
58
|
+
if(visible) {
|
59
|
+
elements.show();
|
60
|
+
} else {
|
61
|
+
elements.hide();
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
function mouse_over_row(element)
|
66
|
+
{
|
67
|
+
clazz = $(element).attr('child_row_class')
|
68
|
+
$(element).css('cssText', 'background-color: lightyellow');
|
69
|
+
}
|
70
|
+
|
71
|
+
var g_style_element;
|
72
|
+
function get_cleared_highlight_styles()
|
73
|
+
{
|
74
|
+
if (!g_style_element)
|
75
|
+
{
|
76
|
+
$('head', document).first().append('<style id="highlight_styles" />');
|
77
|
+
g_style_element = $('#highlight_styles');
|
78
|
+
}
|
79
|
+
else {
|
80
|
+
g_style_element.empty();
|
81
|
+
}
|
82
|
+
return g_style_element;
|
83
|
+
}
|
84
|
+
|
85
|
+
function mouse_out_row(element)
|
86
|
+
{
|
87
|
+
$(element).css('cssText', '')
|
88
|
+
}
|
89
|
+
|
90
|
+
function get_parent_segments()
|
91
|
+
{
|
92
|
+
return $('#trace_detail_table').find('img.parent_segment_image');
|
93
|
+
}
|
94
|
+
|
95
|
+
function expand_or_contract_segments(expand_or_contract) {
|
96
|
+
var parent_segments = get_parent_segments();
|
97
|
+
parent_segments.attr('src', (expand_or_contract ? EXPANDED_IMAGE : COLLAPSED_IMAGE))
|
98
|
+
parent_segments.each(function (index, element) {
|
99
|
+
show_or_hide_class_elements($(element).attr('class_for_children'), expand_or_contract);
|
100
|
+
});
|
101
|
+
}
|
102
|
+
|
103
|
+
function expand_all_segments()
|
104
|
+
{
|
105
|
+
expand_or_contract_segments(true);
|
106
|
+
}
|
107
|
+
|
108
|
+
function collapse_all_segments()
|
109
|
+
{
|
110
|
+
expand_or_contract_segments(false);
|
111
|
+
}
|
112
|
+
|
113
|
+
function jump_to_metric(metric_name)
|
114
|
+
{
|
115
|
+
highlight($('tr.' + metric_name, '#trace_detail_table'))
|
116
|
+
expand_all_segments();
|
117
|
+
}
|
118
|
+
function highlight(elements) {
|
119
|
+
elements.css('background-color', 'lightyellow');
|
120
|
+
}
|
@@ -0,0 +1,490 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
/*
|
4
|
+
Originally based on the theme credited below.
|
5
|
+
Tweaks by Lew Cirne and Victoria Wesson for New Relic
|
6
|
+
|
7
|
+
Theme Name: Simpla
|
8
|
+
Theme URI: http://ifelse.co.uk/simpla/
|
9
|
+
Description: A clean, minimalist theme
|
10
|
+
Version: 1.01
|
11
|
+
Author: Phu Ly
|
12
|
+
Author URI: http://ifelse.co.uk/
|
13
|
+
*/
|
14
|
+
|
15
|
+
/*****************************
|
16
|
+
* Profile
|
17
|
+
*****************************/
|
18
|
+
|
19
|
+
table.profile {
|
20
|
+
border-collapse: collapse;
|
21
|
+
border: 1px solid #CCC;
|
22
|
+
font-size: 9pt;
|
23
|
+
line-height: normal;
|
24
|
+
padding: 0.3em;
|
25
|
+
width: 100%;
|
26
|
+
}
|
27
|
+
|
28
|
+
table.profile th {
|
29
|
+
text-align: left;
|
30
|
+
border-top: 1px solid #aaaaaa;
|
31
|
+
border-bottom: 1px solid #aaaaaa;
|
32
|
+
background: #dddddd;
|
33
|
+
border-left: 1px solid silver;
|
34
|
+
}
|
35
|
+
|
36
|
+
table.profile tr.break td {
|
37
|
+
border: 0;
|
38
|
+
border-top: 1px solid #aaaaaa;
|
39
|
+
border-bottom: 1px solid #aaaaaa;
|
40
|
+
padding: 4px;
|
41
|
+
margin: 0;
|
42
|
+
}
|
43
|
+
|
44
|
+
table.profile tr.method td {
|
45
|
+
font-weight: bold;
|
46
|
+
}
|
47
|
+
|
48
|
+
|
49
|
+
table.profile td:first-child {
|
50
|
+
width: 190px;
|
51
|
+
}
|
52
|
+
|
53
|
+
table.profile td
|
54
|
+
{
|
55
|
+
border-left: 1px solid #CCC;
|
56
|
+
text-align: left;
|
57
|
+
vertical-align: top;
|
58
|
+
}
|
59
|
+
|
60
|
+
table.profile .method_name {
|
61
|
+
text-align: left;
|
62
|
+
}
|
63
|
+
|
64
|
+
|
65
|
+
|
66
|
+
/*************************************
|
67
|
+
+Containers
|
68
|
+
*************************************/
|
69
|
+
body{
|
70
|
+
color:#333;
|
71
|
+
min-width: 1004px;
|
72
|
+
font-family: "Lucida Grande","Lucida Sans Unicode", Verdana, Tahoma, Arial, Helvetica, sans-serif;
|
73
|
+
font-size:12px;
|
74
|
+
margin:0;
|
75
|
+
padding:0;
|
76
|
+
text-align:center;
|
77
|
+
}
|
78
|
+
#wrap{
|
79
|
+
margin:0 auto;
|
80
|
+
text-align:left;
|
81
|
+
width:76em;
|
82
|
+
}
|
83
|
+
#content{
|
84
|
+
width: 984px;
|
85
|
+
margin: 10px auto;
|
86
|
+
text-align:left;
|
87
|
+
}
|
88
|
+
#header{
|
89
|
+
padding: 0px;
|
90
|
+
}
|
91
|
+
#footer
|
92
|
+
{
|
93
|
+
color:#888;
|
94
|
+
clear:both;
|
95
|
+
font-size:smaller;
|
96
|
+
padding-top: 15px;
|
97
|
+
text-align: left;
|
98
|
+
}
|
99
|
+
#footer p
|
100
|
+
{
|
101
|
+
margin-left: 15px;
|
102
|
+
margin-top: 10px;
|
103
|
+
}
|
104
|
+
|
105
|
+
/*************************************
|
106
|
+
Navigation Bar (horizontal at top)
|
107
|
+
*************************************/
|
108
|
+
#navbar{
|
109
|
+
color:#00A;
|
110
|
+
font-size:1.2em;
|
111
|
+
}
|
112
|
+
|
113
|
+
/*************************************
|
114
|
+
+Hn and p
|
115
|
+
*************************************/
|
116
|
+
h1, h2, h3, p
|
117
|
+
{
|
118
|
+
color:#333333;
|
119
|
+
}
|
120
|
+
|
121
|
+
h1, h2, h3
|
122
|
+
{
|
123
|
+
margin: 10px 0px 10px 0px;
|
124
|
+
font-weight: normal;
|
125
|
+
letter-spacing: 0px;
|
126
|
+
}
|
127
|
+
|
128
|
+
p
|
129
|
+
{
|
130
|
+
margin: 7px 0px 7px 0px;
|
131
|
+
}
|
132
|
+
|
133
|
+
|
134
|
+
#header h1{
|
135
|
+
font-size:1.2em;
|
136
|
+
font-weight:normal;
|
137
|
+
}
|
138
|
+
#header h1 a{
|
139
|
+
color:#E87830;
|
140
|
+
}
|
141
|
+
#header h1 a:hover{
|
142
|
+
color:#CC0000;
|
143
|
+
}
|
144
|
+
#header p{
|
145
|
+
font-size:1.1em;
|
146
|
+
margin:0;
|
147
|
+
margin-top:-0.1em;
|
148
|
+
margin-bottom:0.3em;
|
149
|
+
}
|
150
|
+
#header table
|
151
|
+
{
|
152
|
+
padding: 0px 0px 0px 0px;
|
153
|
+
}
|
154
|
+
|
155
|
+
/*************************************
|
156
|
+
+Misc
|
157
|
+
*************************************/
|
158
|
+
a:link, a:visited, a:active {
|
159
|
+
color:#116677;
|
160
|
+
text-decoration:none;
|
161
|
+
}
|
162
|
+
a:hover{
|
163
|
+
color:#0055aa;
|
164
|
+
text-decoration:underline;
|
165
|
+
}
|
166
|
+
img{
|
167
|
+
border-style:none;
|
168
|
+
}
|
169
|
+
var{
|
170
|
+
font-family: Courier;
|
171
|
+
font-style: normal;
|
172
|
+
font-size: 1.1em;
|
173
|
+
}
|
174
|
+
|
175
|
+
/* regular tables use thead instead of th. th is only used by name/value table layouts */
|
176
|
+
th
|
177
|
+
{
|
178
|
+
padding: 5px 5px 5px 5px;
|
179
|
+
text-align: right;
|
180
|
+
}
|
181
|
+
th.left
|
182
|
+
{
|
183
|
+
text-align: left;
|
184
|
+
}
|
185
|
+
th.title
|
186
|
+
{
|
187
|
+
font-size: 1.2em;
|
188
|
+
text-align: left;
|
189
|
+
padding: 6px 5px 8px 5px;
|
190
|
+
color: #EEEEEE;
|
191
|
+
}
|
192
|
+
td.locals
|
193
|
+
{
|
194
|
+
font-size: 0.9em;
|
195
|
+
text-align: left;
|
196
|
+
font-family: monospace;
|
197
|
+
}
|
198
|
+
|
199
|
+
/*************************************
|
200
|
+
+New Relic Specific - need to preserve
|
201
|
+
*************************************/
|
202
|
+
.light_background
|
203
|
+
{
|
204
|
+
background-color: #FAFEFE;
|
205
|
+
}
|
206
|
+
div.flash, #errorExplanation
|
207
|
+
{
|
208
|
+
margin: 8px 10px 8px 10px;
|
209
|
+
border: 2px;
|
210
|
+
border-style: solid;
|
211
|
+
}
|
212
|
+
|
213
|
+
div.flash
|
214
|
+
{
|
215
|
+
padding: 10px 5px 10px 20px;
|
216
|
+
}
|
217
|
+
|
218
|
+
#errorExplanation
|
219
|
+
{
|
220
|
+
padding: 5px 5px 5px 20px;
|
221
|
+
color: #bb0011;
|
222
|
+
}
|
223
|
+
|
224
|
+
div.flash.error
|
225
|
+
{
|
226
|
+
border-color: #bb0011;
|
227
|
+
color: #bb0011;
|
228
|
+
}
|
229
|
+
|
230
|
+
div.flash.notice
|
231
|
+
{
|
232
|
+
border-color: #eeaa33;
|
233
|
+
color: #eeaa33;
|
234
|
+
}
|
235
|
+
|
236
|
+
#metricsummary{
|
237
|
+
background:#ddd;
|
238
|
+
border-top:1px solid #777;
|
239
|
+
clear:both;
|
240
|
+
font-size:0.9em;
|
241
|
+
padding:0.5em;
|
242
|
+
}
|
243
|
+
|
244
|
+
.application_title
|
245
|
+
{
|
246
|
+
font-size: larger;
|
247
|
+
}
|
248
|
+
|
249
|
+
#navlist
|
250
|
+
{
|
251
|
+
font-size: smaller;
|
252
|
+
margin: 0px;
|
253
|
+
padding: 0px 10px 15px 0px;
|
254
|
+
white-space: nowrap;
|
255
|
+
color: #333333;
|
256
|
+
}
|
257
|
+
|
258
|
+
#navlist li
|
259
|
+
{
|
260
|
+
display: inline;
|
261
|
+
list-style-type: none;
|
262
|
+
padding: 0px 0px 0px 20px;
|
263
|
+
font-size: 12px;
|
264
|
+
color: #333333;
|
265
|
+
}
|
266
|
+
|
267
|
+
#navlist li a
|
268
|
+
{
|
269
|
+
color: #333333;
|
270
|
+
}
|
271
|
+
|
272
|
+
#secondary_nav
|
273
|
+
{
|
274
|
+
margin: 0px;
|
275
|
+
padding: 5px 5px 5px 5px;
|
276
|
+
}
|
277
|
+
|
278
|
+
#secondary_nav li
|
279
|
+
{
|
280
|
+
display: inline;
|
281
|
+
list-style-type: none;
|
282
|
+
padding: 0px 20px 0px 0px;
|
283
|
+
font-size: .9em;
|
284
|
+
}
|
285
|
+
|
286
|
+
#pie_chart_image
|
287
|
+
{
|
288
|
+
margin: 15px 0px 15px 0px;
|
289
|
+
}
|
290
|
+
|
291
|
+
#reset_transactions, #reset_transactions a
|
292
|
+
{
|
293
|
+
color:red;
|
294
|
+
text-align:right;
|
295
|
+
}
|
296
|
+
|
297
|
+
|
298
|
+
.transaction_list_table
|
299
|
+
{
|
300
|
+
width: 600px;
|
301
|
+
margin-right: 15px;
|
302
|
+
}
|
303
|
+
.transaction_list_table thead a:visited
|
304
|
+
{
|
305
|
+
color: white;
|
306
|
+
}
|
307
|
+
.transaction_list_table thead a
|
308
|
+
{
|
309
|
+
color: white;
|
310
|
+
text-decoration: underline;
|
311
|
+
}
|
312
|
+
|
313
|
+
.segment_list_table thead a
|
314
|
+
{
|
315
|
+
color: white;
|
316
|
+
text-decoration: underline;
|
317
|
+
}
|
318
|
+
|
319
|
+
.application_stack_trace, .full_stack_trace
|
320
|
+
{
|
321
|
+
font-family: monospace;
|
322
|
+
margin-top: 10px;
|
323
|
+
margin-left: 20px;
|
324
|
+
max-width: 950px;
|
325
|
+
overflow: auto;
|
326
|
+
}
|
327
|
+
|
328
|
+
#summary_table
|
329
|
+
{
|
330
|
+
}
|
331
|
+
|
332
|
+
.sql_statement
|
333
|
+
{
|
334
|
+
width: 800px;
|
335
|
+
overflow: auto;
|
336
|
+
}
|
337
|
+
|
338
|
+
.plan
|
339
|
+
{
|
340
|
+
font-family: monospace;
|
341
|
+
font-size: 0.8em;
|
342
|
+
white-space: pre;
|
343
|
+
}
|
344
|
+
#page_nav
|
345
|
+
{
|
346
|
+
height: 42px;
|
347
|
+
}
|
348
|
+
|
349
|
+
#page_nav tr
|
350
|
+
{
|
351
|
+
vertical-align: middle;
|
352
|
+
}
|
353
|
+
|
354
|
+
#page_nav td
|
355
|
+
{
|
356
|
+
padding-left: 20px;
|
357
|
+
color:#333;
|
358
|
+
white-space: nowrap;
|
359
|
+
}
|
360
|
+
|
361
|
+
|
362
|
+
table
|
363
|
+
{
|
364
|
+
font-size: 12px;
|
365
|
+
border-collapse: collapse;
|
366
|
+
border-spacing: 0px;
|
367
|
+
padding: 5px 5px 5px 5px;
|
368
|
+
}
|
369
|
+
|
370
|
+
|
371
|
+
thead
|
372
|
+
{
|
373
|
+
text-align:left;
|
374
|
+
font-weight: normal;
|
375
|
+
line-height:100%;
|
376
|
+
background-color: #6688aa;
|
377
|
+
color: white;
|
378
|
+
padding: 5px 5px 5px 5px;
|
379
|
+
}
|
380
|
+
|
381
|
+
thead a, thead a:hover
|
382
|
+
{
|
383
|
+
color: white;
|
384
|
+
}
|
385
|
+
|
386
|
+
tfoot
|
387
|
+
{
|
388
|
+
background-color: #6688aa;
|
389
|
+
color: #333;
|
390
|
+
}
|
391
|
+
|
392
|
+
tfoot td
|
393
|
+
{
|
394
|
+
font-size: smaller;
|
395
|
+
text-align:right;
|
396
|
+
}
|
397
|
+
|
398
|
+
td.title_bar_right
|
399
|
+
{
|
400
|
+
text-align:right;
|
401
|
+
font-size: 11px;
|
402
|
+
}
|
403
|
+
|
404
|
+
|
405
|
+
|
406
|
+
td.top_nav
|
407
|
+
{
|
408
|
+
text-align: right;
|
409
|
+
vertical-align: bottom;
|
410
|
+
padding: 0px 0px 0px 0px;
|
411
|
+
}
|
412
|
+
|
413
|
+
td.time_nav
|
414
|
+
{
|
415
|
+
text-align: right;
|
416
|
+
}
|
417
|
+
|
418
|
+
td
|
419
|
+
{
|
420
|
+
text-align: left;
|
421
|
+
padding: 5px 5px 5px 5px;
|
422
|
+
}
|
423
|
+
|
424
|
+
ul.tab_list {
|
425
|
+
list-style-type: none;
|
426
|
+
padding: 0;
|
427
|
+
}
|
428
|
+
|
429
|
+
ul.tab_list li {
|
430
|
+
padding-left: 1em;
|
431
|
+
}
|
432
|
+
.selected {
|
433
|
+
background: url(/newrelic/image?file=arrow-close.png) no-repeat;
|
434
|
+
}
|
435
|
+
|
436
|
+
.expand {
|
437
|
+
background-image:url(/newrelic/image?file=arrow-open.png);
|
438
|
+
width:16px;
|
439
|
+
background-position: top left;
|
440
|
+
padding-left: 20px;
|
441
|
+
background-repeat:no-repeat;
|
442
|
+
text-decoration: none;
|
443
|
+
}
|
444
|
+
|
445
|
+
.collapse {
|
446
|
+
background-image:url(/newrelic/image?file=arrow-close.png);
|
447
|
+
text-decoration: none;
|
448
|
+
width:16px;
|
449
|
+
padding-left: 20px;
|
450
|
+
background-position: top left;
|
451
|
+
background-repeat:no-repeat;
|
452
|
+
}
|
453
|
+
|
454
|
+
|
455
|
+
.clock {
|
456
|
+
margin-bottom: -5px;
|
457
|
+
}
|
458
|
+
|
459
|
+
.selected_source_line {
|
460
|
+
background: #bdf
|
461
|
+
}
|
462
|
+
|
463
|
+
.scrolling_container {
|
464
|
+
overflow: auto;
|
465
|
+
padding-left: 5px;
|
466
|
+
max-height: 150px;
|
467
|
+
border: 1px solid #898989;
|
468
|
+
}
|
469
|
+
|
470
|
+
.odd_row {
|
471
|
+
background-color: #eeeeee;
|
472
|
+
}
|
473
|
+
|
474
|
+
.even_row {
|
475
|
+
background-color: #ffffff;
|
476
|
+
}
|
477
|
+
|
478
|
+
.leaf_segment
|
479
|
+
{
|
480
|
+
padding-left: 20px;
|
481
|
+
}
|
482
|
+
|
483
|
+
.help
|
484
|
+
{
|
485
|
+
padding: 10px 5px 5px 5px;
|
486
|
+
}
|
487
|
+
|
488
|
+
.help p
|
489
|
+
{
|
490
|
+
}
|