Prettify stats.html
This commit is contained in:
parent
c63028d675
commit
14d31ed63f
@ -1,69 +1,95 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<!DOCTYPE html>
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
||||||
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>{package} version {version} run-time statistics</title>
|
<title>Stats [{package} v{version}]</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
|
<style type="text/css">
|
||||||
<style type="text/css" media="screen">
|
body {
|
||||||
<!--/*--><![CDATA[<!--*/
|
color: #eee;
|
||||||
|
background: #110d0d;
|
||||||
th, td
|
text-align: center;
|
||||||
{
|
font: 12pt/1.6 Open Sans, Segoe UI, sans-serif;
|
||||||
text-align: left;
|
}
|
||||||
padding: 0.5em;
|
#container {
|
||||||
border: 1px solid gray;
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
margin: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
#inner {
|
||||||
|
width: 100%;
|
||||||
|
display: table-cell;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
width: auto;
|
||||||
|
margin: auto;
|
||||||
|
height: auto;
|
||||||
|
background: #222020;
|
||||||
|
border: 1px solid #777373;
|
||||||
|
border-spacing: 3px;
|
||||||
|
}
|
||||||
|
th,
|
||||||
|
td {
|
||||||
|
padding: 6px 18px;
|
||||||
|
}
|
||||||
|
th {
|
||||||
|
font-weight: 700;
|
||||||
|
background: linear-gradient(to bottom, #777373, #555151);
|
||||||
|
}
|
||||||
|
.odd {
|
||||||
|
background: #444040;
|
||||||
|
}
|
||||||
|
.even {
|
||||||
|
background: #555151;
|
||||||
|
}
|
||||||
|
.center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.right {
|
||||||
|
text-align: right;
|
||||||
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*]]>*/-->
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
<div id="container">
|
||||||
<h1>{package} version {version} run-time statistics</h1>
|
<div id="inner">
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<th>Name</th>
|
<th colspan="2">{package} v{version} statistics</th>
|
||||||
<th>Value</th>
|
</tr>
|
||||||
|
<tr class="odd">
|
||||||
|
<td class="right">Open connections</td>
|
||||||
|
<td class="center">{opens}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr class="even">
|
||||||
<td>Number of open connections</td>
|
<td class="right">Bad connections</td>
|
||||||
<td>{opens}</td>
|
<td class="center">{badconns}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr class="odd">
|
||||||
<td>Number of requests</td>
|
<td class="right">Denied connections</td>
|
||||||
<td>{reqs}</td>
|
<td class="center">{deniedconns}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr class="even">
|
||||||
<td>Number of bad connections</td>
|
<td class="right">Refused (high load)</td>
|
||||||
<td>{badconns}</td>
|
<td class="center">{refusedconns}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr class="odd">
|
||||||
<td>Number of denied connections</td>
|
<td class="right">Total requests</td>
|
||||||
<td>{deniedconns}</td>
|
<td class="center">{reqs}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td>Number of refused connections due to high load</td>
|
|
||||||
<td>{refusedconns}</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
<hr />
|
</div>
|
||||||
|
|
||||||
<p><em>Generated by <a href="{website}">{package}</a> version {version}.</em></p>
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user