1 | <?php |
||
2 | |||
3 | namespace MohsenAbrishami\Stethoscope\Services; |
||
4 | |||
5 | class Memory implements ServiceInterface |
||
6 | { |
||
7 | public function check(): string |
||
8 | { |
||
9 | return number_format(exec(" free | grep Mem | awk '{print $3/$2 * 100.0}' "), 2); |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
10 | } |
||
11 | } |
||
12 |