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-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>
|
|
|
|
</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-10 22:10:25 +00:00
|
|
|
<td>owlboard-backend</td>
|
|
|
|
<td id="ver-bkend"></td>
|
2023-02-13 21:02:27 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2023-03-10 22:10:25 +00:00
|
|
|
<td>dbmanager</td>
|
|
|
|
<td id="ver-dbman"></td>
|
2023-02-13 21:02:27 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2023-03-10 22:10:25 +00:00
|
|
|
<td>owlboard-web</td>
|
|
|
|
<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>
|