류짱:Beyond MySelf

성능 모니터에서 프로세스 ID로 성능 로그를 수집 하는 법 본문

Microsoft/Windows Platform

성능 모니터에서 프로세스 ID로 성능 로그를 수집 하는 법

リュちゃん 2012. 7. 11. 16:14

성능 모니터에서 프로세스 ID로 성능 로그를 수집 하는 법

프로세스의 성능 특히 메모리 사용량 변화 추이나 CPU 사용률 등을 확인 하기 위해서 성능 모니터를 이용해 프로세스의 개체에 대한 성능을 수집 합니다.
만약 이때 동일 이름으로 실행 되는 프로세스가 많이 있다면 성능 로그 수집 후에도 정확한 분석이 어려울 수 있습니다. 이럴경우 아래 KB를 이용해서 프로세스의 ID가 수집 되게 성능 로그 수집 하면 프로세스의 구분에 도움이 됩니다.|

By default, Performance Monitor (Perfmon.msc) displays multiple processes that have the same name by enumerating the processes in the following way:

Process#1
Process#2
Process#3

Performance Monitor can also display these processes by appending the process ID (PID) to the name in the following way:

Process_PID

The Process object in Performance Monitor can display Process IDs (PIDs)

시작 – 실행 – regedit
아래 레지스트리 키로 이동한 후

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PerfProc\Performance

DWORD 키를 만들어서 ProcessNameFormat으로 이름을 변경 합니다.
값을 1 로 설정하면 #1과 같이 이름이 표시 되고 2로 설정하면 PID가 표시 됩니다. 


감사합니다.

[참고 자료]
The Process object in Performance Monitor can display Process IDs (PIDs)
http://support.microsoft.com/default.aspx?scid=kb;EN-US;281884