From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 2/2] makegraphs: Update script for new iostat output format - Bug#12702 Date: Fri, 08 Oct 2021 23:38:24 +0200 Message-ID: <20211008213824.2754445-2-adolf.belka@ipfire.org> In-Reply-To: <20211008213824.2754445-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4646415645371607021==" List-Id: --===============4646415645371607021== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - Modification of iostat line as per input in Bug#12702 Fixes: 12702 Signed-off-by: Adolf Belka --- src/scripts/makegraphs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scripts/makegraphs b/src/scripts/makegraphs index 5bfb05d2a..cbfc83c77 100644 --- a/src/scripts/makegraphs +++ b/src/scripts/makegraphs @@ -120,7 +120,7 @@ foreach (@disks){ =20 $diskstats =3D `cat /var/run/hddstats-$array[$#array] 2>/dev/null`; chomp $diskstats; - my $newdiskstats =3D `/usr/bin/iostat -d -t $disk | tail -2 | head -1 | awk= '{ print \$5","\$6}'`; + my $newdiskstats =3D `/usr/bin/iostat -d -t $disk | tail -3 | head -1 | awk= '{ print \$6","\$7}'`; chomp $newdiskstats; my $status =3D `hdparm -C /dev/$disk | tail -1 | cut -d: -f2`; chomp $status; @@ -140,7 +140,7 @@ foreach (@disks){ =20 if ( $diskstats eq $newdiskstats ) { # update diskstat because read temp change the status - my $newdiskstats =3D `/usr/bin/iostat -d -t $disk | tail -2 | head -1 | aw= k '{ print \$5","\$6}'`; + my $newdiskstats =3D `/usr/bin/iostat -d -t $disk | tail -3 | head -1 | aw= k '{ print \$6","\$7}'`; chomp $newdiskstats; open(DATEI, ">/var/run/hddstats-$array[$#array]") || die "Datei nicht gefu= nden"; print DATEI $newdiskstats; --=20 2.33.0 --===============4646415645371607021==--