remove Logs::

This commit is contained in:
Andras Bacsai
2023-07-26 13:33:48 +02:00
parent 9321cc3de8
commit 98d057a2ac
4 changed files with 7 additions and 7 deletions

View File

@@ -48,13 +48,14 @@ class DockerCleanupJob implements ShouldQueue
}
}
} catch (\Exception $e) {
Log::error($e->getMessage());
ray($e->getMessage());
}
}
private function get_disk_usage(Server $server, string $docker_root_filesystem) {
private function get_disk_usage(Server $server, string $docker_root_filesystem)
{
$disk_usage = json_decode(instant_remote_process(['df -hP | awk \'BEGIN {printf"{\"disks\":["}{if($1=="Filesystem")next;if(a)printf",";printf"{\"mount\":\""$6"\",\"size\":\""$2"\",\"used\":\""$3"\",\"avail\":\""$4"\",\"use%\":\""$5"\"}";a++;}END{print"]}";}\''], $server), true);
$mount_point = collect(data_get($disk_usage, 'disks'))->where('mount', $docker_root_filesystem)->first();
return Str::of(data_get($mount_point, 'use%'))->trim()->replace('%', '')->value();
}
}
}