Facebook Twitter Instagram
    TecAdmin
    • Home
    • FeedBack
    • Submit Article
    • About Us
    Facebook Twitter Instagram
    TecAdmin
    You are at:Home»Linux Tutorials»How to Monitor Linux System Performance with Sysstat

    How to Monitor Linux System Performance with Sysstat

    By RahulApril 30, 20204 Mins Read

    Sysstat is a powerful Linux system performance monitoring tool written in C language. This is the best tool I found for the debugging the performance issue on your Linux systems. Sysstat is an opensource and freely available tool. This tutorial will help you to install Sysstat package on your system and monitor Linux system performance.

    Advertisement

    Sysstat Utilities

    The sysstat package provides a number of utilities for collecting the system use activities and system performance.

    • iostat – Used for CPU statistics and input/output statistics for the block devices and partitions and generate report.
    • mpstat – Used for processor related statistics and reports.
    • pidstat – Used for I/O, CPU, memory statistics for Linux processes and generate report.
    • tapestat – Used for the statistics for tape drives attached to Linux system.
    • cifsiostat – Used for generating reports CIFS statistics.
    • sar – Used for collects and saves all the system activities and report.

    Install Sysstat on Linux

    You can opt one of the below method to install Sysstat on your system. The package manager may have older version, so you can try with the source installation.

    1. Install with Package Manager

    Sysstat package is available in default package repositories, You can install using the following commands. But the default repositories have older version of packages. So we recommend to use installation with source in next step. If you still want to use package manager just run below commands.

    sudo yum install sysstat         ## CentOS and RHEL systems 
    sudo dnf install sysstat         ## Fedora 22+ systems 
    sudo apt install sysstat         ## Ubuntu and Debian based systems 
    

    Let’s enable the sysstat monitoring. Edit the following file and set ENABLED="true" and save it.

    sudo vim /etc/default/sysstat
    

    After that enable the service and start it.

    sudo systemctl enable sysstat
    sudo systemctl start sysstat
    

    2. Install from Source

    Download the latest stable version from its official website. I always recommend to use stable version on production servers. For development systems you can try with current development version.

    Here are the commands to download current stable release 11.6.2 and install on your system.

    wget http://pagesperso-orange.fr/sebastien.godard/sysstat-12.3.2.tar.gz
    tar -zxf sysstat-12.3.2.tar.gz
    cd sysstat-12.3.2/
    ./configure
    make
    make install
    

    Using this method all the binary files are installed under /usr/local/bin directory and the library files are installed under /usr/local/lib directory. Now edit sysstat configuration file and adjust settings.

    vim /etc/sysconfig/sysstat
    

    Set the ENABLED="true" in above file and save it.

    View Current CPU Usage

    Use sar command with -u option to view CPU statics of current date.

    sar -u
    

    You can also view the real-time CPU uses by specifying the time interval and number of times to show data. For example, to view real-time CPU uses for 5 times with the difference of 1 second.

    sar -u 1 5
    

    Linux System Performance with sar

    You can view the CPU utilization data in more depth. Nowadays most of the CPU’s are multi-core. To view utilization details of each core individually use -P ALL command.

    sar -P ALL 1 3
    

    cpu uses statics per core with sar

    View Device Usage

    Use the iostat command to find disk statics. It shows the current data transfer per second, the total number of blocks read and write to disk and an average block per seconds.

    iostat -d 1 5 
    

    device statics with sar

    Details:

    • tps – Transfers per second.
    • Blk_read/s – Total amount of data read in blocks per second.
    • Blk_wrtn/s – Total amount of data written in blocks per second.
    • Blk_read – Total blocks read.
    • Blk_wrtn – Total blocks written.

    You can view more extended I/O statics of disk using the following command.

    iostat -x 1 5 
    

    View Running Process Resource Utilization

    Using pidstat command with switch -d provides you details of currently running processes on systems.

    pidstat -d
    

    Also try pidstat with -r to show resource utilization by processes on every 1 second for the 5 times.

    pidstat -r 1 5
    

    process statics with pidstat

    Memory Utilization Data

    Use sar command with -r to view the current memory utilization details for the 5 times on every 1 second.

    sar -r 1 5
    

    memory statics with sar

    monitoring sysstat System Performance
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email WhatsApp

    Related Posts

    Understanding 2>&1 in Bash: A Beginner’s Guide

    How to Choose the Best Shebang (#!) for Your Shell Scripts

    Modulus Operator (%) in Bash

    Using Modulus Operator (%) in Bash

    View 2 Comments

    2 Comments

    1. danny on April 30, 2020 12:34 pm

      Thank you so much. useful information!

      Reply
    2. fedemalu on September 11, 2019 10:59 am

      Many thanks for this useful explanation, I admit I didn’t use systat and now it will be among my favorite commands.

      Reply

    Leave A Reply Cancel Reply

    Advertisement
    Recent Posts
    • How to List Manually Installed Packages in Ubuntu & Debian
    • 10 Bash Tricks Every Developer Should Know
    • How to Validate Email Address in JavaScript
    • Firewalld: Common Firewall Rules and Commands
    • 12 Apk Commands in Alpine Linux Package Management
    Facebook Twitter Instagram Pinterest
    © 2023 Tecadmin.net. All Rights Reserved | Terms  | Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.