sysstat version 11.3.5 final packaging.
lsm and spec files updated.
Changelog added.
Cosmetic fixes.
NOTE: A stable version (11.2.5) also exists and will be available for
download from my web site:
http://pagesperso-orange.fr/sebastien.godard/
The stable version includes only the bug fixes added in sysstat 11.3.5
but not the new features.
Signed-off-by: Sebastien GODARD <sysstat@users.noreply.github.com>
Changes:
+2016/06/24: Version 11.3.5 - Sebastien Godard (sysstat <at> orange.fr)
+ * SVG: Add SVG output for ICMP{v4,v6}, IPv6, UDPv6, voltage inputs,
+ NFS client, NFS server, disks, filesystems and FC HBA statistics.
+ * SVG: Add SVG output for IPv4, ICMPv4, TCPv4, IPv6 and ICMP
+ network errors statistics.
+ * SVG: Make sure graduations are properly aligned with grid.
+ * SVG: Add oneday option to control SVG output.
+ * SVG: Fix skipempty option.
+ * [Peter Schiffer]: Stricter check for file_magic->header_size [11.2.5].
+ * [Peter Schiffer]: tapestat: Various fixes [11.2.5].
+ * [Esteban Fallas]: Check for undefined UID variable in sysstat script
+ [11.2.5].
+ * [Carsten Grohmann]: Unify description of the tps value in the sar
+ manual page for -b and -d flags [11.2.5].
+ * sadf manual page updated.
+
2016/05/14: Version 11.3.4 - Sebastien Godard (sysstat <at> orange.fr)
* SVG: Add SVG output for fan speed and temperature sensors
statistics, I/O and transfer rate statistics, kernel tables
/* Replace octal codes */
oct2chr(mountp);
- /* Check that total size is not null */
+ /* Check that total size is not zero */
if (statvfs(mountp, &buf) < 0)
continue;
*/
cprintf_pc(1, 6, 2,
shi->used ? xds.util / 10.0 / (double) shi->used
- : xds.util / 10.0); /* shi->used should never be null here */
+ : xds.util / 10.0); /* shi->used should never be zero here */
printf("\n");
}
/*
***************************************************************************
- * Display network interfaces error statistics in JSON.
+ * Display network interfaces errors statistics in JSON.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display IP network error statistics in JSON.
+ * Display IP network errors statistics in JSON.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display ICMP error message statistics in JSON.
+ * Display ICMP errors message statistics in JSON.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display TCP network error statistics in JSON.
+ * Display TCP network errors statistics in JSON.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display IPv6 network error statistics in JSON.
+ * Display IPv6 network errors statistics in JSON.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display ICMPv6 error message statistics in JSON.
+ * Display ICMPv6 error messages statistics in JSON.
*
* IN:
* @a Activity structure with statistics.
sfc = (struct stats_filesystem *) ((char *) a->buf[curr] + i * a->msize);
if (!sfc->f_blocks)
- /* Size of filesystem is null: We are at the end of the list */
+ /* Size of filesystem is zero: We are at the end of the list */
break;
if (sep) {
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sysstat <at> orange.fr\n"
-"POT-Creation-Date: 2016-05-14 10:33+0200\n"
+"POT-Creation-Date: 2016-06-24 13:49+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "Cannot find disk data\n"
msgstr ""
-#: iostat.c:1399 sa_common.c:1632
+#: iostat.c:1399 sa_common.c:1633
#, c-format
msgid "Invalid type of persistent device name\n"
msgstr ""
msgid "Please check if data collecting is enabled\n"
msgstr ""
-#: sa_common.c:1451
+#: sa_common.c:1452
#, c-format
msgid "Requested activities not available in file %s\n"
msgstr ""
"[ -k | -m ] [ -t ] [ -V ] [ -y ] [ -z ]\n"
msgstr ""
-#: tapestat.c:251
+#: tapestat.c:257
#, c-format
msgid "No tape drives with statistics found\n"
msgstr ""
return 0;
else {
/*
- * If interval is null, then we are trying to
+ * If interval is zero, then we are trying to
* display stats for a given process since boot time.
*/
*pstp = &st_pid_null;
/*
***************************************************************************
- * Display IP network error statistics.
+ * Display IP network errors statistics.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display ICMP network error statistics.
+ * Display ICMP network errors statistics.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display TCP network error statistics.
+ * Display TCP network errors statistics.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display IPv6 network error statistics.
+ * Display IPv6 network errors statistics.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display ICMPv6 network error statistics.
+ * Display ICMPv6 network errors statistics.
*
* IN:
* @a Activity structure with statistics.
sfc = (struct stats_filesystem *) ((char *) a->buf[curr] + i * a->msize);
if (!sfc->f_blocks)
- /* Size of filesystem is null: We are at the end of the list */
+ /* Size of filesystem is zero: We are at the end of the list */
break;
printf("%-11s", (dispavg ? _("Summary:") : timestamp[curr]));
(double) sfc->f_bfree / 1024 / 1024,
(double) (sfc->f_blocks - sfc->f_bfree) / 1024 / 1024);
cprintf_pc(2, 9, 2,
- /* f_blocks is not null. But test it anyway ;-) */
+ /* f_blocks is not zero. But test it anyway ;-) */
sfc->f_blocks ? SP_VALUE(sfc->f_bfree, sfc->f_blocks, sfc->f_blocks)
: 0.0,
sfc->f_blocks ? SP_VALUE(sfc->f_bavail, sfc->f_blocks, sfc->f_blocks)
sscanf(line, "%u", &st_serial_i->line);
/*
* A value of 0 means an unused structure.
- * So increment it to make sure it is not null.
+ * So increment it to make sure it is not zero.
*/
(st_serial_i->line)++;
/*
/*
***************************************************************************
- * Read IP network error statistics from /proc/net/snmp.
+ * Read IP network errors statistics from /proc/net/snmp.
*
* IN:
* @st_net_eip Structure where stats will be saved.
/*
***************************************************************************
- * Read ICMP network error statistics from /proc/net/snmp.
+ * Read ICMP network errors statistics from /proc/net/snmp.
*
* IN:
* @st_net_eicmp Structure where stats will be saved.
/*
***************************************************************************
- * Read TCP network error statistics from /proc/net/snmp.
+ * Read TCP network errors statistics from /proc/net/snmp.
*
* IN:
* @st_net_etcp Structure where stats will be saved.
/*
***************************************************************************
- * Read IPv6 network error statistics from /proc/net/snmp6.
+ * Read IPv6 network errors statistics from /proc/net/snmp6.
*
* IN:
* @st_net_eip6 Structure where stats will be saved.
/*
***************************************************************************
- * Read ICMPv6 network error statistics from /proc/net/snmp6.
+ * Read ICMPv6 network errors statistics from /proc/net/snmp6.
*
* IN:
* @st_net_eicmp6 Structure where stats will be saved.
/*
***************************************************************************
- * Display IP network error statistics in selected format.
+ * Display IP network errors statistics in selected format.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display ICMP error message statistics in selected format.
+ * Display ICMP error messages statistics in selected format.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display TCP network error statistics in selected format.
+ * Display TCP network errors statistics in selected format.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display IPv6 network error statistics in selected format.
+ * Display IPv6 network errors statistics in selected format.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display ICMPv6 error message statistics in selected format.
+ * Display ICMPv6 error messages statistics in selected format.
*
* IN:
* @a Activity structure with statistics.
sfc = (struct stats_filesystem *) ((char *) a->buf[curr] + i * a->msize);
if (!sfc->f_blocks)
- /* Size of filesystem is null: We are at the end of the list */
+ /* Size of filesystem is zero: We are at the end of the list */
break;
render(isdb, pre, PT_USERND,
***************************************************************************
* Check that every selected activity actually belongs to the sequence list.
* If not, then the activity should be unselected since it will not be sent
- * by sadc. An activity can be not sent if its number of items is null.
+ * by sadc. An activity can be not sent if its number of items is zero.
*
* IN:
* @act_nr Size of sequence list.
Begin4
Title: sysstat - the sar, sadf, mpstat, iostat, tapestat, pidstat and cifsiostat commands for Linux
-Version: 11.3.4
-Entered-date: 2016-05-14
+Version: 11.3.5
+Entered-date: 2016-06-24
Description: The sysstat package contains the sar, sadf, mpstat, iostat, tapestat,
pidstat, cifsiostat and sa tools for Linux.
The sar command collects and reports system activity
Author: sysstat [at] orange.fr (Sebastien Godard)
Maintained-by: sysstat [at] orange.fr (Sebastien Godard)
Primary-site: http://pagesperso-orange.fr/sebastien.godard/
- 460kB sysstat-11.3.4.tar.gz
- 373kB sysstat-11.3.4.tar.bz2
- 331kB sysstat-11.3.4.tar.xz
- 468kB sysstat-11.3.4-1.src.rpm
- 319kB sysstat-11.3.4-1.x86_64.rpm
+ 467kiB sysstat-11.3.5.tar.gz
+ 379kiB sysstat-11.3.5.tar.bz2
+ 336kiB sysstat-11.3.5.tar.xz
+ 475kiB sysstat-11.3.5-1.src.rpm
+ 329kiB sysstat-11.3.5-1.x86_64.rpm
Alternate-site:
Copying-policy: GPL
End
Summary: SAR, SADF, MPSTAT, IOSTAT, TAPESTAT, PIDSTAT and CIFSIOSTAT for Linux
Name: sysstat
-Version: 11.3.4
+Version: 11.3.5
Release: 1
License: GPL
Group: Applications/System
/*
***************************************************************************
- * Display network interfaces error statistics in XML.
+ * Display network interfaces errors statistics in XML.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display IP network error statistics in XML.
+ * Display IP network errors statistics in XML.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display ICMP error message statistics in XML.
+ * Display ICMP error messages statistics in XML.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display TCP network error statistics in XML.
+ * Display TCP network errors statistics in XML.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display IPv6 network error statistics in XML.
+ * Display IPv6 network errors statistics in XML.
*
* IN:
* @a Activity structure with statistics.
/*
***************************************************************************
- * Display ICMPv6 error message statistics in XML.
+ * Display ICMPv6 error messages statistics in XML.
*
* IN:
* @a Activity structure with statistics.
sfc = (struct stats_filesystem *) ((char *) a->buf[curr] + i * a->msize);
if (!sfc->f_blocks)
- /* Size of filesystem is null: We are at the end of the list */
+ /* Size of filesystem is zero: We are at the end of the list */
break;
xprintf(tab, "<filesystem %s=\"%s\" "
DISPLAY_MOUNT(a->opt_flags) ? sfc->mountp : sfc->fs_name,
(double) sfc->f_bfree / 1024 / 1024,
(double) (sfc->f_blocks - sfc->f_bfree) / 1024 / 1024,
- /* f_blocks is not null. But test it anyway ;-) */
+ /* f_blocks is not zero. But test it anyway ;-) */
sfc->f_blocks ? SP_VALUE(sfc->f_bfree, sfc->f_blocks, sfc->f_blocks)
: 0.0,
sfc->f_blocks ? SP_VALUE(sfc->f_bavail, sfc->f_blocks, sfc->f_blocks)