]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame_incremental - html/cgi-bin/system.cgi
Some Fixes for the CGIs not spamming apache logfile.
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / system.cgi
... / ...
CommitLineData
1#!/usr/bin/perl
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2005-2010 IPFire Team #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
21
22use strict;
23
24# enable only the following on debugging purpose
25#use warnings;
26#use CGI::Carp 'fatalsToBrowser';
27
28require '/var/ipfire/general-functions.pl';
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
31require "${General::swroot}/graphs.pl";
32
33my %color = ();
34my %mainsettings = ();
35&General::readhash("${General::swroot}/main/settings", \%mainsettings);
36&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
37
38my @querry = split(/\?/,$ENV{'QUERY_STRING'});
39$querry[0] = '' unless defined $querry[0];
40$querry[1] = 'hour' unless defined $querry[1];
41
42if ( $querry[0] =~ "cpufreq"){
43 print "Content-type: image/png\n\n";
44 binmode(STDOUT);
45 &Graphs::updatecpufreqgraph($querry[1]);
46}elsif ( $querry[0] =~ "cpu"){
47 print "Content-type: image/png\n\n";
48 binmode(STDOUT);
49 &Graphs::updatecpugraph($querry[1]);
50}elsif ( $querry[0] =~ "load"){
51 print "Content-type: image/png\n\n";
52 binmode(STDOUT);
53 &Graphs::updateloadgraph($querry[1]);
54}else{
55 &Header::showhttpheaders();
56 &Header::openpage($Lang::tr{'status information'}, 1, '');
57 &Header::openbigbox('100%', 'left');
58
59 if ( -e "$mainsettings{'RRDLOG'}/collectd/localhost/cpufreq/cpufreq-0.rrd"){
60 &Header::openbox('100%', 'center', "CPU $Lang::tr{'graph'}");
61 &Graphs::makegraphbox("system.cgi","cpufreq","day","325");
62 &Header::closebox();
63 }
64
65 &Header::openbox('100%', 'center', "CPU $Lang::tr{'graph'}");
66 &Graphs::makegraphbox("system.cgi","cpu","day","325");
67 &Header::closebox();
68
69 &Header::openbox('100%', 'center', "Load $Lang::tr{'graph'}");
70 &Graphs::makegraphbox("system.cgi","load","day");
71 &Header::closebox();
72
73 &Header::closebigbox();
74 &Header::closepage();
75}