The Sysstat package contains utilities to monitor system performance and usage activity. Sysstat contains the sar utility, common to many commercial Unixes, and tools you can schedule via cron to collect and historize performance and activity data.
Download (HTTP): http://perso.wanadoo.fr/sebastien.godard/sysstat-7.0.4.tar.bz2
Download (FTP): ftp://ibiblio.org/pub/linux/system/status/sysstat-7.0.4.tar.bz2
Download MD5 sum: 46a6af9c5486809c4f1fb4f8fcdf2684
Download size: 124 KB
Estimated disk space required: 2 MB
Estimated build time: less than 0.1 SBU
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/sysstat
Install Sysstat by running the following commands:
make config && make
This package does not come with a test suite.
Now, as the root user:
make install
make config: Runs the
interactive configuration process. The first question prompts you
for an “Installation directory”. Reply
with /usr, as this is equivalent to
Autoconf's --prefix=/usr parameter to configure. For all other prompts,
you may press Enter to
accept the (very sane) defaults. When prompted for
“Number of
daily data files to keep: [7]”, you may wish to
keep a larger number of files.
To begin gathering Sysstat
history information, you must add to, or create a privileged
user's crontab. The default history data location is /var/log/sa. The user running Sysstat utilities via cron must have write
access to this location.
Below is an example of what to install in the crontab. Adjust the parameters to suit your needs. Use man sa1 and man sa2 for information about the commands.
# 8am-7pm activity reports every 10 minutes during weekdays
0 8-18 * * 1-5 /usr/lib/sa/sa1 600 6 &
# 7pm-8am activity reports every hour during weekdays
0 19-7 * * 1-5 /usr/lib/sa/sa1 &
# Activity reports every hour on Saturday and Sunday
0 * * * 0,6 /usr/lib/sa/sa1 &
# Daily summary prepared at 19:05
5 19 * * * /usr/lib/sa/sa2 -A &
Ensure you submit the revised crontab to the cron daemon.
At system startup, a LINUX RESTART message must be inserted in
the daily data file to reinitialize the kernel counters. This can
be automated by installing the /etc/rc.d/init.d/sysstat init script included
in the blfs-bootscripts-20060910 package
using the following command as the root user:
make install-sysstat
Last updated on 2007-04-04 21:42:53 +0200