mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-16 16:28:48 +10:00
[강운덕] [LUCYSUS-1744] startTime변수 변경.
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@878 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
@@ -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" : [
|
||||
<c:forEach items="${nodes}" var="node" varStatus="status">
|
||||
{
|
||||
"name" : "${node}",
|
||||
"recursiveCallCount" : "${node.recursiveCallCount}",
|
||||
"agentIds" : [
|
||||
<c:forEach items="${node.agentIds}" var="agentId" varStatus="status2">
|
||||
"${agentId}"
|
||||
<c:if test="${!status2.last}">,</c:if>
|
||||
</c:forEach>
|
||||
]
|
||||
}
|
||||
<c:if test="${!status.last}">,</c:if>
|
||||
</c:forEach>
|
||||
],
|
||||
"links" : [
|
||||
<c:forEach items="${links}" var="link" varStatus="status">
|
||||
{"source" : ${link.from.sequence}, "target" : ${link.to.sequence}, "value" : ${link.callCount}}
|
||||
<c:if test="${!status.last}">,</c:if>
|
||||
</c:forEach>
|
||||
]
|
||||
},
|
||||
|
||||
"businessTransactions" : [
|
||||
<c:forEach items="${businessTransactions}" var="t" varStatus="status">
|
||||
{
|
||||
"name" : "${t.name}",
|
||||
"calls" : ${t.calls},
|
||||
"avgTime" : ${t.totalTime / t.calls},
|
||||
"minTime" : ${t.minTime},
|
||||
"maxTime" : ${t.maxTime},
|
||||
"health" : 1,
|
||||
"traces" : [
|
||||
<c:forEach items="${t.traces}" var="trace" varStatus="status2">
|
||||
{ "traceId" : "${trace.traceId}", "executionTime" : ${trace.executionTime}, "timestamp" : ${trace.timestamp} }
|
||||
<c:if test="${!status2.last}">,</c:if>
|
||||
</c:forEach>
|
||||
]
|
||||
}
|
||||
<c:if test="${!status.last}">,</c:if>
|
||||
</c:forEach>
|
||||
],
|
||||
|
||||
"scatter" : [
|
||||
<c:forEach items="${traces}" var="t" varStatus="status3">
|
||||
<c:forEach items="${t.traces}" var="trace" varStatus="status4">
|
||||
{
|
||||
"traceId" : "${trace.traceId}",
|
||||
"timestamp" : ${trace.timestamp},
|
||||
"executionTime" : ${trace.executionTime},
|
||||
"name" : "${t.name}"
|
||||
}
|
||||
"graphdata" : {
|
||||
"nodes" : [
|
||||
<c:forEach items="${nodes}" var="node" varStatus="status">
|
||||
{
|
||||
"name" : "${node}",
|
||||
"recursiveCallCount" : "${node.recursiveCallCount}",
|
||||
"agentIds" : [
|
||||
<c:forEach items="${node.agentIds}" var="agentId" varStatus="status2">
|
||||
"${agentId}"
|
||||
<c:if test="${!status2.last}">,</c:if>
|
||||
</c:forEach>
|
||||
]
|
||||
}
|
||||
<c:if test="${!status.last}">,</c:if>
|
||||
</c:forEach>
|
||||
],
|
||||
"links" : [
|
||||
<c:forEach items="${links}" var="link" varStatus="status">
|
||||
{"source" : ${link.from.sequence}, "target" : ${link.to.sequence}, "value" : ${link.callCount}}
|
||||
<c:if test="${!status.last}">,</c:if>
|
||||
</c:forEach>
|
||||
]
|
||||
},
|
||||
|
||||
"businessTransactions" : [
|
||||
<c:forEach items="${businessTransactions}" var="t" varStatus="status">
|
||||
{
|
||||
"name" : "${t.name}",
|
||||
"calls" : ${t.calls},
|
||||
"avgTime" : ${t.totalTime / t.calls},
|
||||
"minTime" : ${t.minTime},
|
||||
"maxTime" : ${t.maxTime},
|
||||
"health" : 1,
|
||||
"traces" : [
|
||||
<c:forEach items="${t.traces}" var="trace" varStatus="status2">
|
||||
{ "traceId" : "${trace.traceId}", "executionTime" : ${trace.executionTime}, "timestamp" : ${trace.startTime} }
|
||||
<c:if test="${!status2.last}">,</c:if>
|
||||
</c:forEach>
|
||||
]
|
||||
}
|
||||
<c:if test="${!status.last}">,</c:if>
|
||||
</c:forEach>
|
||||
],
|
||||
|
||||
"scatter" : [
|
||||
<c:forEach items="${traces}" var="t" varStatus="status3">
|
||||
<c:forEach items="${t.traces}" var="trace" varStatus="status4">
|
||||
{
|
||||
"traceId" : "${trace.traceId}",
|
||||
"timestamp" : ${trace.startTime},
|
||||
"executionTime" : ${trace.executionTime},
|
||||
"name" : "${t.name}"
|
||||
}
|
||||
<c:if test="${!status4.last}">,</c:if>
|
||||
</c:forEach>
|
||||
<c:if test="${!status3.last}">,</c:if>
|
||||
</c:forEach>
|
||||
]
|
||||
</c:forEach>
|
||||
<c:if test="${!status3.last}">,</c:if>
|
||||
</c:forEach>
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user