JWS-121 & JWS-111 Adding ‘timestamp’ (string formatted date + time) to the HttpServ...
[jabaws.git] / website / statpages / MonthlySummary.jsp
1 <%--
2 Author: Peter Troshin
3 Date: May 2011
4 --%>
5 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
6 <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
7 <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
8 <%@ taglib uri="http://displaytag.sf.net" prefix="dt" %>
9
10 <c:import url="../template_header.jsp" >
11         <c:param name="title">Usage Statistics</c:param>
12         <c:param name="html_custom_css"><link href="${pageContext.request.contextPath}/static/css/table.css"
13                                                                                   rel="stylesheet"></c:param>
14 </c:import>
15
16 <div class="row" id="mainpage">
17         <div class="col-md-12">
18                 <div class="panel panel-default">
19                         <div class="panel panel-heading">
20                                 <h1 class="panel-title">JABAWS Services Status</h1>
21                         </div>
22                         <div class="panel-body">
23                                 <div style="margin: 20px ">
24                                         <ul>
25                                                 <li><strong>Server:</strong> <a href="${pageContext.request.scheme}://${pageContext.request.serverName}:${pageContext.request.serverPort}${pageContext.request.contextPath}">
26                                                         ${pageContext.request.scheme}://${pageContext.request.serverName}:${pageContext.request.serverPort}${pageContext.request.contextPath}
27                                                 </a> </li>
28                                                 <li><strong>Time of execution:</strong> ${timeexec} sec</li>
29                                                 <li><strong>Usage Statistics as of:</strong> ${timestamp}</li>
30                                                 <li><a href="${pageContext.request.contextPath}/PublicAnnualStat" title="JABAWS server usage statistics."
31                                                 id="show_hidden2"><i class="fa fa-bar-chart" aria-hidden="true"></i> Refresh Usage Statistics</a></li>
32                                         </ul>
33                                         <br/>
34                                         <table class="center its" style="width: 600px ">
35                                                 <thead>
36                                                 <tr>
37                                                         <th rowspan="2">Month</th>
38                                                         <th colspan="4" style="text-align: center">Number of Jobs</th>
39                                                 </tr>
40                                                 <tr>
41                                                         <th title="Total number of jobs received">Total</th>
42                                                         <th title="The number of jobs with no result">Incomplete</th>
43                                                         <th title="The number of cancelled jobs">Cancelled</th>
44                                                         <th title="The number of jobs started but not collected by the user">Abandoned</th>
45                                                 </tr>
46                                                 </thead>
47                                                 <tbody>
48
49                                                 <c:forEach items="${stat}" var="monthTotal" varStatus="status">
50                                                         <c:choose>
51                                                                 <c:when test="${status.count%2==0}">
52                                                                         <tr class="even">
53                                                                 </c:when>
54                                                                 <c:otherwise>
55                                                                         <tr class="odd">
56                                                                 </c:otherwise>
57                                                         </c:choose>
58
59                                                         <td>
60                                                                 <c:choose>
61                                                                         <c:when test="${isAdmin}">
62                                                                                 <a title="Click to view the detailed statistics for the period" href="DisplayStat?datetime=${monthTotal.key.time}"><fmt:formatDate value="${monthTotal.key}" type="date" pattern="MMM yyyy"/></a>
63                                                                         </c:when>
64                                                                         <c:otherwise>
65                                                                                 <fmt:formatDate value="${monthTotal.key}" type="date" pattern="MMM yyyy"/>
66                                                                         </c:otherwise>
67                                                                 </c:choose>
68
69                                                         </td>
70                                                         <td>${monthTotal.value.total}</td>
71                                                         <td>${monthTotal.value.incomplete}</td>
72                                                         <td>${monthTotal.value.cancelled}</td>
73                                                         <td>${monthTotal.value.abandoned}</td>
74                                                         </tr>
75                                                 </c:forEach>
76                                                 <tr style="font-weight: bolder;">
77                                                         <td>Total:</td>
78                                                         <td>${total.total}</td>
79                                                         <td>${total.incomplete}</td>
80                                                         <td>${total.cancelled}</td>
81                                                         <td>${total.abandoned}</td>
82                                                 </tr>
83                                                 </tbody>
84                                         </table>
85
86                                         <div style="width: 600px">
87                                                 <h3>Help</h3>
88                                                 <p>
89                                                         The table contains the number of jobs processed by JABAWS per month, for the whole
90                                                         period when the statistics was collected</p>
91                                                 For each month the table contains the following information.
92                                                 <ul>
93                                                         <li>The period of time for which statistics is displayed. For example Jan 2011 means period of time from the first of
94                                                                 January to the 31 of January.</li>
95                                                         <li>Total - the total number of jobs accepted by JABAWS</li>
96                                                         <li>Incomplete - the number of jobs for which the result file was not found or was empty excluding cancelled</li>
97                                                         <li>Cancelled - the number of jobs cancelled by the user</li>
98                                                         <li>Abandoned - the number of jobs which result(s) were not collected</li>
99                                                 </ul>
100                                                 The summary for each column is displayed in the last row of the table.
101                                         </div> <!-- Help text enclosing dev end -->
102                                         <c:if test="${!isAdmin}">
103                                                 <br/><p><a href="AnnualStat">Please login as administrator</a> to view the detailed statistics (<a href=docs/stats.html>help</a>)</p>
104                                         </c:if>
105
106                                 </div><!-- margin div -->
107                         </div>
108                 </div>
109         </div>
110 </div>
111
112 <jsp:include page="../template_footer.jsp" />