From 64d2ad28cd35462e60b82c7bbef3edbde55b1cee Mon Sep 17 00:00:00 2001 From: hugetoad Date: Wed, 5 Jun 2002 08:48:43 +0000 Subject: Different improvements. git-svn-id: svn://svn.zabbix.com/trunk@403 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/tr_status.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'frontends/php/tr_status.php') diff --git a/frontends/php/tr_status.php b/frontends/php/tr_status.php index 46e4c366..fdf81e34 100644 --- a/frontends/php/tr_status.php +++ b/frontends/php/tr_status.php @@ -215,11 +215,11 @@ if($onlytrue=='true') { - $sql="select t.priority,count(*) from triggers t,hosts h,items i,functions f where t.value=1 and t.status=0 and f.itemid=i.itemid and h.hostid=i.hostid and t.triggerid=f.triggerid and t.description $select_cond and i.status in (0,2) $cond group by 1"; + $sql="select t.priority,count(*) from triggers t,hosts h,items i,functions f where t.value=1 and t.status=0 and f.itemid=i.itemid and h.hostid=i.hostid and h.status in (0,2) and t.triggerid=f.triggerid and t.description $select_cond and i.status in (0,2) $cond group by 1"; } else { - $sql="select t.priority,count(*) from triggers t,hosts h,items i,functions f where f.itemid=i.itemid and h.hostid=i.hostid and t.triggerid=f.triggerid and t.description $select_cond and i.status in (0,2) $cond group by 1"; + $sql="select t.priority,count(*) from triggers t,hosts h,items i,functions f where f.itemid=i.itemid and h.hostid=i.hostid and t.triggerid=f.triggerid and t.status=0 and h.status in (0,2) and t.description $select_cond and i.status in (0,2) $cond group by 1"; } $result=DBselect($sql); $p0=$p1=$p2=$p3=$p4=$p5=0; @@ -272,7 +272,7 @@ if($compact!='true') {echo "
Expression";} echo ""; - echo "Status"; + echo "Value"; if(!isset($sort)||(isset($sort) && $sort=="priority")) { @@ -335,11 +335,11 @@ if($onlytrue=='true') { - $result=DBselect("select distinct t.triggerid,t.status,t.description,t.expression,t.priority,t.lastchange,t.comments,t.url,t.value from triggers t,hosts h,items i,functions f where t.value=1 and t.status=0 and f.itemid=i.itemid and h.hostid=i.hostid and t.description $select_cond and t.triggerid=f.triggerid and i.status in (0,2) $cond $sort"); + $result=DBselect("select distinct t.triggerid,t.status,t.description,t.expression,t.priority,t.lastchange,t.comments,t.url,t.value from triggers t,hosts h,items i,functions f where t.value=1 and t.status=0 and f.itemid=i.itemid and h.hostid=i.hostid and t.description $select_cond and t.triggerid=f.triggerid and i.status in (0,2) and h.status in (0,2) $cond $sort"); } else { - $result=DBselect("select distinct t.triggerid,t.status,t.description,t.expression,t.priority,t.lastchange,t.comments,t.url,t.value from triggers t,hosts h,items i,functions f where f.itemid=i.itemid and h.hostid=i.hostid and t.triggerid=f.triggerid and t.description $select_cond and i.status in (0,2) $cond $sort"); + $result=DBselect("select distinct t.triggerid,t.status,t.description,t.expression,t.priority,t.lastchange,t.comments,t.url,t.value from triggers t,hosts h,items i,functions f where f.itemid=i.itemid and h.hostid=i.hostid and t.triggerid=f.triggerid and t.status=0 and t.description $select_cond and i.status in (0,2) and h.status in (0,2) $cond $sort"); } $col=0; while($row=DBfetch($result)) @@ -381,6 +381,8 @@ echo ""; if($row["value"]==0) { echo "FALSE";} + else if($row["value"]==2) + { echo "UNKNOWN"; } else { echo "TRUE"; } -- cgit