mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-22 04:44:17 +00:00
Agent-Logs-Url: https://github.com/go-gitea/gitea/sessions/e24729b0-31b3-41ea-8564-c6f424554821 Co-authored-by: wxiaoguang <2114189+wxiaoguang@users.noreply.github.com>
23 lines
646 B
Handlebars
23 lines
646 B
Handlebars
{{template "admin/layout_head" (dict "pageClass" "admin monitor")}}
|
|
<div class="admin-setting-content">
|
|
|
|
{{template "admin/trace_tabs" .}}
|
|
|
|
<h4 class="ui top attached header">
|
|
{{printf "%d Goroutines" .GoroutineCount}}{{/* Goroutine is non-translatable*/}}
|
|
{{- if .ProcessCount -}}, {{ctx.Locale.Tr "admin.monitor.processes_count" .ProcessCount}}{{- end -}}
|
|
</h4>
|
|
|
|
{{if .ProcessStacks}}
|
|
<div class="ui attached segment">
|
|
<div class="ui relaxed divided list">
|
|
{{range .ProcessStacks}}
|
|
{{template "admin/stacktrace-row" dict "Process" . "root" $}}
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
|
|
{{template "admin/layout_footer" .}}
|