]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - html/cgi-bin/system.cgi
3 step in tuning 2.3
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / system.cgi
index 6c85e3823807c43d4131618cb2a4e1623d618643..3343ad57ffecdef09aca4eae15599344616f2023 100644 (file)
@@ -43,6 +43,10 @@ if ( $querry[0] =~ "cpu"){
        print "Content-type: image/png\n\n";
        binmode(STDOUT);
        &Graphs::updatecpugraph($querry[1]);
+}elsif ( $querry[0] =~ "cpufreq"){
+       print "Content-type: image/png\n\n";
+       binmode(STDOUT);
+       &Graphs::updatecpufreqgraph($querry[1]);
 }elsif ( $querry[0] =~ "load"){
        print "Content-type: image/png\n\n";
        binmode(STDOUT);
@@ -52,6 +56,12 @@ if ( $querry[0] =~ "cpu"){
        &Header::openpage($Lang::tr{'status information'}, 1, '');
        &Header::openbigbox('100%', 'left');
 
+       if ( -e "$mainsettings{'RRDLOG'}/collectd/localhost/cpufreq/cpufreq-0.rrd"){
+               &Header::openbox('100%', 'center', "CPU $Lang::tr{'graph'}");
+               &Graphs::makegraphbox("system.cgi","cpu","day","325");
+               &Header::closebox();
+       }
+
        &Header::openbox('100%', 'center', "CPU $Lang::tr{'graph'}");
        &Graphs::makegraphbox("system.cgi","cpu","day","325");
        &Header::closebox();