51 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <html lang="en">
 | |
|     <head>
 | |
|         <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|         <title>OwlBoard - STATS</title>
 | |
|         <script src="./js/stat.js"></script>
 | |
|     </head>
 | |
|     <body style="text-align:center">
 | |
|         <h1>OwlBoard Server Stats</h1>
 | |
|         <h2 id="server_host"></h2>
 | |
|         <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>LDBWS</td>
 | |
|             <td id="ldbws"></td>
 | |
|           </tr>
 | |
|           <tr>
 | |
|             <td>LDBSVWS</td>
 | |
|             <td id="ldbsvws"></td>
 | |
|           </tr>
 | |
|           <tr>
 | |
|             <td>DB-CORPUS</td>
 | |
|             <td id="corpus"></td>
 | |
|           </tr>
 | |
|           <tr>
 | |
|             <td>DB-Stations</td>
 | |
|             <td id="stations"></td>
 | |
|           </tr>
 | |
|           <tr>
 | |
|             <td>DB-Users</td>
 | |
|             <td id="users"></td>
 | |
|           </tr>
 | |
|           <tr>
 | |
|             <td>DB-Meta</td>
 | |
|             <td id="meta"></td>
 | |
|           </tr>
 | |
|         </table>
 | |
|         <!--
 | |
|         <h3>LDBWS API Hits: <span id="ldbws"></span></h3>
 | |
|         <h3>LDBSVWS API Hits: <span id="ldbsvws"></span></h3>
 | |
|         <h3>CORPUS DB Lookups: <span id="corpus"></span></h3>
 | |
|         <h3>Station DB Lookups: <span id="stations"></span></h3>
 | |
|         <h3>User DB Queries: <span id="users"></span></h3> -->
 | |
|         <br><br>
 | |
|         <p>The statistics represent hits & queries on all servers attached to the database.
 | |
|            Multiple servers are served by each database server.</p>
 | |
|     </body>
 | |
| </html> |