Powershell

자주 쓰는 성능 카운터 정리

김모우 2020. 10. 15. 20:12
728x90
반응형

<Network interface>

get-counter "\network interface(Network Interface)\Qutput Queue Length

Bytes Total/sec

Bytes Received/sec

Bytes Sent/sec

Packets/sec

Packets Received/sec

Packets Sent/sec

 

<Network adapter>

get-counter "\network adapter(Network adapter)\Qutput Queue Length

Bytes Total/sec

Bytes Received/sec

Bytes Sent/sec

Packets/sec

Packets Received/sec

Packets Sent/sec

 

<Process>

get-counter "\Process(Process)\% Privileged Time

% Processor Time

% User Time

IO Data Bytes/sec

IO Read Bytes/sec

IO Write Bytes/sec

Page faults/sec

Page File Bytes

Pool Nonpaged Bytes

Working Set - Private

Working Set Peak

 

<Processor>

get-counter "\Processor(0,1,2,3,*)\% Interrupt time

% Privileged Time

% Processor Time

% User Time

Interrupts/sec

 

<Processor Information>

get-counter "\Processor(_Total)\% Interrupt time

% Privileged Time

% Processor Time

% User Time

Interrupts/sec

 

<Memory>

get-counter "\Memory\% Committed Bytes In Use"

Available Bytes

Available MBytes

Page Faults/sec

Pages/sec

Pool Nonpaged Bytes

Transition Faults/sec

 

<System>

get-counter "\System\Context Switches/sec

File Read Bytes/sec

File Write Bytes/sec

Processes

Processor Queue Length

System Up Time

Thread

728x90
반응형

'Powershell' 카테고리의 다른 글

Get-WmiObject를 이용한 NIC 규격 구하기  (0) 2020.11.20
Findstr 사용법  (0) 2020.10.25
Powershell 개체  (0) 2020.10.15
Linux에서 Powershell 사용하기  (0) 2020.10.15
Powershell 엔진 업그레이드  (0) 2020.10.15