MohsenAbrishami /
stethoscope
| 1 | <?php |
||
| 2 | |||
| 3 | namespace MohsenAbrishami\Stethoscope\Services; |
||
| 4 | |||
| 5 | class Cpu implements ServiceInterface |
||
| 6 | { |
||
| 7 | public function check(): string |
||
| 8 | { |
||
| 9 | return number_format(exec(" grep 'cpu ' /proc/stat | awk '{print ($2+$4)*100/($2+$4+$5)}' "), 2); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 10 | } |
||
| 11 | } |
||
| 12 |