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-6.0.0.tar.bz2
Download (FTP): ftp://ibiblio.org/pub/linux/system/status/sysstat-6.0.0.tar.bz2
Download MD5 sum: 706044b99a29b7de7bf4b06310bbe6a6
Download size: 118 KB
Estimated disk space required: 2 MB
Estimated build time: less than 0.1 SBU
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. However, don't exceed 25 because Sysstat will resuse existing files the next month, leading to erroneous daily reports.
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-6.1 package using the following command as the root user:
make install-sysstat
Last updated on 2005-08-01 13:29:19 -0600