加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
proc_state 546 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
if [ "$1" = "autoconf" ]; then
echo 'yes'
exit 0
fi
if [ "$1" = "config" ]; then
cat <<EOF
graph_title Processes
graph_category processes
graph_scale no
graph_vlabel processes
graph_args --base 1000 -l 0
graph_info Number of processes per state
O.label on-cpu
S.label sleeping
R.label runnable
T.label stopped
W.label waiting
Z.label zombie
EOF
exit 0
fi
ps -A -o s | awk '
NR > 1 {
a[$1]++
}
BEGIN {
a["O"] = 0
a["S"] = 0
a["R"] = 0
a["T"] = 0
a["W"] = 0
a["Z"] = 0
}
END {
for(k in a) {
print k ".value", a[k]
}
}'
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化