Notice
Recent Posts
Recent Comments
Link
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

감사합니다.

vmstat 성능 수집하기 본문

Linux

vmstat 성능 수집하기

springjunny 2018. 6. 14. 23:33

==========================================================

#!/bin/sh

while true

do

vmstat 1 1 |\

awk -v time=`date +%H:%M:%S` 'BEGIN{line="";}{line = $0;}END{ print time line; }' \

>>  ${HOSTNAME}_vmstat_`date +%m%d`.txt

sleep 1

done

==========================================================

위 스크립트를 저장 후 실행하기

vmstat > perflog 와 같은 형태로만 사용하면 중간에 컬럼명이 삽입되어 데이터를 편집할 때 불편할 수 있다.



vmstat 해석하기


For a more concise understanding of system performance, try vmstat. With vmstat, it is possible to get an overview of process, memory, swap, I/O, system, and CPU activity in one line of numbers:

procs                      memory      swap          io     system         cpu
 r  b   swpd   free   buff  cache   si   so    bi    bo   in    cs us sy id wa
 0  0   5276 315000 130744 380184    1    1     2    24   14    50  1  1 47  0
        

The first line divides the fields in six categories, including process, memory, swap, I/O, system, and CPU related statistics. The second line further identifies the contents of each field, making it easy to quickly scan data for specific statistics.

The process-related fields are:

  • r — The number of runnable processes waiting for access to the CPU

  • b — The number of processes in an uninterruptible sleep state

The memory-related fields are:

  • swpd — The amount of virtual memory used

  • free — The amount of free memory

  • buff — The amount of memory used for buffers

  • cache — The amount of memory used as page cache

The swap-related fields are:

  • si — The amount of memory swapped in from disk

  • so — The amount of memory swapped out to disk

The I/O-related fields are:

  • bi — Blocks sent to a block device

  • bo — Blocks received from a block device

The system-related fields are:

  • in — The number of interrupts per second

  • cs — The number of context switches per second

The CPU-related fields are:

  • us — The percentage of the time the CPU ran user-level code

  • sy — The percentage of the time the CPU ran system-level code

  • id — The percentage of the time the CPU was idle

  • wa — I/O wait

When vmstat is run without any options, only one line is displayed. This line contains averages, calculated from the time the system was last booted.

However, most system administrators do not rely on the data in this line, as the time over which it was collected varies. Instead, most administrators take advantage of vmstat's ability to repetitively display resource utilization data at set intervals. For example, the command vmstat 1 displays one new line of utilization data every second, while the command vmstat 1 10 displays one new line per second, but only for the next ten seconds.

In the hands of an experienced administrator, vmstat can be used to quickly determine resource utilization and performance issues. But to gain more insight into those issues, a different kind of tool is required — a tool capable of more in-depth data collection and analysis.


'Linux' 카테고리의 다른 글

CentOS 7.6 Local Repository  (0) 2019.04.22
RHEL6 - Multipath 설정 정리하기  (0) 2019.04.10
Storsimple & Linux : iSCSI - MPIO 구성  (0) 2018.06.19
2TB 이상의 디스크 사용하기  (0) 2018.06.19
iSCSI Mount  (0) 2018.06.18
sysbench 사용법  (0) 2018.02.23