factorylabs-newrelic_rpm 2.10.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +354 -0
- data/LICENSE +37 -0
- data/README-2.10.2.2 +10 -0
- data/README.md +138 -0
- data/bin/mongrel_rpm +33 -0
- data/bin/newrelic_cmd +4 -0
- data/cert/cacert.pem +34 -0
- data/install.rb +45 -0
- data/lib/new_relic/agent.rb +315 -0
- data/lib/new_relic/agent/agent.rb +647 -0
- data/lib/new_relic/agent/busy_calculator.rb +86 -0
- data/lib/new_relic/agent/chained_call.rb +13 -0
- data/lib/new_relic/agent/collection_helper.rb +66 -0
- data/lib/new_relic/agent/error_collector.rb +117 -0
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +18 -0
- data/lib/new_relic/agent/instrumentation/active_record_instrumentation.rb +91 -0
- data/lib/new_relic/agent/instrumentation/authlogic.rb +8 -0
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +389 -0
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +90 -0
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +12 -0
- data/lib/new_relic/agent/instrumentation/memcache.rb +24 -0
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +26 -0
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +8 -0
- data/lib/new_relic/agent/instrumentation/metric_frame.rb +199 -0
- data/lib/new_relic/agent/instrumentation/net.rb +21 -0
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +20 -0
- data/lib/new_relic/agent/instrumentation/rack.rb +109 -0
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +59 -0
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +27 -0
- data/lib/new_relic/agent/instrumentation/rails/errors.rb +24 -0
- data/lib/new_relic/agent/instrumentation/sinatra.rb +39 -0
- data/lib/new_relic/agent/method_tracer.rb +348 -0
- data/lib/new_relic/agent/patch_const_missing.rb +125 -0
- data/lib/new_relic/agent/sampler.rb +46 -0
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +50 -0
- data/lib/new_relic/agent/samplers/memory_sampler.rb +141 -0
- data/lib/new_relic/agent/samplers/mongrel_sampler.rb +23 -0
- data/lib/new_relic/agent/samplers/object_sampler.rb +24 -0
- data/lib/new_relic/agent/shim_agent.rb +21 -0
- data/lib/new_relic/agent/stats_engine.rb +22 -0
- data/lib/new_relic/agent/stats_engine/metric_stats.rb +116 -0
- data/lib/new_relic/agent/stats_engine/samplers.rb +74 -0
- data/lib/new_relic/agent/stats_engine/transactions.rb +154 -0
- data/lib/new_relic/agent/transaction_sampler.rb +315 -0
- data/lib/new_relic/agent/worker_loop.rb +118 -0
- data/lib/new_relic/commands/deployments.rb +145 -0
- data/lib/new_relic/commands/new_relic_commands.rb +30 -0
- data/lib/new_relic/control.rb +484 -0
- data/lib/new_relic/control/external.rb +13 -0
- data/lib/new_relic/control/merb.rb +24 -0
- data/lib/new_relic/control/rails.rb +151 -0
- data/lib/new_relic/control/ruby.rb +36 -0
- data/lib/new_relic/control/sinatra.rb +14 -0
- data/lib/new_relic/histogram.rb +89 -0
- data/lib/new_relic/local_environment.rb +299 -0
- data/lib/new_relic/merbtasks.rb +6 -0
- data/lib/new_relic/metric_data.rb +42 -0
- data/lib/new_relic/metric_parser.rb +124 -0
- data/lib/new_relic/metric_parser/action_mailer.rb +9 -0
- data/lib/new_relic/metric_parser/active_merchant.rb +26 -0
- data/lib/new_relic/metric_parser/active_record.rb +25 -0
- data/lib/new_relic/metric_parser/controller.rb +54 -0
- data/lib/new_relic/metric_parser/controller_cpu.rb +38 -0
- data/lib/new_relic/metric_parser/errors.rb +6 -0
- data/lib/new_relic/metric_parser/external.rb +50 -0
- data/lib/new_relic/metric_parser/mem_cache.rb +12 -0
- data/lib/new_relic/metric_parser/other_transaction.rb +15 -0
- data/lib/new_relic/metric_parser/view.rb +61 -0
- data/lib/new_relic/metric_parser/web_frontend.rb +14 -0
- data/lib/new_relic/metric_parser/web_service.rb +9 -0
- data/lib/new_relic/metric_spec.rb +67 -0
- data/lib/new_relic/metrics.rb +7 -0
- data/lib/new_relic/noticed_error.rb +23 -0
- data/lib/new_relic/rack/metric_app.rb +56 -0
- data/lib/new_relic/rack/mongrel_rpm.ru +25 -0
- data/lib/new_relic/rack/newrelic.yml +26 -0
- data/lib/new_relic/rack_app.rb +5 -0
- data/lib/new_relic/recipes.rb +82 -0
- data/lib/new_relic/stats.rb +362 -0
- data/lib/new_relic/transaction_analysis.rb +121 -0
- data/lib/new_relic/transaction_sample.rb +671 -0
- data/lib/new_relic/version.rb +54 -0
- data/lib/new_relic_api.rb +276 -0
- data/lib/newrelic_rpm.rb +45 -0
- data/lib/tasks/all.rb +4 -0
- data/lib/tasks/install.rake +7 -0
- data/lib/tasks/tests.rake +15 -0
- data/newrelic.yml +227 -0
- data/newrelic_rpm.gemspec +214 -0
- data/recipes/newrelic.rb +6 -0
- data/test/active_record_fixtures.rb +55 -0
- data/test/config/newrelic.yml +46 -0
- data/test/config/test_control.rb +38 -0
- data/test/new_relic/agent/active_record_instrumentation_test.rb +268 -0
- data/test/new_relic/agent/agent_controller_test.rb +254 -0
- data/test/new_relic/agent/agent_test_controller.rb +78 -0
- data/test/new_relic/agent/busy_calculator_test.rb +79 -0
- data/test/new_relic/agent/classloader_patch_test.rb +56 -0
- data/test/new_relic/agent/collection_helper_test.rb +125 -0
- data/test/new_relic/agent/error_collector_test.rb +173 -0
- data/test/new_relic/agent/method_tracer_test.rb +340 -0
- data/test/new_relic/agent/metric_data_test.rb +56 -0
- data/test/new_relic/agent/mock_ar_connection.rb +40 -0
- data/test/new_relic/agent/mock_scope_listener.rb +23 -0
- data/test/new_relic/agent/net_instrumentation_test.rb +63 -0
- data/test/new_relic/agent/rpm_agent_test.rb +125 -0
- data/test/new_relic/agent/stats_engine/metric_stats_test.rb +79 -0
- data/test/new_relic/agent/stats_engine/samplers_test.rb +88 -0
- data/test/new_relic/agent/stats_engine/stats_engine_test.rb +184 -0
- data/test/new_relic/agent/task_instrumentation_test.rb +177 -0
- data/test/new_relic/agent/testable_agent.rb +13 -0
- data/test/new_relic/agent/transaction_sample_builder_test.rb +195 -0
- data/test/new_relic/agent/transaction_sample_test.rb +186 -0
- data/test/new_relic/agent/transaction_sampler_test.rb +404 -0
- data/test/new_relic/agent/worker_loop_test.rb +103 -0
- data/test/new_relic/control_test.rb +110 -0
- data/test/new_relic/delayed_job_test.rb +108 -0
- data/test/new_relic/deployments_api_test.rb +68 -0
- data/test/new_relic/environment_test.rb +75 -0
- data/test/new_relic/metric_parser_test.rb +172 -0
- data/test/new_relic/metric_spec_test.rb +177 -0
- data/test/new_relic/shim_agent_test.rb +9 -0
- data/test/new_relic/stats_test.rb +291 -0
- data/test/new_relic/version_number_test.rb +76 -0
- data/test/test_helper.rb +53 -0
- data/test/ui/newrelic_controller_test.rb +14 -0
- data/test/ui/newrelic_helper_test.rb +53 -0
- data/ui/controllers/newrelic_controller.rb +220 -0
- data/ui/helpers/google_pie_chart.rb +49 -0
- data/ui/helpers/newrelic_helper.rb +320 -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 +19 -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 +14 -0
- data/ui/views/newrelic/_show_sample_detail.rhtml +24 -0
- data/ui/views/newrelic/_show_sample_sql.rhtml +20 -0
- data/ui/views/newrelic/_show_sample_summary.rhtml +3 -0
- data/ui/views/newrelic/_sql_row.rhtml +11 -0
- data/ui/views/newrelic/_stack_trace.rhtml +30 -0
- data/ui/views/newrelic/_table.rhtml +12 -0
- data/ui/views/newrelic/explain_sql.rhtml +42 -0
- data/ui/views/newrelic/images/arrow-close.png +0 -0
- data/ui/views/newrelic/images/arrow-open.png +0 -0
- data/ui/views/newrelic/images/blue_bar.gif +0 -0
- data/ui/views/newrelic/images/file_icon.png +0 -0
- data/ui/views/newrelic/images/gray_bar.gif +0 -0
- data/ui/views/newrelic/images/new-relic-rpm-desktop.gif +0 -0
- data/ui/views/newrelic/images/new_relic_rpm_desktop.gif +0 -0
- data/ui/views/newrelic/images/textmate.png +0 -0
- data/ui/views/newrelic/index.rhtml +57 -0
- data/ui/views/newrelic/javascript/prototype-scriptaculous.js +7288 -0
- data/ui/views/newrelic/javascript/transaction_sample.js +107 -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/stylesheets/style.css +484 -0
- data/ui/views/newrelic/threads.rhtml +52 -0
- metadata +238 -0
@@ -0,0 +1,107 @@
|
|
1
|
+
|
2
|
+
function show_request_params()
|
3
|
+
{
|
4
|
+
$('params_link').hide();
|
5
|
+
$('request_params').show();
|
6
|
+
}
|
7
|
+
function show_view(page_id){
|
8
|
+
['show_sample_summary', 'show_sample_sql', 'show_sample_detail'].each(Element.hide);
|
9
|
+
$(page_id).show();
|
10
|
+
}
|
11
|
+
function toggle_row_class(theLink)
|
12
|
+
{
|
13
|
+
var image = theLink.firstChild;
|
14
|
+
var visible = toggle_row_class_for_image(image);
|
15
|
+
image.src = visible ? EXPANDED_IMAGE : COLLAPSED_IMAGE;
|
16
|
+
}
|
17
|
+
function toggle_row_class_for_image(image)
|
18
|
+
{
|
19
|
+
var clazz = image.getAttribute('class_for_children');
|
20
|
+
var elements = $('trace_detail_table').select('tr.' + clazz);
|
21
|
+
if (elements.length == 0) return;
|
22
|
+
var visible = !elements[0].visible();
|
23
|
+
show_or_hide_elements(elements, visible);
|
24
|
+
return visible;
|
25
|
+
}
|
26
|
+
function show_or_hide_class_elements(clazz, visible)
|
27
|
+
{
|
28
|
+
var elements = $('trace_detail_table').select('tr.' + clazz);
|
29
|
+
show_or_hide_elements(elements, visible);
|
30
|
+
}
|
31
|
+
function show_or_hide_elements(elements, visible)
|
32
|
+
{
|
33
|
+
elements.each(visible ? Element.show : Element.hide);
|
34
|
+
}
|
35
|
+
|
36
|
+
function mouse_over_row(element)
|
37
|
+
{
|
38
|
+
clazz = element.getAttribute('child_row_class')
|
39
|
+
element.style.cssText = "background-color:lightyellow";
|
40
|
+
return;
|
41
|
+
var style_element = get_cleared_highlight_styles();
|
42
|
+
style_element.appendChild(document.createTextNode('.' + clazz + ' { opacity: .7; }'));
|
43
|
+
}
|
44
|
+
|
45
|
+
var g_style_element;
|
46
|
+
function get_cleared_highlight_styles()
|
47
|
+
{
|
48
|
+
if (!g_style_element)
|
49
|
+
{
|
50
|
+
g_style_element = document.createElement('style');
|
51
|
+
g_style_element.setAttribute('id', 'highlight_styles');
|
52
|
+
document.getElementsByTagName('head')[0].appendChild(g_style_element);
|
53
|
+
}
|
54
|
+
else if (g_style_element.lastChild) {
|
55
|
+
g_style_element.removeChild(g_style_element.lastChild);
|
56
|
+
}
|
57
|
+
return g_style_element;
|
58
|
+
}
|
59
|
+
|
60
|
+
function mouse_out_row(element)
|
61
|
+
{
|
62
|
+
element.style.cssText = "";
|
63
|
+
return;
|
64
|
+
clazz = element.getAttribute('child_row_class')
|
65
|
+
get_cleared_highlight_styles();
|
66
|
+
}
|
67
|
+
function get_parent_segments()
|
68
|
+
{
|
69
|
+
return $('trace_detail_table').select('img.parent_segment_image');
|
70
|
+
}
|
71
|
+
|
72
|
+
function expand_all_segments()
|
73
|
+
{
|
74
|
+
var parent_segments = get_parent_segments();
|
75
|
+
for (var i = 0; i < parent_segments.length; i++)
|
76
|
+
{
|
77
|
+
parent_segments[i].src = EXPANDED_IMAGE;
|
78
|
+
show_or_hide_class_elements(parent_segments[i].getAttribute('class_for_children'), true);
|
79
|
+
}
|
80
|
+
}
|
81
|
+
function collapse_all_segments()
|
82
|
+
{
|
83
|
+
var parent_segments = get_parent_segments();
|
84
|
+
for (var i = 0; i < parent_segments.length; i++)
|
85
|
+
{
|
86
|
+
parent_segments[i].src = COLLAPSED_IMAGE;
|
87
|
+
show_or_hide_class_elements(parent_segments[i].getAttribute('class_for_children'), false);
|
88
|
+
}
|
89
|
+
}
|
90
|
+
function jump_to_metric(metric_name)
|
91
|
+
{
|
92
|
+
var elements = $('trace_detail_table').select('tr.' + metric_name);
|
93
|
+
for (var i = 0; i < elements.length; i++)
|
94
|
+
{
|
95
|
+
new Effect.Highlight(elements[i]); //, {endcolor : 'aliceblue'});
|
96
|
+
//elements[i].setStyle({backgroundColor: 'lightyellow'});
|
97
|
+
}
|
98
|
+
expand_all_segments();
|
99
|
+
}
|
100
|
+
function sql_mouse_over(id) {
|
101
|
+
var sql_div = $('sql_statement' + id);
|
102
|
+
if (sql_div)
|
103
|
+
Tip(sql_div.innerHTML);
|
104
|
+
}
|
105
|
+
function sql_mouse_out(id) {
|
106
|
+
UnTip();
|
107
|
+
}
|
@@ -0,0 +1,80 @@
|
|
1
|
+
<script type="text/javascript" src="<%= url_for(:controller => :newrelic, :action => :file, :file => 'transaction_sample.js') %>"></script>
|
2
|
+
<div id='summary_table'>
|
3
|
+
<table class="light_background">
|
4
|
+
<tr>
|
5
|
+
<th>URL:</th>
|
6
|
+
<td><%= @sample.params[:uri]%></td>
|
7
|
+
</tr>
|
8
|
+
<tr>
|
9
|
+
<th>Controller:</th>
|
10
|
+
<td><%= @sample_controller_name%></td>
|
11
|
+
</tr>
|
12
|
+
<tr>
|
13
|
+
<th>Action:</th>
|
14
|
+
<td><%= @sample_action_name%></td>
|
15
|
+
</tr>
|
16
|
+
<tr>
|
17
|
+
<th>Start Time:</th>
|
18
|
+
<td><%= format_timestamp(@sample.start_time) %></td>
|
19
|
+
</tr>
|
20
|
+
<tr>
|
21
|
+
<th>Duration:</th>
|
22
|
+
<td><%= colorize(@sample.duration, 1, 2) %> ms</td>
|
23
|
+
</tr>
|
24
|
+
<tr>
|
25
|
+
<th>CPU Burn:</th>
|
26
|
+
<td><%= to_ms(@sample.params[:cpu_time]) if @sample.params[:cpu_time] %> ms</td>
|
27
|
+
</tr>
|
28
|
+
|
29
|
+
<% unless @custom_params.empty? %>
|
30
|
+
<tr>
|
31
|
+
<th valign="top">Custom Params:</th>
|
32
|
+
<td>
|
33
|
+
<small>
|
34
|
+
<% @custom_params.each do |k,v| %>
|
35
|
+
<b><%= h k %>: </b><%=h v%><br/>
|
36
|
+
<% end %>
|
37
|
+
</small>
|
38
|
+
</td>
|
39
|
+
</tr>
|
40
|
+
<% end %>
|
41
|
+
|
42
|
+
<% unless @request_params.empty? %>
|
43
|
+
<tr>
|
44
|
+
<th valign="top">HTTP Params:</th>
|
45
|
+
<td>
|
46
|
+
<%= link_to_function("#{@request_params.length}...", "show_request_params()", :id => "params_link") %>
|
47
|
+
|
48
|
+
<div id='request_params' style="display: none;">
|
49
|
+
<small>
|
50
|
+
<% @request_params.each do |k,v| %>
|
51
|
+
<b><%= h k %>: </b><%=h v%><br/>
|
52
|
+
<% end %>
|
53
|
+
</small>
|
54
|
+
</div>
|
55
|
+
</td>
|
56
|
+
</tr>
|
57
|
+
<% end %>
|
58
|
+
|
59
|
+
</table>
|
60
|
+
</div>
|
61
|
+
|
62
|
+
<br/>
|
63
|
+
<div id="view_sample">
|
64
|
+
<% if @sample.profile %>
|
65
|
+
<%= profile_table(@sample.profile) %>
|
66
|
+
<% else %>
|
67
|
+
<div align=center width="100%">
|
68
|
+
<%= show_view_link 'Summary', 'show_sample_summary' %>
|
69
|
+
<%= show_view_link 'Details', 'show_sample_detail' %>
|
70
|
+
<%= show_view_link 'SQL', 'show_sample_sql' %>
|
71
|
+
</div>
|
72
|
+
<br/>
|
73
|
+
<%= %w[show_sample_summary show_sample_sql show_sample_detail].collect do |p|
|
74
|
+
options = {:align => 'center', :id => p}
|
75
|
+
options[:style] = 'display: none' unless p == params[:action]
|
76
|
+
content_tag('div', render(:partial => p), options)
|
77
|
+
end.join(' ')%>
|
78
|
+
<% end -%>
|
79
|
+
|
80
|
+
</div>
|
@@ -0,0 +1,484 @@
|
|
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
|
+
.application_stack_trace, .full_stack_trace
|
314
|
+
{
|
315
|
+
font-family: monospace;
|
316
|
+
margin-top: 10px;
|
317
|
+
margin-left: 20px;
|
318
|
+
max-width: 950px;
|
319
|
+
overflow: auto;
|
320
|
+
}
|
321
|
+
|
322
|
+
#summary_table
|
323
|
+
{
|
324
|
+
}
|
325
|
+
|
326
|
+
.sql_statement
|
327
|
+
{
|
328
|
+
width: 800px;
|
329
|
+
overflow: auto;
|
330
|
+
}
|
331
|
+
|
332
|
+
.plan
|
333
|
+
{
|
334
|
+
font-family: monospace;
|
335
|
+
font-size: 0.8em;
|
336
|
+
white-space: pre;
|
337
|
+
}
|
338
|
+
#page_nav
|
339
|
+
{
|
340
|
+
height: 42px;
|
341
|
+
}
|
342
|
+
|
343
|
+
#page_nav tr
|
344
|
+
{
|
345
|
+
vertical-align: middle;
|
346
|
+
}
|
347
|
+
|
348
|
+
#page_nav td
|
349
|
+
{
|
350
|
+
padding-left: 20px;
|
351
|
+
color:#333;
|
352
|
+
white-space: nowrap;
|
353
|
+
}
|
354
|
+
|
355
|
+
|
356
|
+
table
|
357
|
+
{
|
358
|
+
font-size: 12px;
|
359
|
+
border-collapse: collapse;
|
360
|
+
border-spacing: 0px;
|
361
|
+
padding: 5px 5px 5px 5px;
|
362
|
+
}
|
363
|
+
|
364
|
+
|
365
|
+
thead
|
366
|
+
{
|
367
|
+
text-align:left;
|
368
|
+
font-weight: normal;
|
369
|
+
line-height:100%;
|
370
|
+
background-color: #6688aa;
|
371
|
+
color: white;
|
372
|
+
padding: 5px 5px 5px 5px;
|
373
|
+
}
|
374
|
+
|
375
|
+
thead a, thead a:hover
|
376
|
+
{
|
377
|
+
color: white;
|
378
|
+
}
|
379
|
+
|
380
|
+
tfoot
|
381
|
+
{
|
382
|
+
background-color: #6688aa;
|
383
|
+
color: #333;
|
384
|
+
}
|
385
|
+
|
386
|
+
tfoot td
|
387
|
+
{
|
388
|
+
font-size: smaller;
|
389
|
+
text-align:right;
|
390
|
+
}
|
391
|
+
|
392
|
+
td.title_bar_right
|
393
|
+
{
|
394
|
+
text-align:right;
|
395
|
+
font-size: 11px;
|
396
|
+
}
|
397
|
+
|
398
|
+
|
399
|
+
|
400
|
+
td.top_nav
|
401
|
+
{
|
402
|
+
text-align: right;
|
403
|
+
vertical-align: bottom;
|
404
|
+
padding: 0px 0px 0px 0px;
|
405
|
+
}
|
406
|
+
|
407
|
+
td.time_nav
|
408
|
+
{
|
409
|
+
text-align: right;
|
410
|
+
}
|
411
|
+
|
412
|
+
td
|
413
|
+
{
|
414
|
+
text-align: left;
|
415
|
+
padding: 5px 5px 5px 5px;
|
416
|
+
}
|
417
|
+
|
418
|
+
ul.tab_list {
|
419
|
+
list-style-type: none;
|
420
|
+
padding: 0;
|
421
|
+
}
|
422
|
+
|
423
|
+
ul.tab_list li {
|
424
|
+
padding-left: 1em;
|
425
|
+
}
|
426
|
+
.selected {
|
427
|
+
background: url(/newrelic/image?file=arrow-close.png) no-repeat;
|
428
|
+
}
|
429
|
+
|
430
|
+
.expand {
|
431
|
+
background-image:url(/newrelic/image?file=arrow-open.png);
|
432
|
+
width:16px;
|
433
|
+
background-position: top left;
|
434
|
+
padding-left: 20px;
|
435
|
+
background-repeat:no-repeat;
|
436
|
+
text-decoration: none;
|
437
|
+
}
|
438
|
+
|
439
|
+
.collapse {
|
440
|
+
background-image:url(/newrelic/image?file=arrow-close.png);
|
441
|
+
text-decoration: none;
|
442
|
+
width:16px;
|
443
|
+
padding-left: 20px;
|
444
|
+
background-position: top left;
|
445
|
+
background-repeat:no-repeat;
|
446
|
+
}
|
447
|
+
|
448
|
+
|
449
|
+
.clock {
|
450
|
+
margin-bottom: -5px;
|
451
|
+
}
|
452
|
+
|
453
|
+
.selected_source_line {
|
454
|
+
background: #bdf
|
455
|
+
}
|
456
|
+
|
457
|
+
.scrolling_container {
|
458
|
+
overflow: auto;
|
459
|
+
padding-left: 5px;
|
460
|
+
max-height: 150px;
|
461
|
+
border: 1px solid #898989;
|
462
|
+
}
|
463
|
+
|
464
|
+
.odd_row {
|
465
|
+
background-color: #eeeeee;
|
466
|
+
}
|
467
|
+
|
468
|
+
.even_row {
|
469
|
+
background-color: #ffffff;
|
470
|
+
}
|
471
|
+
|
472
|
+
.leaf_segment
|
473
|
+
{
|
474
|
+
padding-left: 20px;
|
475
|
+
}
|
476
|
+
|
477
|
+
.help
|
478
|
+
{
|
479
|
+
padding: 10px 5px 5px 5px;
|
480
|
+
}
|
481
|
+
|
482
|
+
.help p
|
483
|
+
{
|
484
|
+
}
|