rubyrun 0.9.0-mswin32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +13 -0
- data/README +77 -0
- data/Rakefile +241 -0
- data/bin/confgure +2 -0
- data/docs/rubyrun-0.9.0.htm +6344 -0
- data/docs/rubyrun-0.9.0.pdf +0 -0
- data/docs/rubyrun-0.9.0_files/colorschememapping.xml +2 -0
- data/docs/rubyrun-0.9.0_files/filelist.xml +29 -0
- data/docs/rubyrun-0.9.0_files/header.htm +141 -0
- data/docs/rubyrun-0.9.0_files/image001.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image002.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image003.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image004.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image005.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image006.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image007.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image008.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image009.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image010.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image011.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image012.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image013.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image014.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image015.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image016.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image017.png +0 -0
- data/docs/rubyrun-0.9.0_files/image018.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image019.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image020.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image021.jpg +0 -0
- data/docs/rubyrun-0.9.0_files/image022.png +0 -0
- data/docs/rubyrun-0.9.0_files/themedata.thmx +0 -0
- data/etc/rubyrun_opts.yml +132 -0
- data/ext/extconf.rb +4 -0
- data/ext/rubyrunnative__.bundle +0 -0
- data/ext/rubyrunnative__.c +154 -0
- data/ext/rubyrunnative__.def +2 -0
- data/ext/rubyrunnative__.h +36 -0
- data/ext/rubyrunnative__.so +0 -0
- data/ext/rubyrunnative__linux.so +0 -0
- data/html/classes/Module.html +174 -0
- data/html/classes/Object.html +151 -0
- data/html/classes/RubyRunBufferMgr__.html +182 -0
- data/html/classes/RubyRunCommander__.html +578 -0
- data/html/classes/RubyRunDad__.html +144 -0
- data/html/classes/RubyRunGlobals.html +248 -0
- data/html/classes/RubyRunHTMLWriter/RubyRunHTMLDevice.html +157 -0
- data/html/classes/RubyRunHTMLWriter.html +186 -0
- data/html/classes/RubyRunHTML__.html +198 -0
- data/html/classes/RubyRunInitializer__.html +821 -0
- data/html/classes/RubyRunInstrumentor__.html +576 -0
- data/html/classes/RubyRunMonitor__.html +298 -0
- data/html/classes/RubyRunRSS.html +302 -0
- data/html/classes/RubyRunReport__.html +294 -0
- data/html/classes/RubyRunTracer__.html +253 -0
- data/html/classes/RubyRunUtils__.html +376 -0
- data/html/created.rid +1 -0
- data/html/files/LICENSE.html +119 -0
- data/html/files/README.html +197 -0
- data/html/files/lib/rubyrun/rubyrun_buffer_mgr___rb.html +101 -0
- data/html/files/lib/rubyrun/rubyrun_commander___rb.html +101 -0
- data/html/files/lib/rubyrun/rubyrun_dad___rb.html +101 -0
- data/html/files/lib/rubyrun/rubyrun_globals_rb.html +101 -0
- data/html/files/lib/rubyrun/rubyrun_html___rb.html +101 -0
- data/html/files/lib/rubyrun/rubyrun_html_writer___rb.html +108 -0
- data/html/files/lib/rubyrun/rubyrun_initializer___rb.html +112 -0
- data/html/files/lib/rubyrun/rubyrun_instrumentor___rb.html +116 -0
- data/html/files/lib/rubyrun/rubyrun_monitor___rb.html +116 -0
- data/html/files/lib/rubyrun/rubyrun_rb.html +121 -0
- data/html/files/lib/rubyrun/rubyrun_report___rb.html +101 -0
- data/html/files/lib/rubyrun/rubyrun_rss___rb.html +108 -0
- data/html/files/lib/rubyrun/rubyrun_tracer___rb.html +110 -0
- data/html/files/lib/rubyrun/rubyrun_utils___rb.html +108 -0
- data/html/files/lib/rubyrunm_rb.html +116 -0
- data/html/fr_class_index.html +42 -0
- data/html/fr_file_index.html +43 -0
- data/html/fr_method_index.html +96 -0
- data/html/index.html +24 -0
- data/html/rdoc-style.css +208 -0
- data/lib/rubyrun/rubyrun.rb +78 -0
- data/lib/rubyrun/rubyrun_buffer_mgr__.rb +49 -0
- data/lib/rubyrun/rubyrun_commander__.rb +196 -0
- data/lib/rubyrun/rubyrun_dad__.rb +35 -0
- data/lib/rubyrun/rubyrun_globals.rb +51 -0
- data/lib/rubyrun/rubyrun_html__.rb +136 -0
- data/lib/rubyrun/rubyrun_html_writer__.rb +64 -0
- data/lib/rubyrun/rubyrun_initializer__.rb +286 -0
- data/lib/rubyrun/rubyrun_instrumentor__.rb +226 -0
- data/lib/rubyrun/rubyrun_monitor__.rb +237 -0
- data/lib/rubyrun/rubyrun_report__.rb +109 -0
- data/lib/rubyrun/rubyrun_rss__.rb +97 -0
- data/lib/rubyrun/rubyrun_tracer__.rb +79 -0
- data/lib/rubyrun/rubyrun_utils__.rb +98 -0
- data/lib/rubyrun/rubyrunnative__.so +0 -0
- data/lib/rubyrunm.rb +10 -0
- metadata +149 -0
@@ -0,0 +1,186 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>Class: RubyRunHTMLWriter</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="classHeader">
|
50
|
+
<table class="header-table">
|
51
|
+
<tr class="top-aligned-row">
|
52
|
+
<td><strong>Class</strong></td>
|
53
|
+
<td class="class-name-in-header">RubyRunHTMLWriter</td>
|
54
|
+
</tr>
|
55
|
+
<tr class="top-aligned-row">
|
56
|
+
<td><strong>In:</strong></td>
|
57
|
+
<td>
|
58
|
+
<a href="../files/lib/rubyrun/rubyrun_html_writer___rb.html">
|
59
|
+
lib/rubyrun/rubyrun_html_writer__.rb
|
60
|
+
</a>
|
61
|
+
<br />
|
62
|
+
</td>
|
63
|
+
</tr>
|
64
|
+
|
65
|
+
<tr class="top-aligned-row">
|
66
|
+
<td><strong>Parent:</strong></td>
|
67
|
+
<td>
|
68
|
+
Logger
|
69
|
+
</td>
|
70
|
+
</tr>
|
71
|
+
</table>
|
72
|
+
</div>
|
73
|
+
<!-- banner header -->
|
74
|
+
|
75
|
+
<div id="bodyContent">
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
<div id="contextContent">
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
</div>
|
84
|
+
|
85
|
+
<div id="method-list">
|
86
|
+
<h3 class="section-bar">Methods</h3>
|
87
|
+
|
88
|
+
<div class="name-list">
|
89
|
+
<a href="#M000006">format_message</a>
|
90
|
+
<a href="#M000005">new</a>
|
91
|
+
</div>
|
92
|
+
</div>
|
93
|
+
|
94
|
+
</div>
|
95
|
+
|
96
|
+
|
97
|
+
<!-- if includes -->
|
98
|
+
|
99
|
+
<div id="section">
|
100
|
+
|
101
|
+
<div id="class-list">
|
102
|
+
<h3 class="section-bar">Classes and Modules</h3>
|
103
|
+
|
104
|
+
Class <a href="RubyRunHTMLWriter/RubyRunHTMLDevice.html" class="link">RubyRunHTMLWriter::RubyRunHTMLDevice</a><br />
|
105
|
+
|
106
|
+
</div>
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
|
114
|
+
<!-- if method_list -->
|
115
|
+
<div id="methods">
|
116
|
+
<h3 class="section-bar">Public Class methods</h3>
|
117
|
+
|
118
|
+
<div id="method-M000005" class="method-detail">
|
119
|
+
<a name="M000005"></a>
|
120
|
+
|
121
|
+
<div class="method-heading">
|
122
|
+
<a href="#M000005" class="method-signature">
|
123
|
+
<span class="method-name">new</span><span class="method-args">(logdev, header, shift_age = 0, shift_size = 1048576)</span>
|
124
|
+
</a>
|
125
|
+
</div>
|
126
|
+
|
127
|
+
<div class="method-description">
|
128
|
+
<p><a class="source-toggle" href="#"
|
129
|
+
onclick="toggleCode('M000005-source');return false;">[Source]</a></p>
|
130
|
+
<div class="method-source-code" id="M000005-source">
|
131
|
+
<pre>
|
132
|
+
<span class="ruby-comment cmt"># File lib/rubyrun/rubyrun_html_writer__.rb, line 24</span>
|
133
|
+
24: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">logdev</span>, <span class="ruby-identifier">header</span>, <span class="ruby-identifier">shift_age</span> = <span class="ruby-value">0</span>, <span class="ruby-identifier">shift_size</span> = <span class="ruby-value">1048576</span>)
|
134
|
+
25: <span class="ruby-ivar">@progname</span> = <span class="ruby-keyword kw">nil</span>
|
135
|
+
26: <span class="ruby-ivar">@level</span> = <span class="ruby-constant">DEBUG</span>
|
136
|
+
27: <span class="ruby-ivar">@default_formatter</span> = <span class="ruby-constant">Formatter</span>.<span class="ruby-identifier">new</span>
|
137
|
+
28: <span class="ruby-ivar">@formatter</span> = <span class="ruby-keyword kw">nil</span>
|
138
|
+
29: <span class="ruby-ivar">@logdev</span> = <span class="ruby-keyword kw">nil</span>
|
139
|
+
30: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">logdev</span>
|
140
|
+
31: <span class="ruby-ivar">@logdev</span> = <span class="ruby-constant">RubyRunHTMLDevice</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">logdev</span>, <span class="ruby-identifier">header</span>, <span class="ruby-identifier">:shift_age</span> =<span class="ruby-operator">></span> <span class="ruby-identifier">shift_age</span>,
|
141
|
+
32: <span class="ruby-identifier">:shift_size</span> =<span class="ruby-operator">></span> <span class="ruby-identifier">shift_size</span>)
|
142
|
+
33: <span class="ruby-keyword kw">end</span>
|
143
|
+
34: <span class="ruby-keyword kw">end</span>
|
144
|
+
</pre>
|
145
|
+
</div>
|
146
|
+
</div>
|
147
|
+
</div>
|
148
|
+
|
149
|
+
<h3 class="section-bar">Public Instance methods</h3>
|
150
|
+
|
151
|
+
<div id="method-M000006" class="method-detail">
|
152
|
+
<a name="M000006"></a>
|
153
|
+
|
154
|
+
<div class="method-heading">
|
155
|
+
<a href="#M000006" class="method-signature">
|
156
|
+
<span class="method-name">format_message</span><span class="method-args">(severity, timestamp, progname, msg)</span>
|
157
|
+
</a>
|
158
|
+
</div>
|
159
|
+
|
160
|
+
<div class="method-description">
|
161
|
+
<p><a class="source-toggle" href="#"
|
162
|
+
onclick="toggleCode('M000006-source');return false;">[Source]</a></p>
|
163
|
+
<div class="method-source-code" id="M000006-source">
|
164
|
+
<pre>
|
165
|
+
<span class="ruby-comment cmt"># File lib/rubyrun/rubyrun_html_writer__.rb, line 36</span>
|
166
|
+
36: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">format_message</span> (<span class="ruby-identifier">severity</span>, <span class="ruby-identifier">timestamp</span>, <span class="ruby-identifier">progname</span>, <span class="ruby-identifier">msg</span>)
|
167
|
+
37: <span class="ruby-identifier">msg</span>
|
168
|
+
38: <span class="ruby-keyword kw">end</span>
|
169
|
+
</pre>
|
170
|
+
</div>
|
171
|
+
</div>
|
172
|
+
</div>
|
173
|
+
|
174
|
+
|
175
|
+
</div>
|
176
|
+
|
177
|
+
|
178
|
+
</div>
|
179
|
+
|
180
|
+
|
181
|
+
<div id="validator-badges">
|
182
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
183
|
+
</div>
|
184
|
+
|
185
|
+
</body>
|
186
|
+
</html>
|
@@ -0,0 +1,198 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>Module: RubyRunHTML__</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="classHeader">
|
50
|
+
<table class="header-table">
|
51
|
+
<tr class="top-aligned-row">
|
52
|
+
<td><strong>Module</strong></td>
|
53
|
+
<td class="class-name-in-header">RubyRunHTML__</td>
|
54
|
+
</tr>
|
55
|
+
<tr class="top-aligned-row">
|
56
|
+
<td><strong>In:</strong></td>
|
57
|
+
<td>
|
58
|
+
<a href="../files/lib/rubyrun/rubyrun_html___rb.html">
|
59
|
+
lib/rubyrun/rubyrun_html__.rb
|
60
|
+
</a>
|
61
|
+
<br />
|
62
|
+
</td>
|
63
|
+
</tr>
|
64
|
+
|
65
|
+
</table>
|
66
|
+
</div>
|
67
|
+
<!-- banner header -->
|
68
|
+
|
69
|
+
<div id="bodyContent">
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
<div id="contextContent">
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
</div>
|
78
|
+
|
79
|
+
|
80
|
+
</div>
|
81
|
+
|
82
|
+
|
83
|
+
<!-- if includes -->
|
84
|
+
|
85
|
+
<div id="section">
|
86
|
+
|
87
|
+
|
88
|
+
<div id="constants-list">
|
89
|
+
<h3 class="section-bar">Constants</h3>
|
90
|
+
|
91
|
+
<div class="name-list">
|
92
|
+
<table summary="Constants">
|
93
|
+
<tr class="top-aligned-row context-row">
|
94
|
+
<td class="context-item-name">OBJ_MAP_HTML</td>
|
95
|
+
<td>=</td>
|
96
|
+
<td class="context-item-value">"<table cellspacing='2' width='55%'> <tr align='middle' bgcolor='#43bfc7'> <th colspan='2'><font face='Helvetica' size='2' color='white'>Top 20 Ruby classes with the largest number of objects (%START_TIMESTAMP%)</font></th></tr> <tr align='middle' bgcolor='#43bfc7'> <th><font face='Helvetica' size='2' color='white'>Class name</font></th> <th><font face='Helvetica' size='2' color='white'>Number of objects</font></th> %OBJ_MAP_ROW% </table><br></br>"</td>
|
97
|
+
</tr>
|
98
|
+
<tr class="top-aligned-row context-row">
|
99
|
+
<td class="context-item-name">OBJ_MAP_ODD_ROW</td>
|
100
|
+
<td>=</td>
|
101
|
+
<td class="context-item-value">"<tr align='middle'> <td align='left' bgcolor='#afdcec'><font face='Tahoma' size='2' color='black'>%s</font></td> <td align='left' bgcolor='#afdcec'><font face='Tahoma' size='2' color='black'>%s</font></td>"</td>
|
102
|
+
</tr>
|
103
|
+
<tr class="top-aligned-row context-row">
|
104
|
+
<td class="context-item-name">OBJ_MAP_EVEN_ROW</td>
|
105
|
+
<td>=</td>
|
106
|
+
<td class="context-item-value">"<tr align='middle'> <td align='left'><font face='Tahoma' size='2' color='black'>%s</font></td> <td align='left'><font face='Tahoma' size='2' color='black'>%s</font></td>"</td>
|
107
|
+
</tr>
|
108
|
+
<tr class="top-aligned-row context-row">
|
109
|
+
<td class="context-item-name">THREAD_STATUS_HTML</td>
|
110
|
+
<td>=</td>
|
111
|
+
<td class="context-item-value">"<table cellspacing='2' width='100%'> <tr align='middle' bgcolor='#43bfc7'> <th colspan='3'><font face='Helvetica' size='2' color='white'>RubyRun Thread Status Starts (%START_TIMESTAMP%)</font></th> <tr align='middle' bgcolor='#43bfc7'> <th><font face='Helvetica' size='2' color='white'>Thread ID</font></th> <th><font face='Helvetica' size='2' color='white'>Status</font></th> <th><font face='Helvetica' size='2' color='white'>Top of the stack</font></th> %THREAD_STATUS_ROW% </table><br></br>"</td>
|
112
|
+
</tr>
|
113
|
+
<tr class="top-aligned-row context-row">
|
114
|
+
<td class="context-item-name">THREAD_STATUS_ODD_ROW</td>
|
115
|
+
<td>=</td>
|
116
|
+
<td class="context-item-value">"<tr align='middle'> <td bgcolor='#afdcec'><font face='Tahoma' size='2' color='black'>%s</font></td> <td bgcolor='#afdcec'><font face='Tahoma' size='2' color='black'>%s</font></td> <td align='left' bgcolor='#afdcec'><font face='Tahoma' size='2' color='black'>%s</font></td>"</td>
|
117
|
+
</tr>
|
118
|
+
<tr class="top-aligned-row context-row">
|
119
|
+
<td class="context-item-name">THREAD_STATUS_EVEN_ROW</td>
|
120
|
+
<td>=</td>
|
121
|
+
<td class="context-item-value">"<tr align='middle'> <td><font face='Tahoma' size='2' color='black'>%s</font></td> <td><font face='Tahoma' size='2' color='black'>%s</font></td> <td align='left'><font face='Tahoma' size='2' color='black'>%s</font></td></tr>"</td>
|
122
|
+
</tr>
|
123
|
+
<tr class="top-aligned-row context-row">
|
124
|
+
<td class="context-item-name">METHOD_TRACE_HEADER</td>
|
125
|
+
<td>=</td>
|
126
|
+
<td class="context-item-value">"<table cellspacing=2 width=100%> <tr align=center bgcolor=#43BFC7> <th><font face=Helvetica size=2 color=white>Time</font></th> <th><font face=Helvetica size=2 color=white>Thread ID</font></th> <th><font face=Helvetica size=2 color=white>Method Entry/Exit</font></th> <th><font face=Helvetica size=2 color=white>Time Taken</font></th> <th><font face=Helvetica size=2 color=white>Class</font></th> <th><font face=Helvetica size=2 color=white>Method</font></th> <th><font face=Helvetica size=2 color=white>Parameter Value(s)</font></th> <th><font face=Helvetica size=2 color=white>Caller Object Class</font></th> <th><font face=Helvetica size=2 color=white>Caller Method</font></th></tr>"</td>
|
127
|
+
</tr>
|
128
|
+
<tr class="top-aligned-row context-row">
|
129
|
+
<td class="context-item-name">METHOD_TRACE_ODD_ROW</td>
|
130
|
+
<td>=</td>
|
131
|
+
<td class="context-item-value">"<tr align=center> <td bgcolor=#AFDCEC><font face='Tahoma' size=2 color=black>%s</font></td> <td bgcolor=#AFDCEC><font face='Tahoma' size=2 color=black>%s</font></td> <td bgcolor=#AFDCEC><font face='Tahoma' size=2 color=black>%s</font></td> <td bgcolor=%s><font face='Tahoma' size=2 color=black>%s</font></td> <td align=left bgcolor=#AFDCEC><font face='Tahoma' size=2 color=black>%s</font></td> <td align=left bgcolor=#AFDCEC><font face='Tahoma' size=2 color=black>%s</font></td> <td align=left bgcolor=#AFDCEC><font face='Tahoma' size=2 color=black>%s</font></td> <td align=left bgcolor=#AFDCEC><font face='Tahoma' size=2 color=black>%s</font></td> <td align=left bgcolor=#AFDCEC><font face='Tahoma' size=2 color=black>%s</font></td></tr>"</td>
|
132
|
+
</tr>
|
133
|
+
<tr class="top-aligned-row context-row">
|
134
|
+
<td class="context-item-name">METHOD_TRACE_EVEN_ROW</td>
|
135
|
+
<td>=</td>
|
136
|
+
<td class="context-item-value">"<tr align=center> <td><font face='Tahoma' size=2 color=black>%s</font></td> <td><font face='Tahoma' size=2 color=black>%s</font></td> <td><font face='Tahoma' size=2 color=black>%s</font></td> <td bgcolor=%s><font face='Tahoma' size=2 color=black>%s</font></td> <td align=left><font face='Tahoma' size=2 color=black>%s</font></td> <td align=left><font face='Tahoma' size=2 color=black>%s</font></td> <td align=left><font face='Tahoma' size=2 color=black>%s</font></td> <td align=left><font face='Tahoma' size=2 color=black>%s</font></td> <td align=left><font face='Tahoma' size=2 color=black>%s</font></td></tr>"</td>
|
137
|
+
</tr>
|
138
|
+
<tr class="top-aligned-row context-row">
|
139
|
+
<td class="context-item-name">THROUGHPUT_HTML</td>
|
140
|
+
<td>=</td>
|
141
|
+
<td class="context-item-value">"<p align=center><font size='3' face='Verdana'>Performance summary of %APPS_NAME% as of %TIMESTAMP%</font></p> <table id=tblgraph align=center width=80 cellpadding=2 cellspacing=0 border=0> <tr><td bgcolor=WHITE align=center valign=middle width=22 style='writing-mode:tb-rl'><font face=arial size='-1'>Average throughput per min</font></td>%THROUGHPUT_BAR_TABLE%</tr> <tr bgcolor=#505050> <td align=center bordor=1 bgcolor=#FFFFFF>&nbsp;</td>%THROUGHPUT_LABEL_TABLE% <td bgcolor=white align=center><font face=arial size='-2' color=black>Time</font></td> </tr></table>"</td>
|
142
|
+
</tr>
|
143
|
+
<tr class="top-aligned-row context-row">
|
144
|
+
<td class="context-item-name">THROUGHPUT_BAR_TABLE</td>
|
145
|
+
<td>=</td>
|
146
|
+
<td class="context-item-value">"<td align=center valign=bottom width=22> <font face=arial size='-2'>%s</font><br> <div style='writing-mode:tb-rl; background-color:firebrick; width:30; height:%d;' /> </td>"</td>
|
147
|
+
</tr>
|
148
|
+
<tr class="top-aligned-row context-row">
|
149
|
+
<td class="context-item-name">THROUGHPUT_LABEL_TABLE</td>
|
150
|
+
<td>=</td>
|
151
|
+
<td class="context-item-value">"<td align=center><font face=arial size='-2' color=white>%s</font></td>"</td>
|
152
|
+
</tr>
|
153
|
+
<tr class="top-aligned-row context-row">
|
154
|
+
<td class="context-item-name">TOP_SLOWEST_REQUESTS_HTML</td>
|
155
|
+
<td>=</td>
|
156
|
+
<td class="context-item-value">"<p><font size='2' face='Verdana'>Top 10 Slowest Requests</font></p> <table cellspacing=0 width=50%%><tr bgcolor=FF6633> <th><font face=Helvetica size=2 color=#FFFFFF>Controller/Action<font></th> <th><font face=Helvetica size=2 color=#FFFFFF>Response Time<font></th></tr> %TOP_SLOWEST_REQUESTS_TABLE% </table>"</td>
|
157
|
+
</tr>
|
158
|
+
<tr class="top-aligned-row context-row">
|
159
|
+
<td class="context-item-name">TOP_SLOWEST_REQUESTS_TABLE</td>
|
160
|
+
<td>=</td>
|
161
|
+
<td class="context-item-value">"<tr><td align=left bgcolor=585858><font face=Helvetica size=2 color=white>%s</font></td> <td><table><tr><td bgcolor=firebrick><div style='writing-mode:tb-rl; background-color:firebrick; width:%d; height:5;' /></td><td><font face=Helvetica SIZE=1>%0.3fs</font></td></tr></table></td></tr>"</td>
|
162
|
+
</tr>
|
163
|
+
<tr class="top-aligned-row context-row">
|
164
|
+
<td class="context-item-name">REQ_PERF_BREAKDOWN_HTML</td>
|
165
|
+
<td>=</td>
|
166
|
+
<td class="context-item-value">"<p><font size='2' face='Verdana'>Request Performance Breakdown</font></p> <table cellspacing=0 width=100%> <tr bgcolor=FF6633> <th><font face=Helvetica size=2 color=#FFFFFF>Controller/Action</font></th> <th><font face=Helvetica size=2 color=#FFFFFF>Request Count</font></th> <th><font face=Helvetica size=2 color=#FFFFFF>Response Time</font></th> <th><font face=Helvetica size=2 color=#FFFFFF>Action Time</font></th> <th><font face=Helvetica size=2 color=#FFFFFF>Database IO Time</font></th> <th><font face=Helvetica size=2 color=#FFFFFF>View Time</font></th> <th><font face=Helvetica size=2 color=#FFFFFF>Dispatch Delay Time</font></th> <th><font face=Helvetica size=2 color=#FFFFFF>Uncaptured Time</font></th> </tr>%REQ_PERF_BREAKDOWN_TABLE%</table> <font size='1' face='Verdana'>Note: Process components are results of functional decomposition which overlap each other. As a result, times do not add up to 100%. The hotspots of performance slowdowns, however, are easily accountable from functional standpoint.</font><br></br>"</td>
|
167
|
+
</tr>
|
168
|
+
<tr class="top-aligned-row context-row">
|
169
|
+
<td class="context-item-name">REQ_PERF_BREAKDOWN_TABLE_ODD</td>
|
170
|
+
<td>=</td>
|
171
|
+
<td class="context-item-value">'<tr align=center> <td align=left bgcolor=585858><font face=Helvetica size=2 color=white>%s</font></td> <td bgcolor=C0C0C0><font face=Helvetica size=2 color=black>%d</font></td> <td bgcolor=C0C0C0><font face=Helvetica size=2 color=black>%0.3fs</font></td> <td bgcolor=C0C0C0><font face=Helvetica size=2 color=black>%0.3fs (%d%%)</font></td> <td bgcolor=C0C0C0><font face=Helvetica size=2 color=black>%0.3fs (%d%%)</font></td> <td bgcolor=C0C0C0><font face=Helvetica size=2 color=black>%0.3fs (%d%%)</font></td> <td bgcolor=C0C0C0><font face=Helvetica size=2 color=black>%0.3fs (%d%%)</font></td> <td bgcolor=C0C0C0><font face=Helvetica size=2 color=black>%0.3fs</font></td> </tr>'</td>
|
172
|
+
</tr>
|
173
|
+
<tr class="top-aligned-row context-row">
|
174
|
+
<td class="context-item-name">REQ_PERF_BREAKDOWN_TABLE_EVEN</td>
|
175
|
+
<td>=</td>
|
176
|
+
<td class="context-item-value">'<tr align=center> <td align=left bgcolor=585858><font face=Helvetica size=2 color=white>%s</font></td> <td><font face=Helvetica size=2 color=black>%d</font></td> <td><font face=Helvetica size=2 color=black>%0.3fs </font></td> <td><font face=Helvetica size=2 color=black>%0.3fs (%d%%)</font></td> <td><font face=Helvetica size=2 color=black>%0.3fs (%d%%)</font></td> <td><font face=Helvetica size=2 color=black>%0.3fs (%d%%)</font></td> <td><font face=Helvetica size=2 color=black>%0.3fs (%d%%)</font></td> <td><font face=Helvetica size=2 color=black>%0.3fs</font></td> </tr>'</td>
|
177
|
+
</tr>
|
178
|
+
</table>
|
179
|
+
</div>
|
180
|
+
</div>
|
181
|
+
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
|
186
|
+
|
187
|
+
<!-- if method_list -->
|
188
|
+
|
189
|
+
|
190
|
+
</div>
|
191
|
+
|
192
|
+
|
193
|
+
<div id="validator-badges">
|
194
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
195
|
+
</div>
|
196
|
+
|
197
|
+
</body>
|
198
|
+
</html>
|