O que significam valores altos, baixos, negativos e constantes do comando pidstat?

0

Eu precisava de informações sobre o seguinte:

Você pode, por favor, me dizer a inferência para o seguinte em termos de valores altos, baixos, negativos e constantes do comando pidstat no Linux.

kB_rd / s, kB_wr / s, kB_ccwr / s, VSZ, RSS, cswch / s, nvcswch / se Memória.

Qualquer direção para uma fonte relevante de informações também será útil.

    
por Subiah R Nagarajan 23.07.2013 / 11:07

1 resposta

1

Na página do manual de pidstat :

kB_rd/s

Number of kilobytes the task has caused to be read from disk per second. This defines how many kB has the process read per second. You can identify how many kB is being read by the process. More active the process reading large or several files in your disk, the higher the value.

kB_wr/s

Number of kilobytes the task has caused, or shall cause to be written to disk per second. This defines how many kB has the process wrote per second. You can identify how many kB is being wrote by the process. More active the process writing large or several files in your disk, the higher the value.

kB_ccwr/s

Number of kilobytes whose writing to disk has been cancelled by the task. This may occur when the task truncates some dirty pagecache. In this case, some IO which another task has been accounted for will not be happening. Self explanatory.

VSZ

Virtual Size: The virtual memory usage of entire task in kilobytes. Depending of the program, this value may be high or low. Process are allocated virtual memory while running. More info about Virtual Memory

RSS

Resident Set Size: The non-swapped physical memory used by the task in kilobytes. Amount of physical memory (RAM) used.

cswch/s

Total number of voluntary context switches the task made per second. A voluntary context switch occurs when a task blocks because it requires a resource that is unavailable. Or said in other terms, the system had no resources available when the process asked for them (can be I/O, Memory, CPU, etc.)

nvcswch/s

Total number of non voluntary context switches the task made per second. A involuntary context switch takes place when a task executes for the duration of its time slice and then is forced to relinquish the processor. Same as above, just that the process was forced to stop it's execution while running. Ex.: This can happens when a process with higher priority starts nagging for resources while normal priority ones are running.

Não encontrei nenhuma informação específica sobre 'Memória' como valores anteriores, mas a opção -r mostra "falhas de página e utilização de memória". Nenhum dos valores deve ser negativo (pelo menos não como eles são definidos).

pidstat é extremamente útil, quando você gosta de monitorar o comportamento de diferentes processos em um tempo e condição específicos (como um instantâneo), mas para monitoramento contínuo outras ferramentas como top são mais aconselháveis.

A página do manual do pidstat.

    
por 23.07.2013 / 11:41