summaryrefslogtreecommitdiffstats
path: root/frontends/php/report2.html
blob: 5a050486444b42da7479115eb7f1796d6cbdcf86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?
	include "include/config.inc";
	$page["title"] = "Availability report";
	$page["file"] = "report2.html";
	show_header($page["title"],0,0);
?>

<?
	if(!isset($yes))
	{
		echo "<center>";
		echo "<a href=\"report2.html?yes=1\">";
		echo "Click here to run report";
		echo "</a>";
		echo "</center>";
		show_footer();
		exit;
	}

?>

<?
	show_table_header("AVAILABILITY REPORT");
	echo "<br>";
?>

<?

	$result=DBselect("select h.hostid,h.host,t.triggerid,t.expression,t.description,t.istrue from triggers t,hosts h,items i,functions f where f.itemid=i.itemid and h.hostid=i.hostid and t.istrue!=2 and t.triggerid=f.triggerid and h.status in (0,2) and i.status=0 order by h.host,t.lastchange desc, t.description");

	$lasthost="";
	$col=0;
	while($row=DBfetch($result))
	{
		if($lasthost!=$row["host"])
		{
			if($lasthost!="")
			{
				echo "</TABLE><BR>";
			}
			show_table_header($row["host"]);
			echo "<TABLE BORDER=0 COLS=3 WIDTH=\"100%\" BGCOLOR=\"#CCCCCC\" cellspacing=1 cellpadding=3>";
			echo "<TR>";
			echo "<TD><B>Description</B></TD>";
			echo "<TD><B>Expression</B></TD>";
			echo "<TD WIDTH=\"5%\"><B>True (%)</B></TD>";
			echo "<TD WIDTH=\"5%\"><B>False (%)</B></TD>";
			echo "</TR>\n";
		}
		$lasthost=$row["host"];

	        if($col++%2 == 1)	{ echo "<TR BGCOLOR=#DDDDDD>"; }
		else			{ echo "<TR BGCOLOR=#EEEEEE>"; }

		echo "<TD>".$row["description"]."</TD>";
		$description=rawurlencode($row["description"]);

		echo "<TD>".explode_exp($row["expression"],1)."</TD>";
		$availability=calculate_availability($row["triggerid"]);
		echo "<TD>";
		printf("%.4f%%",$availability["true"]);
		echo "</TD>";
		echo "<TD>";
		printf("%.4f%%",$availability["false"]);
		echo "</TD>";
		echo "</TR>\n";
	}
	echo "</table>\n";
?>

<?
	show_footer();
?>