-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
experimental #lucee 6 debugging function https://luceeserver.atlassian.net/browse/LDEV-3436 lucee/Lucee#1271
- Loading branch information
Showing
9 changed files
with
137 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#Build Number for ANT. Do not edit! | ||
#Tue Apr 06 17:01:14 CEST 2021 | ||
build.number=9 | ||
#Sat Apr 10 17:31:55 CEST 2021 | ||
build.number=10 |
Binary file renamed
BIN
+54.2 KB
...extension-PerformanceAnalyzer-2.1.0.8.lex → ...extension-PerformanceAnalyzer-2.1.0.9.lex
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<cfscript> | ||
param name="arguments.req.template" default =""; | ||
param name="arguments.req.maxrows" default ="100"; | ||
setTitle("Page Parts"); | ||
local.parts = this.Perf.getLogs(arguments.req, "parts"); | ||
local.q = local.parts.q; | ||
</cfscript> | ||
|
||
|
||
<table class="maintbl checkboxtbl sort-table"> | ||
<thead> | ||
<tr> | ||
<cfoutput> | ||
#renderTemplateHead()# | ||
</cfoutput> | ||
<th>Lines</th> | ||
<th>Total time</th> | ||
<th>Count</th> | ||
<th>Min</th> | ||
<th>Max</th> | ||
<th>Avg</th> | ||
<!---<th>Query</th>---> | ||
<th>Requests</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<cfoutput query="local.q" maxrows=#arguments.req.maxrows#> | ||
<tr class="#altRow(local.q.currentRow)#"> | ||
#renderTemplateLink( arguments.req, local.q.template )# | ||
<td align="right">#local.q.lines#</td> | ||
<td align="right">#NumberFormat( local.q.totalTime / ( 1000 * 1000 ) )#</td> | ||
<td align="right">#NumberFormat( local.q.totalCount)#</td> | ||
<td align="right">#NumberFormat( local.q.minTime / ( 1000 * 1000 ) )#</td> | ||
<td align="right">#NumberFormat( local.q.maxTime / ( 1000 * 1000 ) )#</td> | ||
<td align="right">#NumberFormat( local.q.avgTime / ( 1000 * 1000 ) )#</td> | ||
<!---<td align="right">#NumberFormat(local.q.avgQuery / ( 1000 * 1000 ) )#</td>---> | ||
<td align="right">#NumberFormat( local.q.executions )#</td> | ||
</tr> | ||
</cfoutput> | ||
</tbody> | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters