25 lines
882 B
HTML
25 lines
882 B
HTML
{include "admin/layout.html"}
|
|
|
|
{block "content"}
|
|
<h1>Admininistration</h1>
|
|
|
|
<p>
|
|
Welcome to the admin panel! Utilize the tools to the left, or <a href="/">head back</a>. Below
|
|
are the server stats as of loading this page.
|
|
</p>
|
|
|
|
<table>
|
|
<tr><td>Memory Allocated</td> <td>{alloc_mb} MB</td></tr>
|
|
<tr><td>Total Allocated</td> <td>{total_alloc_mb} MB</td></tr>
|
|
<tr><td>System Memory</td> <td>{sys_mb} MB</td></tr>
|
|
<tr><td>Heap Allocated</td> <td>{heap_alloc_mb} MB</td></tr>
|
|
<tr><td>Heap System</td> <td>{heap_sys_mb} MB</td></tr>
|
|
<tr><td>Heap Released</td> <td>{heap_released_mb} MB</td></tr>
|
|
<tr><td>GC Cycles</td> <td>{gc_cycles}</td></tr>
|
|
<tr><td>GC Pause Total</td> <td>{gc_pause_total} ms</td></tr>
|
|
<tr><td>Goroutines</td> <td>{goroutines}</td></tr>
|
|
<tr><td>CPU Cores</td> <td>{cpu_cores}</td></tr>
|
|
<tr><td>Go Version</td> <td>{go_version}</td></tr>
|
|
</table>
|
|
{/block}
|