summaryrefslogtreecommitdiffstats
path: root/frontends/php/report1.php
blob: 04e32f36ab3a7079cc0996d7157b2ff822f25d18 (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
<?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";
	$page["title"] = "S_STATUS_OF_ZABBIX";
	$page["file"] = "report1.php";
	show_header($page["title"],0,0);
?>

<?php
	update_profile("web.menu.reports.last",$page["file"]);
?>

<?php
	show_table_header(S_STATUS_OF_ZABBIX_BIG);

	table_begin();

	table_header(array(S_PARAMETER,S_VALUE));

	$stats=get_stats();

	$col=0;
	$str=array("value"=>S_NO,"class"=>"on");
	if( (exec("ps -ef|grep zabbix_server|grep -v grep|wc -l")>0) || (exec("ps -ax|grep zabbix_server|grep -v grep|wc -l")>0) )
	{
		$str=array("value"=>S_YES,"class"=>"off");
	}
	table_row(array(S_ZABBIX_SERVER_IS_RUNNING,$str),$col++);

	table_row(array(S_NUMBER_OF_VALUES_STORED,$stats["history_count"]),$col++);
	table_row(array(S_NUMBER_OF_TRENDS_STORED,$stats["trends_count"]),$col++);
	table_row(array(S_NUMBER_OF_ALARMS,$stats["alarms_count"]),$col++);
	table_row(array(S_NUMBER_OF_ALERTS,$stats["alerts_count"]),$col++);
	table_row(array(S_NUMBER_OF_TRIGGERS_ENABLED_DISABLED,$stats["triggers_count"]."(".$stats["triggers_count_enabled"]."/".$stats["triggers_count_disabled"].")"),$col++);
	table_row(array(S_NUMBER_OF_ITEMS_ACTIVE_TRAPPER,$stats["items_count"]."(".$stats["items_count_active"]."/".$stats["items_count_trapper"]."/".$stats["items_count_not_active"]."/".$stats["items_count_not_supported"].")"),$col++);
	table_row(array(S_NUMBER_OF_USERS,$stats["users_count"]),$col++);
	table_row(array(S_NUMBER_OF_HOSTS_MONITORED,$stats["hosts_count"]."(".$stats["hosts_count_monitored"]."/".$stats["hosts_count_not_monitored"]."/".$stats["hosts_count_template"].")"),$col++);

	table_end();
?>

<?php
	show_footer();
?>