a1161e20f3
Improved the noavatar cacheability by constraining them in a range. Improved the noavatar cacheability by serving a small subset from Gosora. Improved the formatting of bytes in the memory analytics pane. Static resources with checksums will now have their caches expire in a week rather than a day. Tweaked the padding on the sub_heads on Nox. Moved a block of CSS out of a template and into panel.css in Tempra Simple and Shadow. Added the panel_themes_menus_items_suffix phrase. Added the DisableNoavatarRange config setting. Added the DisableDefaultNoavatar config setting.
46 lines
2.7 KiB
HTML
46 lines
2.7 KiB
HTML
<div class="colstack_item colstack_head">
|
|
<div class="rowitem"><h1>{{lang "panel_debug_head"}}</h1></div>
|
|
</div>
|
|
<div id="panel_debug" class="colstack_grid">
|
|
<div class="grid_item grid_stat grid_stat_head"><span>{{lang "panel_debug_uptime_label"}}</span></div>
|
|
<div class="grid_item grid_stat grid_stat_head"><span>{{lang "panel_debug_go_version_label"}}</span></div>
|
|
<div class="grid_item grid_stat grid_stat_head"><span>{{lang "panel_debug_database_version_label"}}</span></div>
|
|
|
|
<div class="grid_item grid_stat"><span>{{.Uptime}}</span></div>
|
|
<div class="grid_item grid_stat"><span>{{.GoVersion}}</span></div>
|
|
<div class="grid_item grid_stat"><span>{{.DBVersion}}</span></div>
|
|
|
|
|
|
<div class="grid_item grid_stat grid_stat_head"><span>{{lang "panel_debug_open_database_connections_label"}}</span></div>
|
|
<div class="grid_item grid_stat grid_stat_head"><span>{{lang "panel_debug_adapter_label"}}</span></div>
|
|
{{/** TODO: Use this for active database connections when Go 1.11 lands **/}}
|
|
<div class="grid_item grid_stat grid_stat_head"><span>???</span></div>
|
|
|
|
<div class="grid_item grid_stat"><span>{{.OpenConns}}</span></div>
|
|
<div class="grid_item grid_stat"><span>{{.DBAdapter}}</span></div>
|
|
<div class="grid_item grid_stat"><span>?</span></div>
|
|
|
|
<div class="grid_item grid_stat grid_stat_head"><span>{{lang "panel_debug_goroutine_count_label"}}</span></div>
|
|
<div class="grid_item grid_stat grid_stat_head"><span>{{lang "panel_debug_cpu_count_label"}}</span></div>
|
|
<div class="grid_item grid_stat grid_stat_head"><span>HeapAlloc</span></div>
|
|
|
|
<div class="grid_item grid_stat"><span>{{.Goroutines}}</span></div>
|
|
<div class="grid_item grid_stat"><span>{{.CPUs}}</span></div>
|
|
<div class="grid_item grid_stat"><span>{{.MemStats.HeapAlloc}}</span></div>
|
|
|
|
<div class="grid_item grid_stat grid_stat_head"><span>HeapSys</span></div>
|
|
<div class="grid_item grid_stat grid_stat_head"><span>HeapIdle</span></div>
|
|
<div class="grid_item grid_stat grid_stat_head"><span>HeapObjects</span></div>
|
|
|
|
<div class="grid_item grid_stat"><span>{{.MemStats.HeapSys}}</span></div>
|
|
<div class="grid_item grid_stat"><span>{{.MemStats.HeapIdle}}</span></div>
|
|
<div class="grid_item grid_stat"><span>{{.MemStats.HeapObjects}}</span></div>
|
|
|
|
<div class="grid_item grid_stat grid_stat_head"><span>???</span></div>
|
|
<div class="grid_item grid_stat grid_stat_head"><span>???</span></div>
|
|
<div class="grid_item grid_stat grid_stat_head"><span>StackInuse</span></div>
|
|
|
|
<div class="grid_item grid_stat"><span>?</span></div>
|
|
<div class="grid_item grid_stat"><span>?</span></div>
|
|
<div class="grid_item grid_stat"><span>{{.MemStats.StackInuse}}</span></div>
|
|
</div> |