mirror of
https://github.com/pstadler/metrics.sh.git
synced 2025-02-28 05:49:12 -05:00
9 lines
153 B
Bash
9 lines
153 B
Bash
#!/bin/sh
|
|
|
|
collect () {
|
|
report $(ps axo %cpu | awk '{ sum+=$1 } END { printf "%.1f\n", sum }' | tail -n 1)
|
|
}
|
|
|
|
docs () {
|
|
echo "CPU load percentage."
|
|
} |