2017-05-04 4 views

Antwort

0

Ich würde davon ausgehen, dass cpu_ctxt die Zahl darstellt von Kontextumschaltungen, wie sie von /proc/stat (siehe) oder vmstat (cs Feld) gemeldet werden.

Auch offenbart man top die Bedeutung der anderen Metriken:

 us, user : time running un-niced user processes 
     sy, system : time running kernel processes 
     ni, nice : time running niced user processes 
     id, idle : time spent in the kernel idle handler 
     wa, IO-wait : time waiting for I/O completion 
     hi : time spent servicing hardware interrupts 
     si : time spent servicing software interrupts 
     st : time stolen from this vm by the hypervisor 

wo:

  • cpu_intr Karten hi
  • cpu_sintr Karten si
  • cpu_aidle Karten id
  • cpu_steal Karten zu st

Auch this und this Antwort sehen.

Verwandte Themen