]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame_incremental - src/scripts/makegraphs
make.sh: Run "update-contributors"
[people/pmueller/ipfire-2.x.git] / src / scripts / makegraphs
... / ...
CommitLineData
1#!/usr/bin/perl
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2007-2022 IPFire Team <info@ipfire.org> #
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#use warnings;
24
25use RRDs;
26require "/var/ipfire/general-functions.pl";
27require "${General::swroot}/lang.pl";
28
29# Settings
30$ENV{PATH}="/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin";
31my $temp = '';
32my $ERROR;
33my $path_smartctl = "/usr/sbin/smartctl";
34
35my %color = ();
36my %mainsettings = ();
37&General::readhash("${General::swroot}/main/settings", \%mainsettings);
38&General::readhash("/srv/web/ipfire/html/themes/ipfire/include/colors.txt", \%color);
39
40if ( $mainsettings{'RRDLOG'} eq "" ){
41 $mainsettings{'RRDLOG'}="/var/log/rrd";
42 &General::writehash("${General::swroot}/main/settings", \%mainsettings);
43}
44
45sub updatehdddata{
46 my $disk = $_[0];
47 my $standby;
48 my @array = split(/\//,$disk);
49
50 if ( ! -e "$mainsettings{'RRDLOG'}/hddshutdown-".$array[$#array].".rrd"){
51 # database did not exist -> create
52 RRDs::create ("$mainsettings{'RRDLOG'}/hddshutdown-".$array[$#array].".rrd", "--step=300",
53 "DS:standby:GAUGE:600:0:1",
54 "RRA:AVERAGE:0.5:1:576",
55 "RRA:AVERAGE:0.5:6:672",
56 "RRA:AVERAGE:0.5:24:732",
57 "RRA:AVERAGE:0.5:144:1460");
58 $ERROR = RRDs::error;
59 print "Error in RRD::create for hddshutdown-".$array[$#array].": $ERROR\n" if $ERROR;
60 }
61
62 if (-e "/var/run/hddshutdown-".$array[$#array]) {$standby = 1;}
63 else {$standby = 0;}
64
65 RRDs::update ("$mainsettings{'RRDLOG'}/hddshutdown-".$array[$#array].".rrd", "-t", "standby", "N:$standby");
66 $ERROR = RRDs::error;
67 print "Error in RRD::update for hddshutdown-".$array[$#array].": $ERROR\n" if $ERROR;
68
69 if ( ! -e "$mainsettings{'RRDLOG'}/hddtemp-".$array[$#array].".rrd"){
70 # database did not exist -> create
71 RRDs::create ("$mainsettings{'RRDLOG'}/hddtemp-".$array[$#array].".rrd", "--step=300",
72 "DS:temperature:GAUGE:600:0:100",
73 "RRA:AVERAGE:0.5:1:576",
74 "RRA:AVERAGE:0.5:6:672",
75 "RRA:AVERAGE:0.5:24:732",
76 "RRA:AVERAGE:0.5:144:1460");
77 $ERROR = RRDs::error;
78 print "Error in RRD::create for hdd-".$array[$#array].": $ERROR\n" if $ERROR;
79 }
80
81 # Temperaturlesen w�rde die Platte aufwecken!!!
82 if (!$standby){
83 $temp = 0;
84 my $smart_output = '';
85 system("$path_smartctl -iHA /dev/$disk > /var/run/smartctl_out_hddtemp-$disk");
86 if ( -e "/var/run/smartctl_out_hddtemp-".$array[$#array] ){
87 my $hdd_nvme = `grep "NVMe Log" /var/run/smartctl_out_hddtemp-$array[$#array]`;
88 if ( $hdd_nvme !~/NVMe Log/ ) {
89 my $hdd_output = `cat /var/run/smartctl_out_hddtemp-$array[$#array] | grep Temperature_`;
90 my @t = split(/\s+/,$hdd_output);
91 $temp = $t[9];
92 } else {
93 my $hdd_output = `cat /var/run/smartctl_out_hddtemp-$array[$#array] | grep Temperature:`;
94 my @t = split(/\s+/,$hdd_output);
95 $temp = $t[1];
96 }
97 } else { $temp = 0; }
98 print "Temperature for ".$array[$#array]."->".$temp."<-\n";
99 # Nur ins RDD wenn nicht 0 (sonst klappt die min Anzeige nicht)
100 if ($temp){
101 RRDs::update ("$mainsettings{'RRDLOG'}/hddtemp-".$array[$#array].".rrd", "-t", "temperature", "N:$temp");
102 $ERROR = RRDs::error;
103 print "Error in RRD::update for hdd-".$array[$#array].": $ERROR\n" if $ERROR;
104 }
105 }
106}
107
108my @disks = `ls -1 /sys/block | grep -E '^sd|^nvme|^mmcblk|^xvd|^vd|^md' | sort | uniq`;
109system("unlink /var/run/hddstatus 2>/dev/null && touch /var/run/hddstatus");
110foreach (@disks){
111 my $disk = $_;
112 chomp $disk;
113 print "Working on disk ".$disk.".\n";
114
115 my $status = "";
116 my $diskstats = "";
117 my $newdiskstats = "";
118 my @array = split(/\//,$disk);
119
120 $diskstats = `cat /var/run/hddstats-$array[$#array] 2>/dev/null`;
121 chomp $diskstats;
122 my $newdiskstats = `/usr/bin/iostat -d -t $disk | tail -3 | head -1 | awk '{ print \$6","\$7}'`;
123 chomp $newdiskstats;
124 my $status = `hdparm -C /dev/$disk | tail -1 | cut -d: -f2`;
125 chomp $status;
126
127 if ($status !~/standby/ || $diskstats ne $newdiskstats){
128 if (-e "/var/run/hddshutdown-".$array[$#array]){system("unlink /var/run/hddshutdown-".$array[$#array]." 2>/dev/null");}
129 }
130
131 if (-e "/var/run/hddshutdown-".$array[$#array]){$status = " standby\n";}
132 else{$status = " active\n";}
133
134 open(DATEI, ">>/var/run/hddstatus") || die "Datei nicht gefunden";
135 print DATEI $disk."-".$status;
136 close(DATEI);
137
138 updatehdddata($disk);
139
140 if ( $diskstats eq $newdiskstats ) {
141 # update diskstat because read temp change the status
142 my $newdiskstats = `/usr/bin/iostat -d -t $disk | tail -3 | head -1 | awk '{ print \$6","\$7}'`;
143 chomp $newdiskstats;
144 open(DATEI, ">/var/run/hddstats-$array[$#array]") || die "Datei nicht gefunden";
145 print DATEI $newdiskstats;
146 close(DATEI);
147 }
148}