11 lines
401 B
PHP
11 lines
401 B
PHP
<?php
|
|
header("Content-Type: application/json");
|
|
$procs = @shell_exec("pgrep -af playwright 2>&1 | head -5");
|
|
$logs = glob("/tmp/ambre-pw-run-*.log");
|
|
usort($logs, function($a,$b){return filemtime($b)-filemtime($a);});
|
|
echo json_encode([
|
|
"procs" => trim($procs ?: ""),
|
|
"latest_log" => $logs ? basename($logs[0]) : "",
|
|
"latest_size" => $logs ? filesize($logs[0]) : 0,
|
|
], JSON_PRETTY_PRINT);
|