This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
web/stat.html

81 lines
2.3 KiB
HTML
Raw Normal View History

2023-02-13 21:02:27 +00:00
<!DOCTYPE html>
2023-02-09 20:29:07 +00:00
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2023-03-10 22:10:25 +00:00
<title>OwlBoard - Statistics</title>
2023-02-12 21:45:41 +00:00
<script src="./js/lib.main.js" defer></script>
<script src="./js/stat.js" defer></script>
2023-02-09 20:29:07 +00:00
</head>
<body style="text-align:center">
<h1>OwlBoard Server Stats</h1>
2023-03-10 22:10:25 +00:00
<h2>Data from: <span id="server_host"></span></h2>
2023-03-10 22:12:03 +00:00
<p>Server Mode: <span id="server_mode"></span></p>
2023-02-09 20:29:07 +00:00
<p>Counters Reset - <span id="time"></span></p>
<table style="margin:auto;text-align:center;">
<tr>
<th>Resource</th>
<th>Hit Count</th>
</tr>
<tr>
<td>Upstream API-LDBWS</td>
2023-02-09 20:29:07 +00:00
<td id="ldbws"></td>
</tr>
<tr>
<td>Upstream API-LDBSVWS</td>
2023-02-09 20:29:07 +00:00
<td id="ldbsvws"></td>
</tr>
<tr>
<td>Upstream API-CORPUS</td>
<td id="apicorpus"></td>
</tr>
2023-02-09 20:29:07 +00:00
<tr>
<td>DB-CORPUS</td>
<td id="corpus"></td>
</tr>
<tr>
<td>DB-stations</td>
2023-02-09 20:29:07 +00:00
<td id="stations"></td>
</tr>
<tr>
<td>DB-users</td>
2023-02-09 20:29:07 +00:00
<td id="users"></td>
</tr>
<tr>
<td>DB-meta</td>
2023-02-09 20:29:07 +00:00
<td id="meta"></td>
</tr>
</table>
<br><br>
2023-03-10 22:10:25 +00:00
<table style="margin:auto;text-align:center;">
2023-02-13 21:02:27 +00:00
<tr>
2023-03-10 22:10:25 +00:00
<th>Software</th>
<th>Version</th>
2023-02-13 21:02:27 +00:00
</tr>
<tr>
2023-03-13 20:40:16 +00:00
<td>
<a href="https://git.fjla.uk/OwlBoard/backend">
backend
</a>
</td>
2023-03-10 22:10:25 +00:00
<td id="ver-bkend"></td>
2023-02-13 21:02:27 +00:00
</tr>
<tr>
2023-03-13 20:40:16 +00:00
<td>
<a href="https://git.fjla.uk/OwlBoard/db-manager">
db-manager
</a>
2023-03-13 20:44:50 +00:00
</td>
2023-03-10 22:10:25 +00:00
<td id="ver-dbman"></td>
2023-02-13 21:02:27 +00:00
</tr>
<tr>
2023-03-13 20:40:16 +00:00
<td>
<a href="https://git.fjla.uk/OwlBoard/web">
web-frontend
</a>
</td>
2023-03-10 22:10:25 +00:00
<td id="ver-web"></td>
2023-02-13 21:02:27 +00:00
</tr>
</table>
2023-03-10 22:10:25 +00:00
<p>The statistics represent hits & queries from all instances in the stack.</p>
2023-02-09 20:29:07 +00:00
</body>
</html>