added server tracking plus server metrics
This commit is contained in:
parent
80a0a16bab
commit
ca12f4807b
5 changed files with 567 additions and 6 deletions
|
|
@ -14,10 +14,23 @@
|
|||
|
||||
<!-- Sidebar for active players list and filters -->
|
||||
<aside id="sidebar">
|
||||
<!-- Container for sort and filter controls -->
|
||||
<div id="sortButtons" class="sort-buttons"></div>
|
||||
|
||||
<h2 id="activePlayersHeader">Active Mosswart Enjoyers</h2>
|
||||
|
||||
<!-- Server Status -->
|
||||
<div id="serverStatus" class="server-status-container">
|
||||
<h3>Coldeve Server Status</h3>
|
||||
<div class="status-indicator">
|
||||
<span class="status-dot" id="statusDot"></span>
|
||||
<span id="statusText">Checking...</span>
|
||||
</div>
|
||||
<div class="status-details">
|
||||
<div>Players: <span id="playerCount">-</span></div>
|
||||
<div>Latency: <span id="latencyMs">-</span> ms</div>
|
||||
<div>Uptime: <span id="uptime">-</span></div>
|
||||
<div>Last Restart: <span id="lastRestart">-</span></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Total rares counter -->
|
||||
<div id="totalRaresCounter" class="total-rares-counter">
|
||||
🔥 Total Rares: <span id="totalRaresCount">Loading...</span>
|
||||
|
|
@ -60,6 +73,9 @@
|
|||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Container for sort and filter controls -->
|
||||
<div id="sortButtons" class="sort-buttons"></div>
|
||||
|
||||
<!-- Text input to filter active players by name -->
|
||||
<input type="text" id="playerFilter" class="player-filter" placeholder="Filter players..." />
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue