]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - html/cgi-bin/graphs.cgi
Add cpufreq graph
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / graphs.cgi
CommitLineData
ac1cfefa 1#!/usr/bin/perl
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
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###############################################################################
ac1cfefa
MT
21
22use strict;
23
24# enable only the following on debugging purpose
cb5e9c6c
CS
25#use warnings;
26#use CGI::Carp 'fatalsToBrowser';
ac1cfefa 27
986e08d9 28require '/var/ipfire/general-functions.pl';
ac1cfefa
MT
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
b05768be 31require "${General::swroot}/graphs.pl";
ac1cfefa
MT
32
33my %cgiparams=();
34my %pppsettings=();
35my %netsettings=();
36my @cgigraphs=();
37my @graphs=();
38my $iface='';
39
40&Header::showhttpheaders();
41
fd0763dc 42my $graphdir = "/srv/web/ipfire/html/graphs";
ac1cfefa
MT
43&General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
44
45$ENV{'QUERY_STRING'} =~ s/&//g;
46@cgigraphs = split(/graph=/,$ENV{'QUERY_STRING'});
47$cgigraphs[1] = '' unless defined $cgigraphs[1];
246c0d71 48$cgigraphs[2] = '' unless defined $cgigraphs[2];
ac1cfefa 49
a332b303 50if ($cgigraphs[1] =~ /(load)/) {&Graphs::updateloadgraph ("hour");&Graphs::updateloadgraph ("week");&Graphs::updateloadgraph ("month");&Graphs::updateloadgraph ("year");}
0950b1ec 51elsif ($cgigraphs[1] =~ /(cpufreq)/) {&Graphs::updatecpufreqgraph ("hour");&Graphs::updatecpufreqgraph ("week");&Graphs::updatecpufreqgraph ("month");&Graphs::updatecpufreqgraph ("year");}
dd8bfcf5
CS
52elsif ($cgigraphs[1] =~ /(cpu)/) {&Graphs::updatecpugraph ("hour");&Graphs::updatecpugraph ("week");&Graphs::updatecpugraph ("month");&Graphs::updatecpugraph ("year");}
53elsif ($cgigraphs[1] =~ /(processes)/) {&Graphs::updateprocessesgraph ("hour");&Graphs::updateprocessesgraph ("week");&Graphs::updateprocessesgraph ("month");&Graphs::updateprocessesgraph ("year");}
54elsif ($cgigraphs[1] =~ /(memory|swap)/) {&Graphs::updatememgraph ("hour");&Graphs::updatememgraph ("week");&Graphs::updatememgraph ("month");&Graphs::updatememgraph ("year");}
55elsif ($cgigraphs[1] =~ /wireless/){ &Graphs::wireless("hour",$cgigraphs[2]); &Graphs::wireless("week",$cgigraphs[2]); &Graphs::wireless("month",$cgigraphs[2]); &Graphs::wireless("year",$cgigraphs[2]); }
56elsif ($cgigraphs[1] =~ /disk/){
b05768be 57 my @devices = `kudzu -qps -c HD | grep device: | cut -d" " -f2 | sort | uniq`;
b05768be
CS
58 foreach (@devices) {
59 my $device = $_;
60 chomp($device);
a332b303 61 &Graphs::updatediskgraph ("hour",$device);
b05768be
CS
62 &Graphs::updatediskgraph ("week",$device);
63 &Graphs::updatediskgraph ("month",$device);
64 &Graphs::updatediskgraph ("year",$device);}}
dd8bfcf5
CS
65elsif ($cgigraphs[2] ne "" ) {&Graphs::updatepinggraph("hour",$cgigraphs[1]);&Graphs::updatepinggraph("week",$cgigraphs[1]);&Graphs::updatepinggraph("month",$cgigraphs[1]);&Graphs::updatepinggraph("year",$cgigraphs[1]);}
66elsif ($cgigraphs[1] =~ /fwhits/) {&Graphs::updatefwhitsgraph("hour");&Graphs::updatefwhitsgraph("week");&Graphs::updatefwhitsgraph("month");&Graphs::updatefwhitsgraph("year");}
67elsif ($cgigraphs[1] =~ /green/ || $cgigraphs[1] =~ /blue/ || $cgigraphs[1] =~ /ipsec/ || $cgigraphs[1] =~ /orange/ || $cgigraphs[1] =~ /ppp/ || $cgigraphs[1] =~ /red/ ) {&Graphs::updateifgraph($cgigraphs[1], "hour");&Graphs::updateifgraph($cgigraphs[1], "week");&Graphs::updateifgraph($cgigraphs[1], "month");&Graphs::updateifgraph($cgigraphs[1], "year");}
b05768be 68
f5d339c8 69if ($cgigraphs[1] =~ /(network|green|blue|orange|red|ppp|ipsec)/ || $cgigraphs[2] ne "") {
ac1cfefa
MT
70 &Header::openpage($Lang::tr{'network traffic graphs'}, 1, '');
71} else {
72 &Header::openpage($Lang::tr{'system graphs'}, 1, '');
73}
6c666a3b 74
ac1cfefa
MT
75&Header::openbigbox('100%', 'left');
76
dd8bfcf5
CS
77if ($cgigraphs[1] =~ /wireless/){
78 my $graphname = $cgigraphs[2];
79 &Header::openbox('100%', 'center', "wireless $graphname $Lang::tr{'graph'}");
80 if (-e "$graphdir/wireless-${graphname}-day.png") {
81 my $ftime = localtime((stat("$graphdir/wireless-${graphname}-day.png"))[9]);
82 print "<center>";
83 print "<b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br /><hr />\n";
84 print "<img alt='' src='/graphs/wireless-${graphname}-hour.png' border='0' /><hr />";
85 print "<img alt='' src='/graphs/wireless-${graphname}-day.png' border='0' /><hr />";
86 print "<img alt='' src='/graphs/wireless-${graphname}-week.png' border='0' /><hr />";
87 print "<img alt='' src='/graphs/wireless-${graphname}-month.png' border='0' /><hr />";
88 print "<img alt='' src='/graphs/wireless-${graphname}-year.png' border='0' />";
89 } else {
90 print $Lang::tr{'no information available'};
91 }
92 &Header::closebox();
93}
94elsif ($cgigraphs[1] =~ /(green|blue|orange|red|ppp|ipsec|cpu|memory|swap|disk|load|fwhits|processes)/ || $cgigraphs[2] ne "") {
ac1cfefa
MT
95 my $graph = $cgigraphs[1];
96 my $graphname = ucfirst(lc($cgigraphs[1]));
97 &Header::openbox('100%', 'center', "$graphname $Lang::tr{'graph'}");
98
99 if (-e "$graphdir/${graph}-day.png") {
100 my $ftime = localtime((stat("$graphdir/${graph}-day.png"))[9]);
101 print "<center>";
102 print "<b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br /><hr />\n";
a332b303 103 print "<img alt='' src='/graphs/${graph}-hour.png' border='0' /><hr />";
e455cafe
MT
104 print "<img alt='' src='/graphs/${graph}-day.png' border='0' /><hr />";
105 print "<img alt='' src='/graphs/${graph}-week.png' border='0' /><hr />";
106 print "<img alt='' src='/graphs/${graph}-month.png' border='0' /><hr />";
107 print "<img alt='' src='/graphs/${graph}-year.png' border='0' />";
ac1cfefa
MT
108 } else {
109 print $Lang::tr{'no information available'};
110 }
111 &Header::closebox();
ac1cfefa
MT
112} elsif ($cgigraphs[1] =~ /network/) {
113 push (@graphs, ('GREEN'));
114 if ($netsettings{'BLUE_DEV'}) {
115 push (@graphs, ('BLUE')); }
116 if ($netsettings{'ORANGE_DEV'}) {
117 push (@graphs, ('ORANGE')); }
118 push (@graphs, ("RED"));
246c0d71 119 push (@graphs, ('gateway'));
ac1cfefa
MT
120
121 foreach my $graphname (@graphs) {
122 &Header::openbox('100%', 'center', "$graphname $Lang::tr{'graph'}");
123
124 if (-e "$graphdir/${graphname}-day.png") {
125 my $ftime = localtime((stat("$graphdir/${graphname}-day.png"))[9]);
126 print "<center><b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
127 print "<a href='/cgi-bin/graphs.cgi?graph=$graphname'>";
e455cafe 128 print "<img alt='' src='/graphs/${graphname}-day.png' border='0' />";
ac1cfefa
MT
129 print "</a>";
130 } else {
131 print $Lang::tr{'no information available'};
132 }
133 print "<br />\n";
134 &Header::closebox();
135 }
ac1cfefa
MT
136}
137
19f5a6cc 138print "<div align='center'><table width='80%'><tr><td align='center'>";
0950b1ec 139if ( $cgigraphs[1] eq "cpu" || $cgigraphs[1] eq "cpufreq" || $cgigraphs[1] eq "load" ) { print "<a href='/cgi-bin/system.cgi'>"; }
19f5a6cc 140elsif ( $cgigraphs[1] eq "memory" || $cgigraphs[1] eq "swap" ) { print "<a href='/cgi-bin/memory.cgi'>"; }
a2b2eea2 141elsif ( $cgigraphs[1] eq "processes" ) { print "<a href='/cgi-bin/services.cgi'>"; }
19f5a6cc 142elsif ( $cgigraphs[1] =~ /disk/ ) { print "<a href='/cgi-bin/media.cgi'>"; }
f5d339c8 143elsif ( $cgigraphs[1] =~ /red/ || $cgigraphs[1] =~ /ppp/ || $cgigraphs[1] =~ /ipsec/ ) { print "<a href='/cgi-bin/network.cgi?network=red'>"; }
dd8bfcf5 144elsif ( $cgigraphs[1] =~ /green/ || $cgigraphs[1] =~ /blue/ || $cgigraphs[1] =~ /orange/ || $cgigraphs[1] =~ /wireless/ ) { print "<a href='/cgi-bin/network.cgi?network=internal'>"; }
246c0d71 145elsif ( $cgigraphs[1] eq "fwhits" || $cgigraphs[2] ne "" ) { print "<a href='/cgi-bin/network.cgi?network=other'>"; }
19f5a6cc
CS
146print "$Lang::tr{'back'}</a></td></tr></table></div>\n";
147
ac1cfefa
MT
148&Header::closebigbox();
149&Header::closepage();