]>
git.ipfire.org Git - ipfire-2.x.git/blob - html/cgi-bin/hardwaregraphs.cgi
2 ###############################################################################
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2005-2011 IPFire Team #
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. #
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. #
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/>. #
20 ###############################################################################
24 # enable only the following on debugging purpose
26 #use CGI::Carp 'fatalsToBrowser';
28 require '/var/ipfire/general-functions.pl';
29 require "${General::swroot}/lang.pl";
30 require "${General::swroot}/header.pl";
31 require "${General::swroot}/graphs.pl";
34 my %mainsettings = ();
35 &General
::readhash
("${General::swroot}/main/settings", \
%mainsettings);
36 &General
::readhash
("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \
%color);
38 my %sensorsettings = ();
40 my @sensorsgraphs = ();
41 my @sensorsdir = `ls -dA $mainsettings{'RRDLOG'}/collectd/localhost/sensors-*/`;
42 foreach (@sensorsdir){
46 push(@sensorsgraphs,$_);
50 my @querry = split(/\?/,$ENV{'QUERY_STRING'});
51 $querry[0] = '' unless defined $querry[0];
52 $querry[1] = 'hour' unless defined $querry[1];
54 if ( $querry[0] =~ "hwtemp"){
55 print "Content-type: image/png\n\n";
57 &Graphs
::updatehwtempgraph
($querry[1]);
58 }elsif ( $querry[0] =~ "hwfan"){
59 print "Content-type: image/png\n\n";
61 &Graphs
::updatehwfangraph
($querry[1]);
62 }elsif ( $querry[0] =~ "hwvolt"){
63 print "Content-type: image/png\n\n";
65 &Graphs
::updatehwvoltgraph
($querry[1]);
66 }elsif ( $querry[0] =~ "thermaltemp"){
67 print "Content-type: image/png\n\n";
69 &Graphs
::updatethermaltempgraph
($querry[1]);
70 }elsif ( $querry[0] =~ "sd?" ){
71 print "Content-type: image/png\n\n";
73 &Graphs
::updatehddgraph
($querry[0],$querry[1]);
75 &Header
::showhttpheaders
();
76 &Header
::openpage
($Lang::tr
{'harddisk temperature graphs'}, 1, '');
77 &Header
::openbigbox
('100%', 'left');
79 &Header
::getcgihash
(\
%sensorsettings);
81 if ( $sensorsettings{'ACTION'} eq $Lang::tr
{'save'} ) {
82 foreach(@sensorsgraphs){
84 $_ =~ /\/(.*)sensors
-(.*)\
/(.*)\.rrd/;
85 my $label = $2.$3;$label=~ s/-//g;
86 if ( $sensorsettings{'LINE-'.$label} ne "on" ){
87 $sensorsettings{'LINE-'.$label} = 'off';
88 } elsif ($sensorsettings{'LINE-'.$label} eq "on" ){
89 $sensorsettings{'LINE-'.$label} = 'checked';
91 $sensorsettings{'LABEL-'.$label} =~ s/\W//g;
93 &General
::writehash
("${General::swroot}/sensors/settings", \
%sensorsettings);
96 my @disks = `ls -1 /sys/block | grep -E '^sd' | sort | uniq`;
101 my @array = split(/\//,$disk);
103 &Header
::openbox
('100%', 'center', "$array[$#array] $Lang::tr{'graph'}");
104 &Graphs
::makegraphbox
("hardwaregraphs.cgi",$array[$#array],"day");
108 if ( `ls $mainsettings{'RRDLOG'}/collectd/localhost/thermal-thermal_zone* 2>/dev/null` ) {
109 &Header
::openbox
('100%', 'center', "ACPI Thermal-Zone Temp $Lang::tr{'graph'}");
110 &Graphs
::makegraphbox
("hardwaregraphs.cgi","thermaltemp","day");
114 if ( `ls $mainsettings{'RRDLOG'}/collectd/localhost/sensors-*/temperature-* 2>/dev/null` ) {
115 &Header
::openbox
('100%', 'center', "hwtemp $Lang::tr{'graph'}");
116 &Graphs
::makegraphbox
("hardwaregraphs.cgi","hwtemp","day","375");
120 if ( `ls $mainsettings{'RRDLOG'}/collectd/localhost/sensors-*/fanspeed-* 2>/dev/null` ) {
121 &Header
::openbox
('100%', 'center', "hwfan $Lang::tr{'graph'}");
122 &Graphs
::makegraphbox
("hardwaregraphs.cgi","hwfan","day");
126 if ( `ls $mainsettings{'RRDLOG'}/collectd/localhost/sensors-*/voltage-* 2>/dev/null` ) {
127 &Header
::openbox
('100%', 'center', "hwvolt $Lang::tr{'graph'}");
128 &Graphs
::makegraphbox
("hardwaregraphs.cgi","hwvolt","day","435");
132 if ( `ls $mainsettings{'RRDLOG'}/collectd/localhost/sensors-* 2>/dev/null` ) {
135 &Header
::closebigbox
();
136 &Header
::closepage
();
142 &Header
::openbox
('100%', 'center', "$Lang::tr{'mbmon settings'}");
145 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
146 <table width='100%' border='0' cellspacing='5' cellpadding='0' align='center'>
148 <td align='right' width='40%'><b>$Lang::tr{'mbmon display'}</b></td>
149 <td align='left'><b>$Lang::tr{'mbmon label'}</b></td>
154 foreach (@sensorsgraphs){
155 $_ =~ /\/(.*)sensors
-(.*)\
/(.*)\.rrd/;
156 my $label = $2.$3;$label=~ s/-//g;
157 $sensorsettings{'LABEL-'.$label}="$label";
158 $sensorsettings{'LINE-'.$label}="checked";
159 &General
::readhash
("${General::swroot}/sensors/settings", \
%sensorsettings);
160 print("<tr><td align='right'><input type='checkbox' name='LINE-$label' $sensorsettings{'LINE-'.$label} /></td>");
161 print("<td><input type='text' name='LABEL-$label' value='$sensorsettings{'LABEL-'.$label}' size='25' /></td></tr>\n");
166 <td align='center' colspan='2' ><input type='submit' name='ACTION' value=$Lang::tr{'save'} /></td>