Em 'atop', MEM (o valor percentual) reflete PSIZE ou somente RSIZE?

0

Quando o PSIZE está disponível, o atop o utiliza para tornar a figura do MEM mais útil, ou o número de MEM em atop sempre reflete o RSIZE (RSS)?

A manpage parece inútil.

MEM

The occupation percentage of this process related to the available capacity for this resource on system level.

    
por sourcejedi 18.02.2018 / 12:04

1 resposta

0

Eu testei em atop-2.3.0-8.fc27.x86_64 .

RSIZE, não PSIZE, é usado ao ordenar por uso de memória (use a tecla M ), e para a coluna MEM.

RSIZE   PSIZE   MEM
311.0M  260.2M  4%
303.3M  288.1M  4%
217.6M  123.1M  3%

Saída mais detalhada:

  PID    TID  MINFLT  MAJFLT  VSTEXT  VSLIBS   VDATA  VSTACK   VSIZE   RSIZE   PSIZE   VGROW   RGROW  SWAPSZ  RUID      EUID       MEM  CMD

 1782      -    2413       0     16K  96480K  361.5M    288K    3.8G  311.0M  260.2M  10772K   9448K      0K  alan  alan        4%  gnome-shell
 1455      -       0       0    280K  30860K  340.8M    132K    1.0G  303.3M  288.1M      0K      0K      0K  root  root        4%  packagekitd
13561      -   41988      34    196K  143.2M  298.0M    136K    2.2G  217.6M  123.1M  255.3M  139.0M      0K  alan  alan        3%  Web Content
13333      -   25219       0    196K  119.6M  277.9M    144K    2.1G  190.9M  111.9M      0K   3560K      0K  alan  alan        2%  Web Content

link

The memory percentage (column MEM) shows the resident memory occupation by this process, because that is what matters when your system starts swapping.

link

The memory details (subcommand 'm') show the current RSS per process in the column RSIZE and (as a percentage of the total memory installed) in the column MEM.

    
por 18.02.2018 / 12:04

Tags