Showing posts with label Sysstat. Show all posts
Showing posts with label Sysstat. Show all posts

Monday, July 18, 2016

CentOS: Installing Sysstat

Command:

# yum install sysstat

Result:

Failed to set locale, defaulting to C
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: ftp.jaist.ac.jp
 * extras: ftp.jaist.ac.jp
 * updates: ftp.jaist.ac.jp
Resolving Dependencies
--> Running transaction check
---> Package sysstat.x86_64 0:10.1.5-7.el7 will be installed
--> Processing Dependency: libsensors.so.4()(64bit) for package: sysstat-10.1.5-7.el7.x86_64
--> Running transaction check
---> Package lm_sensors-libs.x86_64 0:3.3.4-11.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

==============================================================================================================
 Package                        Arch                  Version                       Repository           Size
==============================================================================================================
Installing:
 sysstat                        x86_64                10.1.5-7.el7                  base                296 k
Installing for dependencies:
 lm_sensors-libs                x86_64                3.3.4-11.el7                  base                 40 k

Transaction Summary
==============================================================================================================
Install  1 Package (+1 Dependent package)

Total download size: 336 k
Installed size: 1.1 M
Is this ok [y/d/N]: y
Downloading packages:
(1/2): lm_sensors-libs-3.3.4-11.el7.x86_64.rpm                                         |  40 kB  00:00:01    
(2/2): sysstat-10.1.5-7.el7.x86_64.rpm                                                                                                       | 296 kB  00:00:06    
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                                                                55 kB/s | 336 kB  00:00:06    
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : lm_sensors-libs-3.3.4-11.el7.x86_64                                                                                                              1/2
  Installing : sysstat-10.1.5-7.el7.x86_64                                                                                                                      2/2
  Verifying  : sysstat-10.1.5-7.el7.x86_64                                                                                                                      1/2
  Verifying  : lm_sensors-libs-3.3.4-11.el7.x86_64                                                                                                              2/2

Installed:
  sysstat.x86_64 0:10.1.5-7.el7                                                                                                                                    

Dependency Installed:
  lm_sensors-libs.x86_64 0:3.3.4-11.el7                                                                                                                            

Complete!

Saturday, July 16, 2016

sar: System Admin Reporter

Command:

$ sar

Result:

Linux 4.4.0-22-generic (remote) 2016年07月16日 _x86_64_ (1 CPU)

05時15分02秒     CPU     %user     %nice   %system   %iowait    %steal     %idle
05時25分01秒     all      1.50      0.11      0.80      2.88      0.00     94.70
05時35分01秒     all      0.00      0.00      0.00      0.04      0.00     99.96
05時45分01秒     all      0.01      0.00      0.01      0.12      0.00     99.87
???:            all      0.50      0.04      0.27      1.01      0.00     98.19

Tuesday, May 17, 2016

Sysstat: Status

$ sudo service sysstat status
● sysstat.service - LSB: Start/stop sysstat's sadc
   Loaded: loaded (/etc/init.d/sysstat; bad; vendor preset: enabled)
   Active: active (exited) since 月 2016-05-16 23:43:06 JST; 17h ago
     Docs: man:systemd-sysv-generator(8)
  Process: 396 ExecStart=/etc/init.d/sysstat start (code=exited, status=0/SUCCESS)
    Tasks: 0 (limit: 512)

 5月 16 23:43:06 remote systemd[1]: Starting LSB: Start/stop sysstat's sadc...
 5月 16 23:43:06 remote systemd[1]: Started LSB: Start/stop sysstat's sadc.
 5月 17 00:02:47 remote systemd[1]: Started LSB: Start/stop sysstat's sadc.
 5月 17 00:03:28 remote systemd[1]: Started LSB: Start/stop sysstat's sadc.
 5月 17 00:04:01 remote systemd[1]: Started LSB: Start/stop sysstat's sadc.

Monday, May 16, 2016

Ubuntu: Install, Configure, and Run Sysstat

Installation:

$ sudo apt-get install sysstat


Configuration:

$ cat /etc/default/sysstat
#
# Default settings for /etc/init.d/sysstat, /etc/cron.d/sysstat
# and /etc/cron.daily/sysstat files
#

# Should sadc collect system activity informations? Valid values
# are "true" and "false". Please do not put other values, they
# will be overwritten by debconf!
ENABLED="true"


Execution:

$ sudo service sysstat start