diff --git a/src/main/webapp/scripts/directives/jvmMemoryChart.js b/src/main/webapp/scripts/directives/jvmMemoryChart.js
index 6e37b4152..def58ce14 100644
--- a/src/main/webapp/scripts/directives/jvmMemoryChart.js
+++ b/src/main/webapp/scripts/directives/jvmMemoryChart.js
@@ -58,13 +58,21 @@ angular.module('pinpointApp')
"id": "v1",
"gridAlpha": 0,
"axisAlpha": 1,
- "position": "left"
+ "position": "left",
+// "labelFunction": function (value, valueText, valueAxis) {
+// return valueText + 'ms';
+// }
+ "title": "Full GC (ms)"
},
{
"id": "v2",
"gridAlpha": 0,
"axisAlpha": 1,
- "position": "right"
+ "position": "right",
+// "labelFunction": function (value, valueText, valueAxis) {
+// return valueText + 'B';
+// }
+ "title": "Memory (bytes)"
}
],
"graphs": [
diff --git a/src/main/webapp/views/agentInfoMain.html b/src/main/webapp/views/agentInfoMain.html
index 3f48cc2f1..0a0d6ebd4 100644
--- a/src/main/webapp/views/agentInfoMain.html
+++ b/src/main/webapp/views/agentInfoMain.html
@@ -11,6 +11,10 @@
+
+ | Application Name : |
+ {{info.applicationName}} |
+
| Agent Id : |
{{info.agentId}} |
@@ -19,18 +23,14 @@
Hostname : |
{{info.hostname}} |
+
+ | IP : |
+ {{info.ip}} NSight
+ |
| Service Type : |
{{info.serviceType}} |
-
- | Agent Version : |
- {{info.agentVersion}} |
-
-
- | Start Time : |
- {{agent.startTime | date:'yyyy-MM-dd HH:mm:ss Z'}} |
-
@@ -38,12 +38,8 @@
- | Application Name : |
- {{info.applicationName}} |
-
-
- | IP : |
- {{info.ip}} |
+ Agent Version : |
+ {{info.agentVersion}} |
| PID : |
@@ -53,6 +49,10 @@
JVM GC Type : |
{{info.jvmGcType}} |
+
+ | Start Time : |
+ {{agent.startTime | date:'yyyy-MM-dd HH:mm:ss Z'}} |
+
| End Status : |
{{agent.endStatus}} (last checked : {{agent.endTimeStamp | date:'yyyy-MM-dd HH:mm:ss Z'}}) |