mirror of https://github.com/BOINC/boinc.git
64 lines
1.6 KiB
PHP
64 lines
1.6 KiB
PHP
<?php
|
|
|
|
// show summary of results that have been received or timed out recently
|
|
|
|
require_once("util.inc");
|
|
|
|
db_init();
|
|
page_head("Result summary");
|
|
|
|
$server_state = array();
|
|
$outcome = array();
|
|
$client_state = array();
|
|
|
|
$nsecs = $_GET["nsecs"];
|
|
|
|
for ($ss=1; $ss<6; $ss++) {
|
|
$server_state[$ss] = 0;
|
|
}
|
|
for ($ro=0; $ro<6; $ro++) {
|
|
$outcome[$ro] = 0;
|
|
}
|
|
for ($cs=1; $cs<6; $cs++) {
|
|
$client_state[$cs] = 0;
|
|
}
|
|
|
|
$x = $nsecs/3600.;
|
|
echo "Results that have finished in last $x hours\n";
|
|
$y = time() - $nsecs;
|
|
$result = mysql_query("select * from result where received_time > $y");
|
|
while ($res = mysql_fetch_object($result)) {
|
|
$server_state[$res->server_state] += 1;
|
|
if ($res->server_state == 5) {
|
|
$outcome[$res->outcome] += 1;
|
|
if ($res->outcome == 3) {
|
|
$client_state[$res->client_state] += 1;
|
|
}
|
|
}
|
|
}
|
|
mysql_free_result($result);
|
|
|
|
start_table();
|
|
echo "<tr><th>Server state</th><th># results</th></tr>\n";
|
|
for ($ss=1; $ss<6; $ss++) {
|
|
row2(result_server_state_string($ss), $server_state[$ss]);;
|
|
}
|
|
end_table();
|
|
|
|
start_table();
|
|
echo "<tr><th>Outcome of 'Over' results</th><th># results</th></tr>\n";
|
|
for ($ro=0; $ro<6; $ro++) {
|
|
row2(result_outcome_string($ro), $outcome[$ro]);
|
|
}
|
|
end_table();
|
|
|
|
start_table();
|
|
echo "<tr><th>Client state of 'Client error' results</th><th># results</th></tr>\n";
|
|
for ($cs=1; $cs<6; $cs++) {
|
|
row2(result_client_state_string($cs), $client_state[$cs]);
|
|
}
|
|
end_table();
|
|
|
|
page_tail();
|
|
?>
|