summaryrefslogtreecommitdiffstats
path: root/frontends/php/report2.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-12-07 12:36:48 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-12-07 12:36:48 +0000
commitc3fe2c6239d8e04709e97ac288fb97b24b563fcd (patch)
tree5934d4ce39605f93e20c1b99fe807af6219f6a83 /frontends/php/report2.php
parent1dcf65cdc43a07ecfe0c915056f1635fda709351 (diff)
downloadzabbix-c3fe2c6239d8e04709e97ac288fb97b24b563fcd.tar.gz
zabbix-c3fe2c6239d8e04709e97ac288fb97b24b563fcd.tar.xz
zabbix-c3fe2c6239d8e04709e97ac288fb97b24b563fcd.zip
- [DEV-59] improved Availability Reports (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5145 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/report2.php')
-rw-r--r--frontends/php/report2.php180
1 files changed, 78 insertions, 102 deletions
diff --git a/frontends/php/report2.php b/frontends/php/report2.php
index 502b83d4..67beba37 100644
--- a/frontends/php/report2.php
+++ b/frontends/php/report2.php
@@ -1,7 +1,7 @@
<?php
/*
** ZABBIX
-** Copyright (C) 2000-2005 SIA Zabbix
+** Copyright (C) 2000-2008 SIA Zabbix
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
@@ -19,163 +19,139 @@
**/
?>
<?php
- require_once "include/config.inc.php";
- require_once "include/hosts.inc.php";
+ require_once 'include/config.inc.php';
+ require_once 'include/hosts.inc.php';
+ require_once 'include/reports.inc.php';
- $page["title"] = "S_AVAILABILITY_REPORT";
- $page["file"] = "report2.php";
- $page['hist_arg'] = array('groupid','hostid');
+ $page['title'] = 'S_AVAILABILITY_REPORT';
+ $page['file'] = 'report2.php';
+ $page['hist_arg'] = array('config','groupid','hostid','tpl_triggerid');
-include_once "include/page_header.php";
+include_once 'include/page_header.php';
?>
<?php
// VAR TYPE OPTIONAL FLAGS VALIDATION EXCEPTION
$fields=array(
- "groupid"=> array(T_ZBX_INT, O_OPT, P_SYS, DB_ID, NULL),
- "hostid"=> array(T_ZBX_INT, O_OPT, P_SYS, DB_ID, NULL),
- "triggerid"=> array(T_ZBX_INT, O_OPT, P_SYS|P_NZERO, DB_ID, NULL)
+ 'config'=> array(T_ZBX_INT, O_OPT, P_SYS, IN('0,1'), NULL),
+ 'groupid'=> array(T_ZBX_INT, O_OPT, P_SYS, DB_ID, NULL),
+ 'hostid'=> array(T_ZBX_INT, O_OPT, P_SYS, DB_ID, NULL),
+ 'tpl_triggerid'=> array(T_ZBX_INT, O_OPT, P_SYS, DB_ID, NULL),
+
+ 'triggerid'=> array(T_ZBX_INT, O_OPT, P_SYS|P_NZERO, DB_ID, NULL)
);
check_fields($fields);
-// validate_group_with_host(PERM_READ_LIST,array("always_select_first_host","monitored_hosts","with_items"));
- $options = array("allow_all_hosts","always_select_first_host","monitored_hosts","with_items");
- if(!$ZBX_WITH_SUBNODES) array_push($options,"only_current_node");
-
- validate_group_with_host(PERM_READ_LIST,$options);
-?>
-<?php
- $r_form = new CForm();
- $r_form->SetMethod('get');
-
- $cmbGroup = new CComboBox("groupid",$_REQUEST["groupid"],"submit()");
- $cmbHosts = new CComboBox("hostid",$_REQUEST["hostid"],"submit()");
+ $config = get_request('config',get_profile('web.avail_report.config',0));
+ update_profile('web.avail_report.config',$config);
- $cmbGroup->AddItem(0,S_ALL_SMALL);
- $cmbHosts->AddItem(0,S_ALL_SMALL);
-
- $availiable_hosts = get_accessible_hosts_by_user($USER_DETAILS,PERM_READ_ONLY, null, null, get_current_nodeid());
-
- $result=DBselect("select distinct g.groupid,g.name from groups g, hosts_groups hg, hosts h, items i ".
- " where h.hostid in (".$availiable_hosts.") ".
- " and hg.groupid=g.groupid and h.status=".HOST_STATUS_MONITORED.
- " and h.hostid=i.hostid and hg.hostid=h.hostid and i.status=".ITEM_STATUS_ACTIVE.
- " order by g.name");
-
-
- while($row=DBfetch($result))
- {
- $cmbGroup->AddItem(
- $row['groupid'],
- get_node_name_by_elid($row['groupid']).$row['name']
- );
+ if(0 == $config){
+ $options = array('allow_all_hosts','always_select_first_host','monitored_hosts','with_items');
}
- $r_form->AddItem(array(S_GROUP.SPACE,$cmbGroup));
-
- if($_REQUEST["groupid"] > 0)
- {
- $sql="select h.hostid,h.host from hosts h,items i,hosts_groups hg where h.status=".HOST_STATUS_MONITORED.
- " and h.hostid=i.hostid and hg.groupid=".$_REQUEST["groupid"]." and hg.hostid=h.hostid".
- " and h.hostid in (".$availiable_hosts.") ".
- " group by h.hostid,h.host order by h.host";
- }
- else
- {
- $sql="select h.hostid,h.host from hosts h,items i where h.status=".HOST_STATUS_MONITORED.
- " and h.hostid=i.hostid and h.hostid in (".$availiable_hosts.") ".
- " group by h.hostid,h.host order by h.host";
- }
- $result=DBselect($sql);
- while($row=DBfetch($result))
- {
- $cmbHosts->AddItem(
- $row['hostid'],
- get_node_name_by_elid($row['hostid']).$row['host']
- );
+ else{
+ $options = array('allow_all_hosts','always_select_first_host','templated_hosts','with_items');
}
-
- $r_form->AddItem(array(SPACE.S_HOST.SPACE,$cmbHosts));
- show_table_header(S_AVAILABILITY_REPORT_BIG, $r_form);
-
+
+ if(!$ZBX_WITH_SUBNODES) array_push($options,'only_current_node');
+
+ validate_group_with_host(PERM_READ_LIST,$options);
+?>
+<?php
+$available_hosts = get_accessible_hosts_by_user($USER_DETAILS,PERM_READ_ONLY, null, null, get_current_nodeid());
+show_report2_header($config,$available_hosts);
?>
<?php
if( isset($_REQUEST['triggerid']) &&
- !($trigger_data = DBfetch(DBselect('select distinct t.*, h.host from triggers t, functions f, items i, hosts h '.
- ' where t.triggerid='.$_REQUEST['triggerid'].
- ' and t.triggerid=f.triggerid and f.itemid=i.itemid and i.hostid=h.hostid '
+ !($trigger_data = DBfetch(DBselect('SELECT DISTINCT t.*, h.host, h.hostid '.
+ ' FROM triggers t, functions f, items i, hosts h '.
+ ' WHERE t.triggerid='.$_REQUEST['triggerid'].
+ ' AND t.triggerid=f.triggerid '.
+ ' AND f.itemid=i.itemid '.
+ ' AND i.hostid=h.hostid '
))) )
{
unset($_REQUEST['triggerid']);
}
+
- if(isset($_REQUEST["triggerid"]))
- {
+ if(isset($_REQUEST['triggerid'])){
if(!check_right_on_trigger_by_triggerid(PERM_READ_ONLY, $_REQUEST['triggerid']))
access_deny();
- show_table_header(array(new CLink($row["host"],"?hostid=".$row["hostid"])," : \"",expand_trigger_description_by_data($trigger_data),"\""));
+ show_table_header(array(new CLink($trigger_data['host'],'?hostid='.$trigger_data['hostid']),' : "',expand_trigger_description_by_data($trigger_data),'"'));
- $table = new CTableInfo(null,"graph");
- $table->AddRow(new CImg("chart4.php?triggerid=".$_REQUEST["triggerid"]));
+ $table = new CTableInfo(null,'graph');
+ $table->AddRow(new CImg('chart4.php?triggerid='.$_REQUEST['triggerid']));
$table->Show();
}
- else if(isset($_REQUEST["hostid"]))
- {
+ else if(isset($_REQUEST['hostid'])){
+ if(0 == $config){
+ $sql_cond = ' AND h.status='.HOST_STATUS_MONITORED;
+ }
+ else{
+ $sql_cond = ' AND h.status='.HOST_STATUS_TEMPLATE;
+ if(isset($_REQUEST['tpl_triggerid']) && ($_REQUEST['tpl_triggerid'] > 0))
+ $sql_cond.= ' AND t.triggerid='.$_REQUEST['tpl_triggerid'];
+ }
+
if($_REQUEST['hostid'] > 0){
- $row = DBfetch(DBselect('select host from hosts where hostid='.$_REQUEST['hostid']));
+ $row = DBfetch(DBselect('SELECT host FROM hosts WHERE hostid='.$_REQUEST['hostid']));
show_table_header($row['host']);
- $result = DBselect('select distinct h.hostid,h.host,t.triggerid,t.expression,t.description,t.value '.
- ' from triggers t,hosts h,items i,functions f '.
- ' where f.itemid=i.itemid '.
- ' and h.hostid=i.hostid '.
- ' and t.status='.TRIGGER_STATUS_ENABLED.
- ' and t.triggerid=f.triggerid '.
- ' and h.hostid='.$_REQUEST['hostid'].
- ' and h.status='.HOST_STATUS_MONITORED.
- ' and '.DBin_node('t.triggerid').
- ' and i.status='.ITEM_STATUS_ACTIVE.
- ' order by h.host, t.description');
+ $result = DBselect('SELECT DISTINCT h.hostid,h.host,t.triggerid,t.expression,t.description,t.value '.
+ ' FROM triggers t,hosts h,items i,functions f '.
+ ' WHERE f.itemid=i.itemid '.
+ ' AND h.hostid=i.hostid '.
+ ' AND t.status='.TRIGGER_STATUS_ENABLED.
+ ' AND t.triggerid=f.triggerid '.
+ ' AND h.hostid='.$_REQUEST['hostid'].
+ ' AND '.DBin_node('t.triggerid').
+ ' AND i.status='.ITEM_STATUS_ACTIVE.
+ $sql_cond.
+ ' ORDER BY h.host, t.description');
}
else{
- show_table_header(S_ALL_HOSTS_BIG);
-
+ if(isset($_REQUEST['tpl_triggerid']) && ($_REQUEST['tpl_triggerid'] > 0))
+ show_table_header(expand_trigger_description($_REQUEST['tpl_triggerid']));
+
+ else
+ show_table_header(S_ALL_HOSTS_BIG);
+
$result = DBselect('SELECT DISTINCT h.hostid,h.host,t.triggerid,t.expression,t.description,t.value '.
' FROM triggers t,hosts h,items i,functions f '.
' WHERE f.itemid=i.itemid '.
' AND h.hostid=i.hostid '.
' AND t.status='.TRIGGER_STATUS_ENABLED.
' AND t.triggerid=f.triggerid '.
- ' AND h.status='.HOST_STATUS_MONITORED.
- ' AND h.hostid in ('.$availiable_hosts.')'.
+ ' AND h.hostid in ('.$available_hosts.')'.
' AND '.DBin_node('t.triggerid').
' AND i.status='.ITEM_STATUS_ACTIVE.
+ $sql_cond.
' ORDER BY h.host, t.description');
}
$accessible_hosts = get_accessible_hosts_by_user($USER_DETAILS,PERM_READ_ONLY);
-
+
$table = new CTableInfo();
$table->setHeader(array(is_show_subnodes() ? S_NODE : null,($_REQUEST['hostid'] == 0)?S_HOST:NULL, S_NAME,S_TRUE,S_FALSE,S_UNKNOWN,S_GRAPH));
- while($row=DBfetch($result))
- {
+ while($row=DBfetch($result)){
if(!check_right_on_trigger_by_triggerid(null, $row['triggerid'], $accessible_hosts))
continue;
- $availability = calculate_availability($row["triggerid"],0,0);
+ $availability = calculate_availability($row['triggerid'],0,0);
- $true = new CSpan(sprintf("%.4f%%",$availability["true"]), "on");
- $false = new CSpan(sprintf("%.4f%%",$availability["false"]), "off");
- $unknown= new CSpan(sprintf("%.4f%%",$availability["unknown"]), "unknown");
- $actions= new CLink(S_SHOW,"report2.php?hostid=".$_REQUEST["hostid"]."&triggerid=".$row["triggerid"],"action");
+ $true = new CSpan(sprintf("%.4f%%",$availability['true']), 'on');
+ $false = new CSpan(sprintf("%.4f%%",$availability['false']), 'off');
+ $unknown= new CSpan(sprintf("%.4f%%",$availability['unknown']), 'unknown');
+ $actions= new CLink(S_SHOW,'report2.php?hostid='.$_REQUEST['hostid'].'&triggerid='.$row['triggerid'],'action');
$table->addRow(array(
get_node_name_by_elid($row['hostid']),
($_REQUEST['hostid'] == 0)?$row['host']:NULL,
new CLink(
expand_trigger_description_by_data($row),
- "events.php?triggerid=".$row["triggerid"],"action"),
+ 'events.php?triggerid='.$row['triggerid'],'action'),
$true,
$false,
$unknown,
@@ -187,6 +163,6 @@ include_once "include/page_header.php";
?>
<?php
- include_once "include/page_footer.php";
+ include_once 'include/page_footer.php';
?>