云网牛站
所在位置:首页 > Linux软件 > Sysstat:一体化的Linux系统性能和使用活动监控工具

Sysstat:一体化的Linux系统性能和使用活动监控工具

2018-06-08 16:06:19作者:天寒稿源:LinuxStory

在监控Linux系统资源、Linux系统性能和使用活动方面,Sysstat的确是一个方便的工具。在我们日常的基本工具中多多少少都用到了sysstat软件包。它还提供了一个可以利用cron进行计划运行的工具,用以收集系统性能数据和活动记录。

Sysstat:一体化的Linux系统性能和使用活动监控工具

 

以下是在sysstat软件包里的工具列表:

iostat:统计并报告你的设备的CPU状态和I/O状态数据。

mpstat:监控和显示关于CPU的细节信息。

pidstat:统计正在运行的进程/任务的CPU、内存等信息。

sar:保存和报告不同资源(CPU、内存、输入输出、网络、内核等)的详细信息。

sadc:系统活动数据收集器,用于为sar收集后台的数据。

sa1:读取和存储sadc的数据文件的二进制数据。

sa2:和sar协作,用于总结每日报告。

Sadf:以不同的格式(CSV或XML)显示sar生成的数据。

Sysstat:解释sysstat的各种作用。

nfsiostat-sysstat:统计NFS协议的网络文件系统的 I/O状态数据。

cifsiostat:统计CIFS协议的网络文件系统的 I/O状态数据。

 

在Linux系统下安装Sysstat

这个“Sysstat”软件包当然是可以在主要的Linux发行版的软件包仓库中获得并安装。但是,这个从软件库里获得的软件包是缩小版的而且是旧版。所以,这就是为什么我们要在软件包的所在官网下载和安装最新版本的理由。

首先,请使用下面的链接下载最新版本的sysstat软件包,目前最新版本为2018-06-01的sysstat-11.7.4版。

下载地址github下载

接下来,提取下载的软件包,然后进入该目录中,开始编译过程。

# tar -xvf sysstat-11.7.4.tar.gz

# cd sysstat-11.7.4/

到这一步时,有两个选择:

a)其一,你可以使用iconfig命令(这将让你有为每个参数设置自定义值的自由)。

# ./iconfig

b)其二,你可以使用标准的configure命令命令来定义单个行的选项。也就是运行./configure –help命令获得被支持的选项列表。

# ./configure --help

这里,我们采用标准选项即使用./configure命令来编译sysstat软件包。

# ./configure

# make

# make install    

编译完成后,你会看到类似上面的输出结果。现在通过运行一下命令验证sysstat的版本。

# mpstat -V

sysstat version 11.7.4

(C) Sebastien Godard (sysstat <at> orange.fr)

 

在Linux系统下更新Sysstat

默认情况下,编译安装将会把软件包放在 /usr/local”目录。所以,所有的二进制/公共文件都会被安装在 “/usr/local/bin”目录。如果你已经安装了sysstat软件包,那么可以直接在 “/usr/bin”中找到那些文件。

如果你已经安装了sysstat软件包,并且你的系统中“$PATH”变量没有加入“/usr/local/bin”,那么你将不会收到有关版本更新的提示。所以在更新之前的编译或删除现有版本过程中,请一定确认好系统的“$PATH”变量中是否已经设置了“/usr/local/bin”或者已经能够给–prefix 选项配置了“/usr”内容。

# yum remove sysstat            [On <strong>RedHat</strong> based System]

# apt-get remove sysstat        [On <strong>Debian</strong> based System]

# ./configure --prefix=/usr

# make

# make install

现在,使用相同的“”mpstat命令和“-V”选项再一次确认更新的版本。

# mpstat -V

sysstat version 11.7.4

(C) Sebastien Godard (sysstat <at> orange.fr)

 

附Installation

1.Install from RHEL/Fedora/CentOS

Enter:

$ sudo yum install sysstat

CentOS and Fedora systems call the collector process using a cron job in /etc/cron.d and it's enabled by default. On recent versions, systemd is used instead of cron. You may need to enable and start the sysstat service:

$ sudo systemctl enable sysstat

$ sudo systemctl start sysstat

2.Install from Ubuntu

Enter:

$ sudo apt-get install sysstat

Then enable data collecting:

$ sudo vi /etc/default/sysstat

change ENABLED="false" to ENABLED="true"

save the file

Last, restart the sysstat service:

$ sudo service sysstat restart

3.Install from sources

Clone sysstat public repository with:

$ git clone git://github.com/sysstat/sysstat

Then configure sysstat for your system:

$ cd sysstat

$ ./configure

You can set several variables and parameters on the command line. For example you can enter the following option to activate data collecting (either using cron or systemd):

$ ./configure --enable-install-cron

Enter ./configure --help to display all possible options.

Note: There is another way to configure sysstat instead of entering ./configure: This is the Interactive Configuration script (iconfig) which will ask you for the value of the main sysstat variables and parameters. Enter ./iconfig then answer the questions or enter Return to accept the (sane) default values. For yes/no questions, answer 'y' or 'n' (without the quotes): It is case sensitive! You can also enter '?' to get a help message that will explain the meaning of each variable or parameter.

Compile and install:

$ make

$ sudo make install

 

相关主题

使用Nmon监控Linux系统性能

精选文章
热门文章