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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
<?php
/*
** ZABBIX
** Copyright (C) 2000-2005 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
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program 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 General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
**/
?>
<?php
include "include/config.inc.php";
include "include/classes/graph.inc.php";
$graph=new Graph();
if(isset($_REQUEST["period"]))
{
$graph->setPeriod($_REQUEST["period"]);
}
if(isset($_REQUEST["from"]))
{
$graph->setFrom($_REQUEST["from"]);
}
if(isset($_REQUEST["stime"]))
{
$graph->setSTime($_REQUEST["stime"]);
}
if(isset($_REQUEST["border"]))
{
$graph->setBorder(0);
}
$result=DBselect("select * from graphs where graphid=".$_REQUEST["graphid"]);
$row=DBfetch($result);
$db_hosts = get_hosts_by_graphid($_REQUEST["graphid"]);
$name=$row["name"];
$db_host = DBfetch($db_hosts);
if($db_host)
{
$name = $db_host["host"].":".$name;
}
if(isset($_REQUEST["width"])&&$_REQUEST["width"]>0)
{
$width=$_REQUEST["width"];
}
else
{
$width=$row["width"];
}
if(isset($_REQUEST["height"])&&$_REQUEST["height"]>0)
{
$height=$_REQUEST["height"];
}
else
{
$height=$row["height"];
}
$graph->ShowWorkPeriod($row["show_work_period"]);
$graph->ShowTriggers($row["show_triggers"]);
$graph->setWidth($width);
$graph->setHeight($height);
$graph->setHeader($name);
$graph->setYAxisType($row["yaxistype"]);
$graph->setYAxisMin($row["yaxismin"]);
$graph->setYAxisMax($row["yaxismax"]);
$result=DBselect("select gi.itemid,i.description,gi.color,h.host,gi.drawtype,gi.yaxisside from graphs_items gi,items i,hosts h where gi.itemid=i.itemid and gi.graphid=".$_REQUEST["graphid"]." and i.hostid=h.hostid order by gi.sortorder");
while($row=DBfetch($result))
{
$graph->addItem($row["itemid"], $row["yaxisside"]);
$graph->setColor($row["itemid"], $row["color"]);
$graph->setDrawtype($row["itemid"], $row["drawtype"]);
}
$graph->Draw();
?>
|