「psaux|greputilities」の結果を実行してテキストファイルにパイプし、テキストファイルをチャウニングして、Webサービスがファイルを読み取って結果をWebアプリに表示できるようにするシステムスクリプトがあります。
生の結果の例を次に示します。
user 12052 0.2 0.1 137184 13056 ? Ss 10:00 0:00 php /home/user/public_html/utilities/runProcFile.php cust1 cron
user 12054 0.2 0.1 137184 13064 ? Ss 10:00 0:00 php /home/user/public_html/utilities/runProcFile.php cust3 cron
user 12055 0.6 0.1 137844 14220 ? Ss 10:00 0:00 php /home/user/public_html/utilities/runProcFile.php cust4 cron
user 12057 0.2 0.1 137184 13052 ? Ss 10:00 0:00 php /home/user/public_html/utilities/runProcFile.php cust89 cron
user 12058 0.2 0.1 137184 13052 ? Ss 10:00 0:00 php /home/user/public_html/utilities/runProcFile.php cust435 cron
user 12059 0.3 0.1 135112 13000 ? Ss 10:00 0:00 php /home/user/public_html/utilities/runProcFile.php cust16 cron
root 12068 0.0 0.0 106088 1164 pts/1 S+ 10:00 0:00 sh -c ps aux | grep utilities > /home/user/public_html/logs/dashboard/currentlyPosting.txt
root 12070 0.0 0.0 103240 828 pts/1 R+ 10:00 0:00 grep utilities
私のphpスクリプトはこのテキストファイルを解析するので、以下を抽出するだけで済みます(単なる例)。
cust1
cust3
cust4
cust89
cust435
cust16
私はいくつかの異なる不器用な方法を試しましたが、何もうまく機能していないようです。以下にリストした方法は機能しますが、変更時に爆発する行の「スペース」の数が原因で、ゴミを取得することもあります。
public function showProcesses() {
$lines = file(DIR_LOGGER_ROOT . "dashboard/currentlyPosting.txt");
$results = array();
$i = 0;
foreach($lines as $line) {
if (preg_match("/php/i", $line)) {
$userProcess = explode(" ", $line);
if($userProcess[29] != "0:00" && strlen($userProcess[29]) < 20) {
$results[$i] = $userProcess[29];
$i++;
}
}
}
return $results;
}
あなたの何人かはこれのためのエレガントな解決策を投稿できますか?私は物事を行うためのより良い方法を学ぼうとしています、そしてガイダンスをいただければ幸いです。