Project

General

Profile

Download (2.17 KB) Statistics
| Branch: | Tag: | Revision:
1 7c5833d7 Scott Ullrich
<?php 
2
/*
3
	$Id$
4
	part of m0n0wall (http://m0n0.ch/wall)
5
	
6
	Copyright (C) 2003-2006 Manuel Kasper <mk@neon1.net>.
7 ed2d1343 Renato Botelho
        Copyright (C) 2013-2015 Electric Sheep Fencing, LP
8 7c5833d7 Scott Ullrich
	All rights reserved.
9
	
10
	Redistribution and use in source and binary forms, with or without
11
	modification, are permitted provided that the following conditions are met:
12
	
13
	1. Redistributions of source code must retain the above copyright notice,
14
	   this list of conditions and the following disclaimer.
15
	
16
	2. Redistributions in binary form must reproduce the above copyright
17
	   notice, this list of conditions and the following disclaimer in the
18
	   documentation and/or other materials provided with the distribution.
19
	
20
	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
21
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
22
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
24
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29
	POSSIBILITY OF SUCH DAMAGE.
30
*/
31 1d333258 Scott Ullrich
/*	
32
	pfSense_MODULE:	system
33
*/
34 7c5833d7 Scott Ullrich
35 6b07c15a Matthew Grooms
##|+PRIV
36
##|*IDENT=page-status-cpuload
37
##|*NAME=Status: CPU load page
38
##|*DESCR=Allow access to the 'Status: CPU load' page.
39
##|*MATCH=status_graph_cpu.php*
40
##|-PRIV
41
42 2dc63b3e Carlos Eduardo Ramos
$pgtitle = array(gettext("Status"), gettext("CPU load"));
43 7c5833d7 Scott Ullrich
require("guiconfig.inc");
44
include("head.inc");
45
include("fbegin.inc");
46
47 2dc63b3e Carlos Eduardo Ramos
$pgtitle = gettext("Status: CPU Graph");
48 7c5833d7 Scott Ullrich
49
?>
50
<div align="center">
51
<embed src="graph_cpu.php" type="image/svg+xml"
52
		width="550" height="275" pluginspage="http://www.adobe.com/svg/viewer/install/auto" />
53
</div>
54 8cd558b6 ayvis
<br /><span class="red"><strong><?=gettext("Note"); ?>:</strong></span> <?=gettext("if you can't see the graph, you may have to install the"); ?> <a href="http://www.adobe.com/svg/viewer/install/" target="_blank"><?=gettext("Adobe SVG viewer"); ?></a>.
55 7c5833d7 Scott Ullrich
<?php include("fend.inc"); ?>