티스토리 뷰
윈도우의 logman.exe를 사용하여, CPU 로드 및 Memory상태 정보를 로깅하고 리눅스처럼 모니터링 하는 방법입니다.
CPU 로드 확인
C:\WINDOWS\system32\logman.exe create counter cpuload -c "\PhysicalDisk(_Total)\Avg. Disk Queue Length"
C:\WINDOWS\system32\logman.exe update cpuload -si 15 -f tsv -o c:\stat\cpuload.tsv --v
C:\WINDOWS\system32\logman.exe start cpuload
위 명령어를 cmd 창에 실행하면, 15초 단위로 시간 및 CPU 로드 데이터가 15초 cpuload.tsv 파일에 남게 됩니다.
"(PDH-TSV 4.0) (Korea Standard Time)(-540)" -> time
"\\HOSTNAME\PhysicalDisk(_Total)\Avg. Disk Queue Length" -> cpuload
리눅스의 uptime이나 top에서 나오는 min1, min5, min15 CPU 로드 평균값은, 아래와 같이 계산할 수 있습니다.
min1 : 1분 평균, 4개의 로깅값의 평균
min5 : 5분 평균, 20개의 로깅값의 평균
min15 : 15분 평균, 60개의 로깅값의 평균
Memory 사용률 확인
C:\WINDOWS\system32\logman.exe create counter memory -c "\Memory\Available Bytes" "\Memory\Cache Bytes" "\Memory\Commit Limit" "\Memory\Committed Bytes" "\Process(_Total)\IO Read Bytes/sec" "\Process(_Total)\IO Write Bytes/sec" "\Processor(_Total)\% Idle Time" "\Processor(_Total)\% Interrupt Time" "\Processor(_Total)\% Processor Time" "\Processor(_Total)\% User Time" "\Processor(_Total)\Interrupts/sec" "\System\Context Switches/sec"
C:\WINDOWS\system32\logman.exe update memory -si 30 -f tsv -o c:\stat\memory.tsv --v
C:\WINDOWS\system32\logman.exe start memory
위 명령어를 cmd 창에 실행하면, 30초 단위로 메모리 사용률이 memory.tsv 파일에 남게 됩니다.
"(PDH-TSV 4.0) (Korea Standard Time)(-540)" -> time
"\\HOSTNAME\Memory\Available Bytes" -> free
"\\HOSTNAME\Memory\Cache Bytes" -> cache
"\\HOSTNAME\Memory\Commit Limit" -> swpd
"\\HOSTNAME\Memory\Committed Bytes" -> buff
"\\HOSTNAME\Process(_Total)\IO Read Bytes/sec" -> bi
"\\HOSTNAME\Process(_Total)\IO Write Bytes/sec" -> bo
"\\HOSTNAME\Processor(_Total)\% Idle Time" -> id
"\\HOSTNAME\Processor(_Total)\% Interrupt Time" -> wa
"\\HOSTNAME\Processor(_Total)\% Processor Time" -> sy
"\\HOSTNAME\Processor(_Total)\% User Time" -> us
"\\HOSTNAME\Processor(_Total)\Interrupts/sec" -> in
"\\HOSTNAME\System\Context Switches/sec" -> cs
리눅스의 vmstat 명령을 통해서 추출되는 데이터와 맵핑하면 다음과 같고, 단위는 다르기 때문에 맞춰줘야 합니다.
[Procs]
r: 못찾음
b: 못찾음
[Memory]
swpd: Memory Object -> Commit Limit
free: Memory Object -> Available Bytes
buff: Memory Object -> Committed Bytes
cache: Memory Object -> Cache Bytes
[Swap]
si: 못찾음
so: 못찾음
[IO]
bi: process Object -> IO Read Bytes/sec
bo: process Object -> IO Write Bytes/sec
[System]
in: Processor Object -> Interrupts/sec
cs: System Object -> Context Switches/sec
[CPU]
us: Processor Object -> % User Time
sy: Processor Object -> % Processor Time
id: Processor Object -> % Idle Time
wa: Processor Object -> % Interrupt Time
st: 못찾음
'엔지니어링' 카테고리의 다른 글
디스크 Write 성능 향상 (0) | 2020.03.07 |
---|---|
Apache httpd 프로세스 제한 (0) | 2020.03.07 |
Apache httpd 세마포어 및 공유 메모리 삭제 (0) | 2020.03.06 |
Linux 호스트네임 네트워크 재시작 없이 변경하기 (0) | 2020.03.06 |
vmstata로 부하 체크 (0) | 2020.03.06 |
댓글
warpmemory
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
페이지
TAG
- PowerShell
- 이슈처리
- Python
- client
- code
- Ansible
- apache
- httpd
- Linux
- configuration
- engineering
- Module
- error
- File
- Windows
- limits
- monitoring
- mysql
- RESTful
- 외부링크
- 명령어
- example
- check
- command
- deview
- MariaDB
- Web
- 예제
- 번역
- 코드
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함