mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-24 04:06:34 +10:00
[유치수] [NOBTS] 정렬 기능 보강.
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@1247 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
@@ -232,7 +232,7 @@
|
||||
</td>
|
||||
|
||||
<td class="arguments">${record.arguments}</td>
|
||||
<td class="time">
|
||||
<td class="time" sorttable_customkey="${record.elapsed}">
|
||||
<c:if test="${record.method}">
|
||||
<fmt:formatNumber type="number" value="${record.elapsed}"/>
|
||||
</c:if>
|
||||
|
||||
@@ -393,7 +393,9 @@ d3.chart.scatter._renderer = function(){
|
||||
html.push(i + 1);
|
||||
html.push("</td>");
|
||||
|
||||
html.push("<td>");
|
||||
html.push("<td sorttable_customkey='");
|
||||
html.push(data[i].startTime);
|
||||
html.push("'>");
|
||||
html.push(new Date(data[i].startTime).format("HH:MM:ss l"));
|
||||
html.push("</td>");
|
||||
|
||||
|
||||
@@ -13,20 +13,20 @@ function showTransactionList(transactions) {
|
||||
html.push(transactions[i].name);
|
||||
html.push("</div></td>");
|
||||
|
||||
html.push("<td class='calls'>");
|
||||
html.push(transactions[i].calls);
|
||||
html.push("<td class='calls' sorttable_customkey='" + transactions[i].calls + "'>");
|
||||
html.push(formatNumber(transactions[i].calls));
|
||||
html.push("</td>");
|
||||
|
||||
html.push("<td class='time'>");
|
||||
html.push(transactions[i].avgTime);
|
||||
html.push("<td class='time' sorttable_customkey='" + transactions[i].avgTime + "'>");
|
||||
html.push(formatNumber(transactions[i].avgTime));
|
||||
html.push("</td>");
|
||||
|
||||
html.push("<td class='time'>");
|
||||
html.push(transactions[i].minTime);
|
||||
html.push("<td class='time' sorttable_customkey='" + transactions[i].minTime + "'>");
|
||||
html.push(formatNumber(transactions[i].minTime));
|
||||
html.push("</td>");
|
||||
|
||||
html.push("<td class='time'>");
|
||||
html.push(transactions[i].maxTime);
|
||||
html.push("<td class='time' sorttable_customkey='" + transactions[i].maxTime + "'>");
|
||||
html.push(formatNumber(transactions[i].maxTime));
|
||||
html.push("</td>");
|
||||
|
||||
html.push("</tr>");
|
||||
|
||||
@@ -111,10 +111,10 @@
|
||||
<table id="selectedBusinessTransactionsDetail" class="table table-bordered table-hover sortable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th>Time</th>
|
||||
<th class="sorttable_numeric">#</th>
|
||||
<th class="sorttable_numeric">Time</th>
|
||||
<th>TraceId</th>
|
||||
<th>Res. Time (ms)</th>
|
||||
<th class="sorttable_numeric">Res. Time (ms)</th>
|
||||
<th>Exception</th>
|
||||
<th>Application</th>
|
||||
<th>AgentId</th>
|
||||
|
||||
Reference in New Issue
Block a user