cache.jsp
7.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<%@ page session="false" language="java" pageEncoding="UTF-8"%>
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="a" uri="/WEB-INF/app.tld"%>
<%@ taglib prefix="w" uri="http://www.unidal.org/web/core"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="res" uri="http://www.unidal.org/webres"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<jsp:useBean id="ctx" type="com.dianping.cat.report.page.cache.Context"
scope="request" />
<jsp:useBean id="payload"
type="com.dianping.cat.report.page.cache.Payload" scope="request" />
<jsp:useBean id="model" type="com.dianping.cat.report.page.cache.Model"
scope="request" />
<c:set var="report" value="${model.report}" />
<a:report
title="Cache Report${empty payload.type ? '' : ' :: '}<a href='?domain=${model.domain}&date=${model.date}&type=${payload.type}'>${payload.type}</a>"
navUrlPrefix="ip=${model.ipAddress}&queryname=${model.queryName}&domain=${model.domain}${empty payload.type ? '' : '&type='}${payload.type}"
timestamp="${w:format(model.creatTime,'yyyy-MM-dd HH:mm:ss')}">
<jsp:attribute name="subtitle">${w:format(report.startTime,'yyyy-MM-dd HH:mm:ss')} to ${w:format(report.endTime,'yyyy-MM-dd HH:mm:ss')}</jsp:attribute>
<jsp:body>
<res:useJs value="${res.js.local['baseGraph.js']}" target="head-js" />
<table class="machines">
<tr style="text-align: left">
<th> [ <c:choose>
<c:when test="${model.ipAddress eq 'All'}">
<a href="?domain=${model.domain}&date=${model.date}&type=${payload.type}&queryname=${model.queryName}"
class="current">All</a>
</c:when>
<c:otherwise>
<a href="?domain=${model.domain}&date=${model.date}&type=${payload.type}&queryname=${model.queryName}">All</a>
</c:otherwise>
</c:choose> ] <c:forEach var="ip" items="${model.ips}">
[
<c:choose>
<c:when test="${model.ipAddress eq ip}">
<a href="?domain=${model.domain}&ip=${ip}&date=${model.date}&type=${payload.type}&queryname=${model.queryName}"
class="current">${ip}</a>
</c:when>
<c:otherwise>
<a href="?domain=${model.domain}&ip=${ip}&date=${model.date}&type=${payload.type}&queryname=${model.queryName}">${ip}</a>
</c:otherwise>
</c:choose>
]
</c:forEach>
</th>
</tr>
</table>
<c:choose>
<c:when test="${empty payload.type}">
<table class="table table-hover table-striped table-condensed">
<tr>
<th class="left"><a href="?domain=${model.domain}&date=${model.date}&ip=${model.ipAddress}&sort=type">Type</a></th>
<th class="right"><a href="?domain=${model.domain}&date=${model.date}&ip=${model.ipAddress}&sort=total">Total</a></th>
<th class="right"><a href="?domain=${model.domain}&date=${model.date}&ip=${model.ipAddress}&sort=missed">Missed</a></th>
<th class="right"><a href="?domain=${model.domain}&date=${model.date}&ip=${model.ipAddress}&sort=hitPercent">Hit Rate(%)</a></th>
<th class="right"><a href="?domain=${model.domain}&date=${model.date}&sort=avg">Avg</a>(ms)</th>
<th class="right">QPS</th>
</tr>
<c:forEach var="item" items="${model.report.typeItems}"
varStatus="status">
<c:set var="e" value="${item.type}" />
<c:set var="lastIndex" value="${status.index}" />
<tr class=" right">
<td style="text-align: left"><a
href="?domain=${report.domain}&date=${model.date}&ip=${model.ipAddress}&type=${e.id}">${e.id}</a></td>
<td>${w:format(e.totalCount,'#,###,###,###,##0')}</td>
<td>${w:format(item.missed,'#,###,###,###,##0')}</td>
<td>${w:format(item.hited,'0.0000%')}</td>
<td>${w:format(e.avg,'0.0')}</td>
<td>${w:format(e.tps,'0.0')}</td>
</tr>
</c:forEach>
</table>
</c:when>
<c:otherwise>
<div class="row-fluid">
<div class="span7 ">
<table class='table table-hover table-striped table-condensed '>
<tr>
<th class="left" colspan='10'><input type="text"
name="queryname" id="queryname" size="40"
value="${model.queryName}">
<input id="queryname" style="WIDTH: 60px" class="btn btn-sm btn-primary"
onclick="filterByName('${model.date}','${model.domain}','${model.ipAddress}','${payload.type}')"
type="submit">
支持多个字符串查询,例如sql|url|task,查询结果为包含任一sql、url、task的列
</th></tr>
<tr><th>命中率计算方式: 1-missed/Get, mGet不在统计范围之内</th></tr>
<script>
function filterByName(date, domain, ip) {
var queryname = $("#queryname").val();
var type = '${payload.type}';
window.location.href = "?domain=" + domain + "&type="
+ type + "&date=" + date + "&queryname="
+ queryname + "&ip=" + ip;
}
</script>
<tr>
<th class="left">
<a href="?domain=${model.domain}&date=${model.date}&ip=${model.ipAddress}&type=${payload.type}&sort=type&queryname=${model.queryName}">Name</a>
</th>
<th class="right"><a href="?domain=${model.domain}&date=${model.date}&ip=${model.ipAddress}&type=${payload.type}&sort=total&queryname=${model.queryName}">Total</a></th>
<c:forEach var="item" items="${model.report.methods}" varStatus="status">
<th class="right"><a href="?domain=${model.domain}&date=${model.date}&ip=${model.ipAddress}&type=${payload.type}&sort=${item}&queryname=${model.queryName}">${item}</a></th>
</c:forEach>
<th class="right"><a href="?domain=${model.domain}&date=${model.date}&ip=${model.ipAddress}&type=${payload.type}&sort=missed&queryname=${model.queryName}">Missed</a></th>
<th class="right"><a href="?domain=${model.domain}&date=${model.date}&ip=${model.ipAddress}&type=${payload.type}&sort=hitPercent&queryname=${model.queryName}">Hit Rate(%)</a></th>
<th class="right"><a href="?domain=${model.domain}&date=${model.date}&type=${payload.type}&sort=avg&queryname=${model.queryName}">Avg</a>(ms)</th>
<th class="right">QPS</th>
</tr>
<c:forEach var="item" items="${model.report.nameItems}"
varStatus="status">
<c:set var="e" value="${item.name}" />
<c:set var="lastIndex" value="${status.index}" />
<tr class=" right">
<td style="text-align: left; word-wrap: break-word; word-break: break-all;">${w:shorten(e.id, 80)}</td>
<td>${w:format(e.totalCount,'#,###,###,###,##0')}</td>
<c:forEach var="method" items="${model.report.methods}" varStatus="status">
<c:choose>
<c:when test="${item.methodCounts[method] != null}">
<td>${w:format(item.methodCounts[method],'#,###,###,###,##0')}</td>
</c:when>
<c:otherwise>
<td>0</td>
</c:otherwise>
</c:choose>
</c:forEach>
<td>${item.missed}</td>
<td>${w:format(item.hited,'0.0000%')}</td>
<td>${w:format(e.avg,'0.0')}</td>
<td>${w:format(e.tps,'0.0')}</td>
</tr>
</c:forEach>
</table>
</div>
<div class="span5">
<div id="cacheGraph"></div>
<script type="text/javascript">
var data = ${model.pieChart};
graphPieChart(document.getElementById('cacheGraph'),
data);
</script>
</div>
</div>
</c:otherwise>
</c:choose>
</table>
<font color="white">${lastIndex+1}</font>
</jsp:body>
</a:report>
<script type="text/javascript" src="/cat/js/appendHostname.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#Cache_report').addClass('active open');
$('#cache_info').addClass('active');
appendHostname(${model.ipToHostnameStr});
});
</script>