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-05-06 21:53:43 +01:00
|
|
|
<meta name="robots" content="none">
|
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>
|
2023-02-16 21:40:11 +00:00
|
|
|
<td>Upstream API-LDBWS</td>
|
2023-02-09 20:29:07 +00:00
|
|
|
<td id="ldbws"></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2023-02-16 21:40:11 +00:00
|
|
|
<td>Upstream API-LDBSVWS</td>
|
2023-02-09 20:29:07 +00:00
|
|
|
<td id="ldbsvws"></td>
|
|
|
|
</tr>
|
2023-02-16 21:40:11 +00:00
|
|
|
<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>
|
2023-02-16 21:40:11 +00:00
|
|
|
<td>DB-stations</td>
|
2023-02-09 20:29:07 +00:00
|
|
|
<td id="stations"></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2023-02-16 21:40:11 +00:00
|
|
|
<td>DB-users</td>
|
2023-02-09 20:29:07 +00:00
|
|
|
<td id="users"></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2023-02-16 21:40:11 +00:00
|
|
|
<td>DB-meta</td>
|
2023-02-09 20:29:07 +00:00
|
|
|
<td id="meta"></td>
|
|
|
|
</tr>
|
2023-05-06 21:53:43 +01:00
|
|
|
<tr>
|
|
|
|
<td>DB-pis</td>
|
|
|
|
<td id="pis"></td>
|
|
|
|
</tr>
|
2023-02-09 20:29:07 +00:00
|
|
|
</table>
|
2023-05-07 21:18:04 +01:00
|
|
|
<table style="margin:auto;text-align:center;">
|
|
|
|
<tr>
|
|
|
|
<th>Database</th>
|
|
|
|
<th>Entry Count</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Users</td>
|
|
|
|
<td id="user_count"></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Pending Registrations</td>
|
|
|
|
<td id="reg_count"></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>PIS Codes</td>
|
|
|
|
<td id="pis_count"></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>CORPUS Entries</td>
|
|
|
|
<td id="corpus_count"></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Station Codes</td>
|
|
|
|
<td id="stations_count"></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2023-02-09 20:29:07 +00:00
|
|
|
<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-05-06 21:53:43 +01:00
|
|
|
<td id="ver_str">Unknown</td>
|
2023-02-13 21:02:27 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
2023-05-08 21:36:23 +01:00
|
|
|
<p>The statistics represent hits & queries from all instances in the stack.</p>
|
2023-02-09 20:29:07 +00:00
|
|
|
</body>
|
|
|
|
</html>
|