2018/04/06: Version 11.7.3 - Sebastien Godard (sysstat <at> orange.fr)
* sar: Fix possible crash happening when buffers needed to be
- reallocated to accomodate more devices.
+ reallocated to accommodate more devices.
* sar/sadf/mpstat: Compute global CPU statistics as the sum of individual
CPU ones.
* mpstat: Compute statistics for node "all" as the sum of individual
You may enter here the sampling interval (in minutes) that the configuration
script will use to customize the crontab.
-Defaut value is 10. This means that sadc (the system activity data collector
+Default value is 10. This means that sadc (the system activity data collector
called by sar) will take a snapshot of the system counters every 10 minutes.
Other reasonable values could be 5, 15 or 20 minutes.
This is the base directory used for installation.
-System administrators would rather install softwares that are added to
+System administrators would rather install software that are added to
an already existing system into /usr/local, since /usr is sometimes
mounted read-only.
/usr/local is the default answer here.
# Revision 1.9 2001/01/27 19:28:43 root
# added secondary Y axes functionality
# added -c cfg_file cmdln option
-# writting of selected config data to cfg_file
+# writing of selected config data to cfg_file
# renamed chart lines to names used in sar
# parametrized creating of cmd() array
# added generic var __M4_TIMELEN__ for proc_line_generic
set ident "/usr/bin/ident"
set version ""
-# This can be set only if small interactive change in result code was occured
+# This can be set only if small interactive change in result code occurred
set patchlevel ""
if {[catch {set fp [open "| $ident $argv0" "r"]}] == 0} {
set n 0
# SGo 2008-07-06: Update options (options -S added).
# SGo 2008-06-15: Update options (options -c and -w have been merged).
-# sar switches as names for object-instances (final and curent)
+# sar switches as names for object-instances (final and current)
set prog_swtch [list b B q r R S u v w W]
# maximal and current values for each graph indexed by sar switch i.e. for cpu
menubutton .menu.chart -text "Chart" -menu .menu.chart.m -underline 0
menu .menu.chart.m -tearoff true
-# creates for each sar-switch menu item with apropriate command
+# creates for each sar-switch menu item with appropriate command
foreach l $prog_swtch {
.menu.chart.m add command -label $view_n($l) \
-command "new_chart $l" -accelerator $l
echo This script enables you to set the parameters value used by ./configure.
echo Please enter the value for the parameters listed below.
echo Press Return to tell ./configure to use the default value or to try to guess the proper one.
-echo "Defaut value for yes/no questions is no (parameter is NOT set)."
+echo "Default value for yes/no questions is no (parameter is NOT set)."
echo You can enter a ? to display a help message at any time...
echo
/*
- * json_stats.c: Funtions used by sadf to display statistics in JSON format.
+ * json_stats.c: Functions used by sadf to display statistics in JSON format.
* (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
requires a resource that is unavailable.
.IP nvcswch/s
Total number of non voluntary context switches the task made per second.
-A involuntary context switch takes place when a task executes
+An involuntary context switch takes place when a task executes
for the duration of its time slice and then is forced to relinquish the
processor.
.IP Command
.br
.B L=000000:T=000000:W=000000:X=000000
-Capabilities consisting of an hexadecimal digit
+Capabilities consisting of a hexadecimal digit
.RB "(" "0 " "through " "F" ") are used to specify"
the first sixteen colors in the palette (these colors are used to draw the graphs),
e.g., 3=ffffff would indicate that the third color in the palette is white (0xffffff).
scp->cpu_steal + scp->cpu_softirq;
/*
- * If the CPU is offline then it is omited from /proc/stat:
+ * If the CPU is offline then it is omitted from /proc/stat:
* All the fields couldn't have been read and the sum of them is zero.
*/
if (tot_jiffies_c == 0) {
/*
- * pcp_def_metrics.c: Funtions used by sadf to define PCP metrics
+ * pcp_def_metrics.c: Functions used by sadf to define PCP metrics
* (C) 2019-2021 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
/*
- * pcp_stats.c: Funtions used by sadf to create PCP archive files.
+ * pcp_stats.c: Functions used by sadf to create PCP archive files.
* (C) 2019-2021 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
/*
- * rndr_stats.c: Funtions used by sadf to display statistics in selected format.
+ * rndr_stats.c: Functions used by sadf to display statistics in selected format.
* (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
*
* IN:
* @group_id Group identification number.
- * @opt_f Optionnal flag to set.
+ * @opt_f Optional flag to set.
***************************************************************************
*/
void collect_group_activities(unsigned int group_id, unsigned int opt_f)
if (reset_cd) {
/*
* See note in sar.c.
- * NB: Reseting cross_day is needed only if datafile
+ * NB: Resetting cross_day is needed only if datafile
* may be rewinded (eg. in db or ppc output formats).
*/
cross_day = 0;
/*
- * sadf_misc.c: Funtions used by sadf to display special records
+ * sadf_misc.c: Functions used by sadf to display special records
* (C) 2011-2021 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
/*
- * svg_stats.c: Funtions used by sadf to display statistics in SVG format.
+ * svg_stats.c: Functions used by sadf to display statistics in SVG format.
* (C) 2016-2021 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* the fields in the statistics structure.
*
* OUT:
- * @spmin Array containg the possible new min values for current activity.
- * @spmax Array containg the possible new max values for current activity.
+ * @spmin Array containing the possible new min values for current activity.
+ * @spmax Array containing the possible new max values for current activity.
***************************************************************************
*/
void save_extrema(unsigned int types_nr[], void *cs, void *ps, unsigned long long itv,
/*
- * xml_stats.c: Funtions used by sadf to display statistics in XML.
+ * xml_stats.c: Functions used by sadf to display statistics in XML.
* (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************