diff --git a/src/main/webapp/WEB-INF/views/flowserver.jsp b/src/main/webapp/WEB-INF/views/flowserver.jsp
index 24744d09d..caebcb964 100644
--- a/src/main/webapp/WEB-INF/views/flowserver.jsp
+++ b/src/main/webapp/WEB-INF/views/flowserver.jsp
@@ -1,62 +1,62 @@
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
{
- "graphdata" : {
- "nodes" : [
-
- {
- "name" : "${node}",
- "recursiveCallCount" : "${node.recursiveCallCount}",
- "agentIds" : [
-
- "${agentId}"
- ,
-
- ]
- }
- ,
-
- ],
- "links" : [
-
- {"source" : ${link.from.sequence}, "target" : ${link.to.sequence}, "value" : ${link.callCount}}
- ,
-
- ]
- },
-
- "businessTransactions" : [
-
- {
- "name" : "${t.name}",
- "calls" : ${t.calls},
- "avgTime" : ${t.totalTime / t.calls},
- "minTime" : ${t.minTime},
- "maxTime" : ${t.maxTime},
- "health" : 1,
- "traces" : [
-
- { "traceId" : "${trace.traceId}", "executionTime" : ${trace.executionTime}, "timestamp" : ${trace.timestamp} }
- ,
-
- ]
- }
- ,
-
- ],
-
- "scatter" : [
-
-
- {
- "traceId" : "${trace.traceId}",
- "timestamp" : ${trace.timestamp},
- "executionTime" : ${trace.executionTime},
- "name" : "${t.name}"
- }
+"graphdata" : {
+"nodes" : [
+
+ {
+ "name" : "${node}",
+ "recursiveCallCount" : "${node.recursiveCallCount}",
+ "agentIds" : [
+
+ "${agentId}"
+ ,
+
+ ]
+ }
+ ,
+
+],
+"links" : [
+
+ {"source" : ${link.from.sequence}, "target" : ${link.to.sequence}, "value" : ${link.callCount}}
+ ,
+
+]
+},
+
+"businessTransactions" : [
+
+ {
+ "name" : "${t.name}",
+ "calls" : ${t.calls},
+ "avgTime" : ${t.totalTime / t.calls},
+ "minTime" : ${t.minTime},
+ "maxTime" : ${t.maxTime},
+ "health" : 1,
+ "traces" : [
+
+ { "traceId" : "${trace.traceId}", "executionTime" : ${trace.executionTime}, "timestamp" : ${trace.startTime} }
+ ,
+
+ ]
+ }
+ ,
+
+],
+
+"scatter" : [
+
+
+ {
+ "traceId" : "${trace.traceId}",
+ "timestamp" : ${trace.startTime},
+ "executionTime" : ${trace.executionTime},
+ "name" : "${t.name}"
+ }
,
-
- ,
-
- ]
+
+ ,
+
+]
}
\ No newline at end of file