Skip to content

Commit 9b67735

Browse files
committed
Update Changelog and version to v5.7
1 parent 4b7f53e commit 9b67735

File tree

16 files changed

+44
-20
lines changed

16 files changed

+44
-20
lines changed

ChangeLog

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
1-
2018-09-06: v5.6
1+
2018-08-11: v5.7
2+
3+
This is a maintenance release that fixes a bug introduced in last release
4+
It also adds a new feature:
5+
6+
Adapt sysusage and sysusagejqgraph to changes into sar sysstat tool
7+
since version 11.5.7. As per sysstat commit 8d635e0:
8+
9+
sar: Update "sar -d" output contents
10+
11+
Replace "rd_sec/s" and "wr_sec/s" fields with "rkB/s" and "wkB/s". These
12+
fields are now expressed in kilobytes instead of sectors. This also make
13+
them consistent with iostat's output.
14+
15+
Replace "avgrq-sz" field with "areq-sz". This field is now expressed in
16+
kilobytes instead of sectors and make it consistent with iostat's output.
17+
18+
Rename "avgqu-sz" field to "aqu-sz" to make it consistent with iostat's
19+
output.
20+
21+
Here are the list of other changes:
22+
23+
- Fix per network devices storage. Thanks to Barry Kwok for the report.
24+
- Apply changes from last release to rsysusage.
25+
26+
2018-08-06: v5.6
227

328
This release fixes several issues that was reported during the last
429
year. It also adds some new features:
@@ -28,7 +53,6 @@ Here are the full list of changes:
2853
- Add "Section: admin" to debian control file. Thanks to Matt
2954
Lewandowsky for the report.
3055

31-
3256
2017-02-11: v5.5
3357

3458
This release fixes several issues that was reported during the last

INSTALL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SysUsage v5.6 - System Monitoring Tool
1+
SysUsage v5.7 - System Monitoring Tool
22

33
REQUIREMENT
44
rrdtool

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME
2-
SysUsage v5.6 - System Monitoring Tool
2+
SysUsage v5.7 - System Monitoring Tool
33

44
DESCRIPTION
55
SysUsage is a tool used to continuously monitor a system and generate

Sar.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ use open ':locale';
2828
BEGIN {
2929
use Exporter();
3030
use vars qw($VERSION $COPYRIGHT $AUTHOR @ISA @EXPORT);
31-
$VERSION = '5.6';
31+
$VERSION = '5.7';
3232
$COPYRIGHT = 'Copyright (c) 2003-2018 Gilles Darold - All rights reserved.';
3333
$AUTHOR = "Gilles Darold - gilles\@darold.net";
3434

bin/rsysusage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use SysUsage::Sar;
2929
use POSIX qw(locale_h strftime);
3030
setlocale(LC_ALL, 'C');
3131

32-
my $VERSION = '5.6';
32+
my $VERSION = '5.7';
3333

3434
$| = 1;
3535

bin/sysusage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ setlocale(LC_ALL, 'C');
3232
use Benchmark;
3333
use Proc::Queue size => 4, ':all';
3434

35-
my $VERSION = '5.6';
35+
my $VERSION = '5.7';
3636

3737
my $SYSSTAT_VERSION = '';
3838

bin/sysusagegraph

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ use POSIX qw(locale_h);
3232
setlocale(LC_ALL, 'C');
3333

3434

35-
my $VERSION = '5.6';
35+
my $VERSION = '5.7';
3636

3737
$| = 1;
3838

bin/sysusagejqgraph

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ use POSIX qw(locale_h);
3232
setlocale(LC_ALL, 'C');
3333

3434

35-
my $VERSION = '5.6';
35+
my $VERSION = '5.7';
3636

3737
$| = 1;
3838

bin/sysusagewarn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use Net::SMTP;
3131
use POSIX qw(locale_h);
3232
setlocale(LC_ALL, 'C');
3333

34-
my $VERSION = '5.6';
34+
my $VERSION = '5.7';
3535

3636
my $SMTP = '';
3737
my $FROM = '';

doc/SysUsage.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
=head1 NAME
22

3-
SysUsage v5.6 - System Monitoring Tool
3+
SysUsage v5.7 - System Monitoring Tool
44

55
=head1 DESCRIPTION
66

0 commit comments

Comments
 (0)