.
require_once("../inc/util_ops.inc");
db_init();
admin_page_head("Failures grouped by app version and host");
$query_appid = $_GET['appid'];
$query_received_time = time() - $_GET['nsecs'];
$main_query = "
SELECT
app_version_id,
app_version_num,
hostid AS Host_ID,
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'
when INSTR(host.os_name, 'Solaris') then 'Solaris'
when INSTR(host.os_name, 'Mac') then 'Mac'
else 'Unknown'
end AS OS_Name,
case
when INSTR(host.os_name, 'Linux') then
case
when RIGHT(host.os_version, 1) = ']' then REVERSE(SUBSTR(REVERSE(host.os_version), 2, INSTR(REVERSE(host.os_version), '[') - 2))
when INSTR(LEFT(host.os_version, 10), '-') then LEFT(host.os_version, (INSTR(LEFT(host.os_version, 10), '-') - 1))
else LEFT(host.os_version, 8)
end
else host.os_version
end AS OS_Version,
host.nresults_today AS Results_Today,
COUNT(*) AS error_count
FROM result
left join host on result.hostid = host.id
WHERE
appid = '$query_appid' and
server_state = '5' and
outcome = '3' and
received_time > '$query_received_time'
GROUP BY
app_version_id,
hostid
order by error_count desc
";
$result = _mysql_query($main_query);
start_table();
table_header(
"App version", "Host ID", "OS Version", "Results today",
"Error count"
);
while ($res = _mysql_fetch_object($result)) {
table_row(
app_version_desc($res->app_version_id),
"Host_ID>$res->Host_ID",
$res->OS_Version, $res->Results_Today,
"Host_ID&app_version_id=$res->app_version_id&server_state=5&outcome=3>$res->error_count"
);
}
_mysql_free_result($result);
end_table();
admin_page_tail();
$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit
?>