2004-06-09 19:15:57 +00:00
|
|
|
<?php
|
2008-08-05 22:43:14 +00:00
|
|
|
// This file is part of BOINC.
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2008 University of California
|
|
|
|
//
|
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2005-02-08 04:38:31 +00:00
|
|
|
|
|
|
|
require_once("../inc/util_ops.inc");
|
|
|
|
|
|
|
|
db_init();
|
2012-01-31 07:21:42 +00:00
|
|
|
admin_page_head("Failure summary by (app version, error)");
|
2004-05-03 22:20:43 +00:00
|
|
|
|
2004-05-06 21:29:15 +00:00
|
|
|
$query_appid = $_GET['appid'];
|
|
|
|
$query_received_time = time() - $_GET['nsecs'];
|
|
|
|
|
|
|
|
$q = new SqlQueryString();
|
|
|
|
$q->process_form_items();
|
|
|
|
|
|
|
|
$main_query = "
|
|
|
|
SELECT
|
2012-01-31 07:21:42 +00:00
|
|
|
app_version_id,
|
|
|
|
app_version.plan_class,
|
2004-05-06 21:29:15 +00:00
|
|
|
case
|
|
|
|
when INSTR(host.os_name, 'Darwin') then 'Darwin'
|
|
|
|
when INSTR(host.os_name, 'Linux') then 'Linux'
|
|
|
|
when INSTR(host.os_name, 'Windows') then 'Windows'
|
|
|
|
when INSTR(host.os_name, 'SunOS') then 'SunOS'
|
2005-02-08 04:38:31 +00:00
|
|
|
when INSTR(host.os_name, 'Solaris') then 'Solaris'
|
|
|
|
when INSTR(host.os_name, 'Mac') then 'Mac'
|
2004-05-06 21:29:15 +00:00
|
|
|
else 'Unknown'
|
|
|
|
end AS OS_Name,
|
|
|
|
exit_status,
|
|
|
|
COUNT(*) AS error_count
|
|
|
|
FROM result
|
2004-11-09 07:54:31 +00:00
|
|
|
left join host on result.hostid = host.id
|
2012-01-01 23:44:48 +00:00
|
|
|
left join app_version on result.app_version_id = app_version.id
|
2004-05-06 21:29:15 +00:00
|
|
|
WHERE
|
2012-01-01 23:44:48 +00:00
|
|
|
result.appid = '$query_appid' and
|
2004-05-06 21:29:15 +00:00
|
|
|
server_state = '5' and
|
2004-11-09 07:54:31 +00:00
|
|
|
outcome = '3' and
|
2004-05-06 21:29:15 +00:00
|
|
|
received_time > '$query_received_time'
|
|
|
|
GROUP BY
|
2012-01-31 07:21:42 +00:00
|
|
|
app_version_id,
|
2004-05-06 21:29:15 +00:00
|
|
|
exit_status
|
2012-01-31 07:21:42 +00:00
|
|
|
order by error_count desc
|
2004-05-06 21:29:15 +00:00
|
|
|
";
|
|
|
|
|
|
|
|
$urlquery = $q->urlquery;
|
2014-09-04 19:00:09 +00:00
|
|
|
$result = _mysql_query($main_query);
|
2004-05-06 21:29:15 +00:00
|
|
|
|
2012-01-30 23:57:18 +00:00
|
|
|
start_table();
|
|
|
|
table_header(
|
2012-01-31 07:21:42 +00:00
|
|
|
"App version", "Exit Status", "Error Count"
|
2012-01-30 23:57:18 +00:00
|
|
|
);
|
2004-05-06 21:29:15 +00:00
|
|
|
|
2014-09-04 19:00:09 +00:00
|
|
|
while ($res = _mysql_fetch_object($result)) {
|
2004-05-06 21:29:15 +00:00
|
|
|
$exit_status_condition = "exit_status=$res->exit_status";
|
2012-01-30 23:57:18 +00:00
|
|
|
table_row(
|
2013-08-16 18:59:46 +00:00
|
|
|
app_version_desc($res->app_version_id),
|
2012-01-30 23:57:18 +00:00
|
|
|
link_results(
|
2013-08-16 19:20:40 +00:00
|
|
|
exit_status_string($res->exit_status),
|
|
|
|
$urlquery,
|
|
|
|
"$exit_status_condition",
|
|
|
|
""
|
2012-01-30 23:57:18 +00:00
|
|
|
),
|
|
|
|
$res->error_count
|
|
|
|
);
|
2004-05-06 21:29:15 +00:00
|
|
|
}
|
2014-09-04 19:00:09 +00:00
|
|
|
_mysql_free_result($result);
|
2004-05-06 21:29:15 +00:00
|
|
|
|
2012-01-30 23:57:18 +00:00
|
|
|
end_table();
|
2004-05-06 21:29:15 +00:00
|
|
|
|
2005-02-08 04:38:31 +00:00
|
|
|
admin_page_tail();
|
2004-05-03 22:20:43 +00:00
|
|
|
|
2008-08-05 22:43:14 +00:00
|
|
|
$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit
|
2004-06-09 19:15:57 +00:00
|
|
|
?>
|