Experiment with realtime stats of connection load
This commit is contained in:
parent
779bdb4067
commit
e748d79349
6 changed files with 172 additions and 41 deletions
16
www/acp.html
16
www/acp.html
|
|
@ -46,6 +46,7 @@
|
|||
<li id="li_chanloaded"><a href="javascript:void(0)" id="show_chanloaded">Loaded Channels</a></li>
|
||||
<li id="li_actionlog"><a href="javascript:void(0)" id="show_actionlog">Action Log</a></li>
|
||||
<li id="li_stats"><a href="javascript:void(0)" id="show_stats">Server Stats</a></li>
|
||||
<li id="li_connstats"><a href="javascript:void(0)" id="show_connstats">Connection Stats</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
|
@ -249,6 +250,21 @@
|
|||
<h3>Memory Usage (MB)</h3>
|
||||
<canvas id="stat_mem" width="1170" height="400"></canvas>
|
||||
</div>
|
||||
<div class="span12" id="connstats">
|
||||
<h3>Connection Stats</h3>
|
||||
<strong>Note: </strong>Data points for which the frequency average is 0 are not displayed.
|
||||
<br>
|
||||
<button class="btn" id="connstats_refresh">Refresh</button>
|
||||
<table class="table table-bordered table-striped" id="connstats">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Type</th>
|
||||
<th>Param</th>
|
||||
<th>Frequency</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue