{{ define "status/processes" }} {{template "common/header" }}

进程

此列表包含当前正在运行的系统进程及状态。
{{range $proc := $.processes}} {{end}}
PID 所有者 命令 CPU使用率(%) 内存使用率(%)
{{ $proc.Pid }}
{{ $proc.Username }}
{{ $proc.Cmdline }}
{{ $proc.CpuPercent | printf "%.2f" }}%
{{ $proc.MemPercent | printf "%.2f" }}%

{{template "common/footer"}} {{ end }}