Введення / виведення жорсткого диска на Pid


9

чи є спосіб побачити введення / виведення диска на pid / процес? Monitorix показує мені наступне і виправляє мене, якщо я помиляюся, але схоже, що жорсткий диск уповільнює всю систему: введіть тут опис зображення

ОНОВЛЕННЯ №1

Зверху, здається, чудовий огляд над усім.

  • Чи можу я запитати вас, що означає очікування, яке я позначив червоним?
  • Це чекання з дискового вводу / виводу?

введіть тут опис зображення


2
У вас є або вершина,
іотоп

1
@sebelk Гей, я оновив питання, було б добре, якщо ви можете поглянути. :)
користувач2693017

1
вибрати кращу відповідь не вдалося, тому я вирішив взяти ту, яка мені найбільше допомогла, і підтримала інші.
користувач2693017

@ user2693017 - це абсолютно чудово, оскільки ОП - це ваша прерогатива, яка найкраще відповідає вашим потребам.
slm

Відповіді:


3

Мені важко добре дивитися на ці фотографії, але:

Погляньте на людину зверху:

Цікаво, якщо ви нарешті просите про іншу річ, у розділі CPU ви маєте:

Every  line contains the percentage of cpu time spent in kernel mode by all
active processes (`sys'), the percentage of cpu time consumed in user mode
(`user') for all active processes (including processes running with a nice
value larger than zero), the  percentage  of  cpu  time spent  for  interrupt
handling  (`irq')  including  softirq, the percentage of unused cpu time while
no processes were waiting for disk-I/O (`idle'), and the percentage of unused
cpu time while at least one process was waiting for disk-I/O (`wait').

In case of per-cpu occupation, the last column shows the cpu number and the
wait percentage (`w') for that cpu.  The number of lines showing the per-cpu
occupation can be limited.

У будь-якому випадку ви можете прочитати статистику, що стосується диска:

d    Show disk-related output.

            When "storage accounting" is active in  the  kernel,  the  
            following  fields  are shown: process-id, amount of data read 
            from disk, amount of data written to disk, amount of data that 
            was written but has been withdrawn again (WCANCL), disk 
            occupation percentage and process name.

А також ці варіанти.

D

    D   Sort  the  current  list  in the order of disk accesses issued.  
        The one-but-last column changes to ``DSK''.
        ...

РДДСК

RDDSK   When the kernel maintains standard io statistics (>= 2.6.20):

        The  read  data  transfer issued physically on disk (so reading from 
        the disk cache is not accounted for).
        ...

WRDSK

WRDSK   When the kernel maintains standard io statistics (>= 2.6.20):

        The  write  data  transfer  issued physically on disk (so writing to 
        the disk cache is not accounted for).  This counter is maintained 
        for the  application process  that writes its data to the cache 
        (assuming that this data is physically transferred to disk later 
        on). Notice that disk I/O needed for swapping is not taken into 
        account.
        ....

LVM / MDD / DSK

LVM/MDD/DSK
        Logical volume/multiple device/disk utilization. 

        Per active unit one line is produced, sorted on unit activity.
        Such  line shows the name (e.g. VolGroup00-lvtmp for a logical
        volume or sda for a hard disk), the busy percentage i.e. the
        portion of time that the unit was busy handling requests
        (`busy'),  the  number  of  read  requests  issued  (`read'), the
        number of write requests issued (`write'), the number of KiBytes
        per read (`KiB/r'),  the  number of  KiBytes  per write
        (`KiB/w'), the number of MiBytes per second throughput for reads
        (`MBr/s'),  the  number  of  MiBytes  per second  throughput  for
        writes (`MBw/s'), the average queue depth (`avq') and the average
        number of milliseconds needed by a request (`avio') for seek,
        latency and data transfer.

        If the screen-width does not allow all of these counters, only a
        relevant subset is shown.

        The  number of lines showing the units can be limited per class
        (LVM, MDD or DSK) with the 'l' key or statically (see separate
        man-page of atoprc).  By specifying the  value  0  for  a
        particular class, no lines will be shown any more for that class.

дуже дякую. Якщо це важко через розмір, перейдіть за прямим посиланням: i.stack.imgur.com/5ifJi.png
user2693017

8

Я вважаю, що інструментів багато. Один з них pidstat:

pidstat -d 5

Показує введення / виведення процесів кожні 5 секунд.

Приклад

$ pidstat -d 5
Linux 3.12.11-201.fc19.x86_64 (greeneggs.bubba.net)     03/04/2014  _x86_64_    (4 CPU)

06:19:05 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s  Command
06:19:10 PM  1000     29486      0.00    317.93      0.00  chrome

06:19:10 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s  Command
06:19:15 PM  1000     29486      0.00    368.00      0.00  chrome

06:19:15 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s  Command
06:19:20 PM  1000     29486      0.00    591.62    836.73  chrome

06:19:20 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s  Command
06:19:25 PM  1000      2410      0.00      0.80      0.00  mono
06:19:25 PM  1000     29486      0.00    262.40      0.00  chrome
^C

Average:      UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s  Command
Average:     1000      2410      0.00      0.20      0.00  mono
Average:     1000     29486      0.00    385.02    209.29  chrome

З тієї точки, де ви бачите Ctrl+ C(ака. ^C) - підсумки тривалості пробігу вище.


приємно, чи можна пустити його протягом 1 години і отримати загальні результати?
користувач2693017

можливо, я ще не пробував цього. Ви також можете визначити PID, який ви хочете перевірити.

3

Погляньте на цей запит U&L під назвою: Мікро екземпляр Amazon EC2 з великим числом запитів вводу- виводу , де я надаю деталі навколо інструменту, який називається fatrace. Я також висвітлюю це в цьому запитанні з назвою: Визначення конкретних файлів, відповідальних за високий ввід / вивід .

фетрас

Це нове доповнення до ядра Linux і привітання, тому воно є лише в нових дистрибутивах, таких як Ubuntu 12.10. Моїй системі Fedora 14 цього не вистачало 8-).

Він надає той самий доступ, який ви можете отримати через ініціювати, не маючи націлювання на певний каталог та / або файли.

$ sudo fatrace
pickup(4910): O /var/spool/postfix/maildrop
pickup(4910): C /var/spool/postfix/maildrop
sshd(4927): CO /etc/group
sshd(4927): CO /etc/passwd
sshd(4927): RCO /var/log/lastlog
sshd(4927): CWO /var/log/wtmp
sshd(4927): CWO /var/log/lastlog
sshd(6808): RO /bin/dash
sshd(6808): RO /lib/x86_64-linux-gnu/ld-2.15.so
sh(6808): R /lib/x86_64-linux-gnu/ld-2.15.so
sh(6808): O /etc/ld.so.cache
sh(6808): O /lib/x86_64-linux-gnu/libc-2.15.so

Наведене вище показує вам ідентифікатор процесу, до якого здійснюється доступ до файлу, і до якого файлу він отримує доступ, але він не дає вам загального використання пропускної здатності, тому кожен доступ не відрізняється від будь-якого іншого доступу.

ПРИМІТКА: fatrace можна взяти -p PIDаргумент, щоб ви могли направити його на перегляд одного PID, якщо хочете замість цього.


Дійсно приємний інструмент, дякую, що я про це не знав!
sebelk

у вас є споріднений і приємний інструмент, який є ftop
sebelk

@sebelk - так, спасибі, це теж встановлено.
slm

Мені подобається цей інструмент. Він показує, яке завдання отримує доступ до яких файлів на диску. Ці файли також можуть бути скопійовані, тому трапляється лише доступ до буфера, а не доступ до IO.
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.