mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-25 15:41:06 +00:00
d844a8f89f
This way the test suite will be happy, and we won't have extraneous `<div>` tags in the rendered page.
30 lines
991 B
HTML
30 lines
991 B
HTML
<html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1">
|
|
<head>
|
|
<title>Tahoe-LAFS - Operational Statistics</title>
|
|
<link href="/tahoe.css" rel="stylesheet" type="text/css"/>
|
|
<link href="/icon.png" rel="shortcut icon" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Operational Statistics</h1>
|
|
|
|
<h2>General</h2>
|
|
|
|
<ul>
|
|
<li>Load Average: <t:transparent t:render="load_average" /></li>
|
|
<li>Peak Load: <t:transparent t:render="peak_load" /></li>
|
|
<li>Files Uploaded (immutable): <t:transparent t:render="uploads" /></li>
|
|
<li>Files Downloaded (immutable): <t:transparent t:render="downloads" /></li>
|
|
<li>Files Published (mutable): <t:transparent t:render="publishes" /></li>
|
|
<li>Files Retrieved (mutable): <t:transparent t:render="retrieves" /></li>
|
|
</ul>
|
|
|
|
<h2>Raw Stats:</h2>
|
|
<pre t:render="raw" />
|
|
|
|
<div>Return to the <a href="/">Welcome Page</a></div>
|
|
|
|
</body>
|
|
</html>
|