diff --git a/src/main/webapp/WEB-INF/views/selectTransaction.jsp b/src/main/webapp/WEB-INF/views/selectTransaction.jsp
index a7e9bae61..31ba132fb 100644
--- a/src/main/webapp/WEB-INF/views/selectTransaction.jsp
+++ b/src/main/webapp/WEB-INF/views/selectTransaction.jsp
@@ -232,7 +232,7 @@
${record.arguments} |
-
+ |
diff --git a/src/main/webapp/common/js/d3.chart.scatter.js b/src/main/webapp/common/js/d3.chart.scatter.js
index 0121ef8a8..2ae826b62 100644
--- a/src/main/webapp/common/js/d3.chart.scatter.js
+++ b/src/main/webapp/common/js/d3.chart.scatter.js
@@ -393,7 +393,9 @@ d3.chart.scatter._renderer = function(){
html.push(i + 1);
html.push(" | ");
- html.push("");
+ html.push(" | ");
html.push(new Date(data[i].startTime).format("HH:MM:ss l"));
html.push(" | ");
diff --git a/src/main/webapp/common/js/hippo/chart-transactions.js b/src/main/webapp/common/js/hippo/chart-transactions.js
index 8c45ce62b..a619e925c 100644
--- a/src/main/webapp/common/js/hippo/chart-transactions.js
+++ b/src/main/webapp/common/js/hippo/chart-transactions.js
@@ -13,20 +13,20 @@ function showTransactionList(transactions) {
html.push(transactions[i].name);
html.push("");
- html.push("");
- html.push(transactions[i].calls);
+ html.push(" | ");
+ html.push(formatNumber(transactions[i].calls));
html.push(" | ");
- html.push("");
- html.push(transactions[i].avgTime);
+ html.push(" | ");
+ html.push(formatNumber(transactions[i].avgTime));
html.push(" | ");
- html.push("");
- html.push(transactions[i].minTime);
+ html.push(" | ");
+ html.push(formatNumber(transactions[i].minTime));
html.push(" | ");
- html.push("");
- html.push(transactions[i].maxTime);
+ html.push(" | ");
+ html.push(formatNumber(transactions[i].maxTime));
html.push(" | ");
html.push("");
diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html
index 64e6896cd..462255933 100644
--- a/src/main/webapp/index.html
+++ b/src/main/webapp/index.html
@@ -111,10 +111,10 @@
- | # |
- Time |
+ # |
+ Time |
TraceId |
- Res. Time (ms) |
+ Res. Time (ms) |
Exception |
Application |
AgentId |