Parser pid renew
This commit is contained in:
parent
2958009bc1
commit
d411680b1b
|
@ -3,22 +3,20 @@
|
|||
require_once 'common.php';
|
||||
|
||||
$db = Db::getInstance();
|
||||
|
||||
$rows = $db->getRows($db->q("SELECT status, count(*) as cnt FROM beathaven.queue GROUP BY status"));
|
||||
|
||||
$info = array_fill(0, 3, 0);
|
||||
|
||||
foreach ($rows as $row) {
|
||||
$info[$row['status']] = $row['cnt'];
|
||||
}
|
||||
|
||||
$tmp = exec("ps aux | grep parse_queue");
|
||||
$pid = @file_get_contents('/www/parser_data/pid');
|
||||
$tmp = exec("ps ". $pid);
|
||||
$running = (strpos($tmp, '/opt/local/bin/php') !== false) ? 1 : 0;
|
||||
|
||||
?>
|
||||
<html>
|
||||
<head>
|
||||
<title>BeatHaven</title>
|
||||
<meta http-equiv="refresh" content="5" />
|
||||
<style>
|
||||
body, td {padding:0;margin:0;}
|
||||
body {background-color:#112;}
|
||||
|
@ -29,9 +27,15 @@ body {background-color:#112;}
|
|||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table width="100%" height="100%"><tr><td align="center" valign="middle">
|
||||
<span class="status-1"><?= $info[1] ?></span><span class="status-02"> / <?= $info[0] ?> / <?= $info[2] ?></span>
|
||||
<table width="100%" height="100%">
|
||||
<tr>
|
||||
<td align="center" valign="middle">
|
||||
<div style="float:left;width:100px;height:1;"> </div>
|
||||
<span class="status-1"><?= $info[1] ?></span>
|
||||
<span class="status-02"> / <?= $info[0] ?> / <?= $info[2] ?></span>
|
||||
<span class="running-<?= $running ?>"><?= ($running ? 'running' : 'stopped') ?></span>
|
||||
</td></tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue