sysstat version 12.3.3 final packaging.
lsm and spec files updated.
Changelog added.
Year of (C) message updated.
Exciting new features in this version include:
* sar/sadc collect and display Pressure-Stall Information statistics.
These metrics have been added during the 4.20 development cycle of the
Linux kernel. They can be displayed with "sar -q {CPU | LOAD | MEM}".
* iostat has gained support devices managed by drivers in userspace like
spdk (see #257). New flags (-f / +f) have been added so that the user
can specify an alternate location for statistics files.
This version also includes various bug fixes.
Enjoy!
Signed-off-by: Sebastien GODARD <sysstat@users.noreply.github.com>
Additional info: [Include gist of relevant binary system activity datafile, config, logs, etc.
or send them directly to me at sysstat <at> orange_dot_fr]
+Opening an issue on GitHub is the preferred way to report a bug.
+
Changes:
+2020/05/08: Version 12.3.3 - Sebastien Godard (sysstat <at> orange.fr)
+ * sar/sadc: Add new Pressure-Stall Information (PSI) statistics.
+ * sadf: Add support for PSI statistics.
+ * iostat: Add support for devices managed by userspace drivers (e.g. spdk).
+ Add new flags -f/+f to specify an alternate location for stats files.
+ * sar: Don't display duplicate entries in /etc/mtab [12.2.2].
+ * sar: Don't display "Inconsistent input data" error message when no
+ activities are collected by sadc.
+ * sadf: XML: Remove "per" attribute for memory activity.
+ * sadf: Add new option "hz=" for datafile conversion.
+ * Various updates to remove GCC v9/v10 warnings.
+ * sar: Don't check if we are close enough to selected interval when
+ interval=1 [12.2.2].
+ * sadf: Use actual number of items, not its pointer address [12.2.2].
+ * [Sdrkun]: sa1: Create default sa directory if it doesn't exist [12.2.2].
+ * pr_stats.c: Printing timestamp should appear only once [12.2.2].
+ * common.c: Remove unused get_dev_part_nr() function [12.2.2].
+ * DTD and XSD documents updated.
+ * sar and sadf manual pages updated.
+ * Non regression tests updated. New tests added (sar, iostat).
+
2020/04/10: Version 12.3.2 - Sebastien Godard (sysstat <at> orange.fr)
* pidstat: Major code refactoring. Several bugs fixed.
* pidstat: Don't display unneeded spaces following command name
# Makefile to build sysstat commands
-# (C) 1999-2019 Sebastien GODARD (sysstat <at> orange.fr)
+# (C) 1999-2020 Sebastien GODARD (sysstat <at> orange.fr)
# Version and package name
VERSION = @PACKAGE_VERSION@
[](https://lgtm.com/projects/g/sysstat/sysstat/alerts)
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=45U6F9R73ESFQ)
-(C) 1999-2019 Sebastien GODARD (sysstat (at) orange (dot) fr)
+(C) 1999-2020 Sebastien GODARD (sysstat (at) orange (dot) fr)
### Introduction
- Power management statistics (instantaneous and average CPU clock frequency, fans speed, devices temperature, voltage inputs)
- USB devices plugged into the system
- Filesystems utilization (inodes and blocks)
+- Pressure-Stall Information statistics
#### Sysstat key features:
- Display average statistics values at the end of the reports.
- Needs very little CPU time to run (written in C).
- System statistics collected by sar/sadc can be saved in a file for future inspection. You can configure the length of data history to keep. There is no limit for this history length but the available space on your storage device.
- System statistics collected by sar/sadc can be exported in various different formats (CSV, XML, JSON, SVG, etc.). DTD and XML Schema documents are included in sysstat package. JSON output format is also available for mpstat and iostat commands.
+- iostat can display statistics for devices managed by drivers in userspace like spdk.
- Smart color output for easier statistics reading.

Please also remember to read the FAQ that comes with sysstat or is available
from the Wiki page on GitHub.
-Opening a pull request is the preferred way to submit a patch.
+Opening an issue or a pull request on GitHub is the preferred way to report a bug or submit a patch.
Patches and suggestions for improvements are always welcome!
### Support sysstat!
/*
* activity.c: Define system activities available for sar/sadc.
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* sar, sadc, sadf, mpstat and iostat common routines.
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* sysstat: System performance tools for Linux
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _COMMON_H
/*
* count.c: Count items for which statistics will be collected.
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* count.h: Include file used to count items for which
* statistics will be collected.
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _COUNT_H
/*
* format.c: Output format definitions for sadf and sar
- * (C) 2011-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2011-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* iostat: report CPU and I/O statistics
- * (C) 1998-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1998-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* iostat: report CPU and I/O statistics
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _IOSTAT_H
/*
* json_stats.c: Funtions used by sadf to display statistics in JSON format.
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* json_stats.h: Include file used to display system statistics in JSON format.
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _JSON_STATS_H
/*
* mpstat: per-processor statistics
- * (C) 2000-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2000-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* mpstat: per-processor statistics
- * (C) 2000-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 2000-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _MPSTAT_H
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sysstat <at> orange.fr\n"
-"POT-Creation-Date: 2020-05-08 09:24+0200\n"
+"POT-Creation-Date: 2020-05-08 09:52+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"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
-#: cifsiostat.c:75 tapestat.c:104 mpstat.c:134 iostat.c:89 sar.c:108
+#: pr_stats.c:2616 pr_stats.c:2623 pr_stats.c:2728 pr_stats.c:2773
+msgid "Summary:"
+msgstr ""
+
+#: iostat.c:89 cifsiostat.c:75 mpstat.c:134 tapestat.c:104 sar.c:108
#, c-format
msgid "Usage: %s [ options ] [ <interval> [ <count> ] ]\n"
msgstr ""
+#: iostat.c:92
+#, c-format
+msgid ""
+"Options are:\n"
+"[ -c ] [ -d ] [ -h ] [ -k | -m ] [ -N ] [ -s ] [ -t ] [ -V ] [ -x ] [ -y ] "
+"[ -z ]\n"
+"[ { -f | +f } <directory> ] [ -j { ID | LABEL | PATH | UUID | ... } ]\n"
+"[ --dec={ 0 | 1 | 2 } ] [ --human ] [ -o JSON ]\n"
+"[ [ -H ] -g <group_name> ] [ -p [ <device> [,...] | ALL ] ]\n"
+"[ <device> [...] | ALL ] [ --debuginfo ]\n"
+msgstr ""
+
+#: iostat.c:99
+#, c-format
+msgid ""
+"Options are:\n"
+"[ -c ] [ -d ] [ -h ] [ -k | -m ] [ -N ] [ -s ] [ -t ] [ -V ] [ -x ] [ -y ] "
+"[ -z ]\n"
+"[ { -f | +f } <directory> ] [ -j { ID | LABEL | PATH | UUID | ... } ]\n"
+"[ --dec={ 0 | 1 | 2 } ] [ --human ] [ -o JSON ]\n"
+"[ [ -H ] -g <group_name> ] [ -p [ <device> [,...] | ALL ] ]\n"
+"[ <device> [...] | ALL ]\n"
+msgstr ""
+
+#: iostat.c:2165 sa_common.c:2329
+#, c-format
+msgid "Invalid type of persistent device name\n"
+msgstr ""
+
#: cifsiostat.c:79
#, c-format
msgid ""
msgid "Cannot handle so many processors!\n"
msgstr ""
-#: tapestat.c:106
-#, c-format
-msgid ""
-"Options are:\n"
-"[ --human ] [ -k | -m ] [ -t ] [ -V ] [ -y ] [ -z ]\n"
-msgstr ""
-
-#: tapestat.c:272
-#, c-format
-msgid "No tape drives with statistics found\n"
-msgstr ""
-
#: mpstat.c:137
#, c-format
msgid ""
msgid "Average:"
msgstr ""
-#: iostat.c:92
-#, c-format
-msgid ""
-"Options are:\n"
-"[ -c ] [ -d ] [ -h ] [ -k | -m ] [ -N ] [ -s ] [ -t ] [ -V ] [ -x ] [ -y ] "
-"[ -z ]\n"
-"[ { -f | +f } <directory> ] [ -j { ID | LABEL | PATH | UUID | ... } ]\n"
-"[ --dec={ 0 | 1 | 2 } ] [ --human ] [ -o JSON ]\n"
-"[ [ -H ] -g <group_name> ] [ -p [ <device> [,...] | ALL ] ]\n"
-"[ <device> [...] | ALL ] [ --debuginfo ]\n"
-msgstr ""
-
-#: iostat.c:99
-#, c-format
-msgid ""
-"Options are:\n"
-"[ -c ] [ -d ] [ -h ] [ -k | -m ] [ -N ] [ -s ] [ -t ] [ -V ] [ -x ] [ -y ] "
-"[ -z ]\n"
-"[ { -f | +f } <directory> ] [ -j { ID | LABEL | PATH | UUID | ... } ]\n"
-"[ --dec={ 0 | 1 | 2 } ] [ --human ] [ -o JSON ]\n"
-"[ [ -H ] -g <group_name> ] [ -p [ <device> [,...] | ALL ] ]\n"
-"[ <device> [...] | ALL ]\n"
-msgstr ""
-
-#: iostat.c:2165 sa_common.c:2329
-#, c-format
-msgid "Invalid type of persistent device name\n"
-msgstr ""
-
#: sadf.c:105
#, c-format
msgid ""
msgid "PCP support not compiled in\n"
msgstr ""
-#: pr_stats.c:2616 pr_stats.c:2623 pr_stats.c:2728 pr_stats.c:2773
-msgid "Summary:"
+#: tapestat.c:106
+#, c-format
+msgid ""
+"Options are:\n"
+"[ --human ] [ -k | -m ] [ -t ] [ -V ] [ -y ] [ -z ]\n"
+msgstr ""
+
+#: tapestat.c:272
+#, c-format
+msgid "No tape drives with statistics found\n"
+msgstr ""
+
+#: common.c:79
+#, c-format
+msgid "sysstat version %s\n"
msgstr ""
#: sar.c:123
msgid "Cannot find the data collector (%s)\n"
msgstr ""
-#: rd_stats.c:359
-#, c-format
-msgid "Cannot read %s\n"
-msgstr ""
-
-#: common.c:79
-#, c-format
-msgid "sysstat version %s\n"
-msgstr ""
-
#: sa_conv.c:99
#, c-format
msgid "Cannot convert the format of this file\n"
msgid " \t[Unknown format]"
msgstr ""
+#: rd_stats.c:359
+#, c-format
+msgid "Cannot read %s\n"
+msgstr ""
+
#: sa_common.c:302
#, c-format
msgid "File created by sar/sadc from sysstat version %d.%d.%d"
/*
* pcp_def_metrics.c: Funtions used by sadf to define PCP metrics
- * (C) 2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2019-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* pcp_def_metrics.h: Include file used to define PCP metrics.
- * (C) 2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 2019-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _PCP_DEF_METRICS_H
/*
* pcp_stats.c: Funtions used by sadf to create PCP archive files.
- * (C) 2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2019-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* pcp_stats.h: Include file used to display system statistics in PCP format.
- * (C) 2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 2019-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _PCP_STATS_H
/*
* pidstat: Report statistics for Linux tasks
- * (C) 2007-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2007-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* pidstat: Display per-process statistics.
- * (C) 2007-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 2007-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _PIDSTAT_H
#define _PIDSTAT_H
/*
* pr_stats.c: Functions used by sar to display statistics
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* pr_stats.h: Include file used to display system statistics
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _PR_STATS_H
/*
* raw_stats.c: Functions used by sar to display statistics in raw format.
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* raw_stats.h: Include file used to display statistics in raw format.
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _RAW_STATS_H
/*
* rd_sensors.c: Read sensors statistics
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* rd_sensors.h: Include file used to read sensors statistics
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _RD_SENSORS_H
/*
* rd_stats.c: Read system statistics
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* rd_stats.h: Include file used to read system statistics
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _RD_STATS_H
/*
* rndr_stats.c: Funtions used by sadf to display statistics in selected format.
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* rndr_stats.h: Include file used to display system statistics in selected format.
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _RNDR_STATS_H
/*
* sar/sadc: Report system activity
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _SA_H
#!/bin/sh
# @SA_LIB_DIR@/sa1
-# (C) 1999-2019 Sebastien Godard (sysstat <at> orange.fr)
+# (C) 1999-2020 Sebastien Godard (sysstat <at> orange.fr)
#
#@(#) @PACKAGE_NAME@-@PACKAGE_VERSION@
#@(#) sa1: Collect and store binary data in system activity data file.
#!/bin/sh
# @SA_LIB_DIR@/sa2
-# (C) 1999-2019 Sebastien Godard (sysstat <at> orange.fr)
+# (C) 1999-2020 Sebastien Godard (sysstat <at> orange.fr)
#
#@(#) @PACKAGE_NAME@-@PACKAGE_VERSION@
#@(#) sa2: Write a daily report
/*
* sar and sadf common routines.
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* sa_conv.c: Convert an old format sa file to the up-to-date format.
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* sa_conv.h: Include file for "sadf -c" command.
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _SA_CONV_H
/*
* sysstat - sa_wrap.c: Functions used in activity.c
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* sadc: system activity data collector
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* sadf: system activity data formatter
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* sadf: System activity data formatter
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _SADF_H
/*
* sadf_misc.c: Funtions used by sadf to display special records
- * (C) 2011-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2011-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* sar: report system activity
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* svg_stats.c: Funtions used by sadf to display statistics in SVG format.
- * (C) 2016-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2016-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* svg_stats.h: Include file used to display system statistics in SVG format.
- * (C) 2016-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 2016-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _SVG_STATS_H
/*
* sysstat: System performance tools for Linux
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _SYSCONFIG_H
Begin4
Title: sysstat - the sar, sadf, mpstat, iostat, tapestat, pidstat and cifsiostat commands for Linux
-Version: 12.3.2
-Entered-date: 2020-04-10
+Version: 12.3.3
+Entered-date: 2020-05-08
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@NOSPAM.orange.fr (Sebastien Godard)
Maintained-by: sysstat@NOSPAM.orange.fr (Sebastien Godard)
Primary-site: http://pagesperso-orange.fr/sebastien.godard/
- 1320kiB sysstat-12.3.2.tar.gz
- 1045kiB sysstat-12.3.2.tar.bz2
- 725kiB sysstat-12.3.2.tar.xz
- 1252kiB sysstat-12.3.2-1.src.rpm
- 401kiB sysstat-12.3.2-1.x86_64.rpm
+ 1353kiB sysstat-12.3.3.tar.gz
+ 1059kiB sysstat-12.3.3.tar.bz2
+ 767kiB sysstat-12.3.3.tar.xz
+ 1285kiB sysstat-12.3.3-1.src.rpm
+ 410kiB sysstat-12.3.3-1.x86_64.rpm
Alternate-site:
Copying-policy: GPL
End
Summary: SAR, SADF, MPSTAT, IOSTAT, TAPESTAT, PIDSTAT and CIFSIOSTAT for Linux
Name: sysstat
-Version: 12.3.2
+Version: 12.3.3
Release: 1
License: GPL
Group: Applications/System
# description: Reset the system activity logs
#
# @INIT_DIR@/sysstat
-# (C) 2000-2019 Sebastien Godard (sysstat <at> orange.fr)
+# (C) 2000-2020 Sebastien Godard (sysstat <at> orange.fr)
#
### BEGIN INIT INFO
# Provides: sysstat
/*
* sysstat test functions.
- * (C) 2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2019-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* sysstat: System performance tools for Linux
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _SYSTEST_H
/*
* sysstat: System performance tools for Linux
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _VERSION_H
/*
* xml_stats.c: Funtions used by sadf to display statistics in XML.
- * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
/*
* xml_stats.h: Include file used to display system statistics in XML.
- * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
*/
#ifndef _XML_STATS_H