Advertisement
Guest User

Untitled

a guest
Nov 29th, 2010
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.77 KB | None | 0 0
  1. System process queue lengths and Load averages
  2. runq-sz
  3. Run queue length (number of tasks waiting for run time).
  4.  
  5. plist-sz
  6. Number of tasks in the task list.
  7.  
  8. ldavg-1
  9. System load average for the last minute. The load average is calculated as the average number of runnable or running tasks (R state), and the number of tasks in uninterruptible sleep (D state) over the specified interval.
  10.  
  11. ldavg-5
  12. System load average for the past 5 minutes.
  13.  
  14. ldavg-15
  15. System load average for the past 15 minutes.
  16.  
  17. Memory utilization statistics
  18. kbmemfree
  19. Amount of free memory available in kilobytes.
  20.  
  21. kbmemused
  22. Amount of used memory in kilobytes. This does not take into account memory used by the kernel itself.
  23.  
  24. %memused
  25. Percentage of used memory.
  26.  
  27. kbbuffers
  28. Amount of memory used as buffers by the kernel in kilobytes.
  29.  
  30. kbcached
  31. Amount of memory used to cache data by the kernel in kilobytes.
  32.  
  33. kbcommit
  34. Amount of memory in kilobytes needed for current workload. This is an estimate of how much RAM/swap is needed to guarantee that there never is out of memory.
  35.  
  36. %commit
  37. Percentage of memory needed for current workload in relation to the total amount of memory (RAM+swap). This number may be greater than 100% because the kernel usually overcommits memory.
  38.  
  39. Memory statistics
  40. frmpg/s
  41. Number of memory pages freed by the system per second. A negative value represents a number of pages allocated by the system. Note that page has a size of 4 kB or 8 kB according to the machine architecture.
  42.  
  43. bufpg/s
  44. Number of additional memory pages used as buffers by the system per second. A negative value means fewer pages used as buffers by the system.
  45.  
  46. campg/s
  47. Number of additional memory pages cached by the system per second. A negative value means fewer pages in the cache.
  48.  
  49. Swap space utilization statistics
  50. kbswpfree
  51. Amount of free swap space in kilobytes.
  52.  
  53. kbswpused
  54. Amount of used swap space in kilobytes.
  55.  
  56. %swpused
  57. Percentage of used swap space.
  58.  
  59. kbswpcad
  60. Amount of cached swap memory in kilobytes. This is memory that once was swapped out, is swapped back in but still also is in the swap area (if memory is needed it doesn't need to be swapped out again because it is already in the swap area. This saves I/O).
  61.  
  62. %swpcad
  63. Percentage of cached swap memory in relation to the amount of used swap space.
  64.  
  65. CPU utilization
  66. %user
  67. Percentage of CPU utilization that occurred while executing at the user level (application). Note that this field includes time spent running virtual processors.
  68.  
  69. %usr
  70. Percentage of CPU utilization that occurred while executing at the user level (application). Note that this field does NOT include time spent running virtual processors.
  71.  
  72. %nice
  73. Percentage of CPU utilization that occurred while executing at the user level with nice priority.
  74.  
  75. %system
  76. Percentage of CPU utilization that occurred while executing at the system level (kernel). Note that this field includes time spent servicing hardware and software interrupts.
  77.  
  78. %sys
  79. Percentage of CPU utilization that occurred while executing at the system level (kernel). Note that this field does NOT include time spent servicing hardware or software interrupts.
  80.  
  81. %iowait
  82. Percentage of time that the CPU or CPUs were idle during which the system had an outstanding disk I/O request.
  83.  
  84. %steal
  85. Percentage of time spent in involuntary wait by the virtual CPU or CPUs while the hypervisor was servicing another virtual processor.
  86.  
  87. %irq
  88. Percentage of time spent by the CPU or CPUs to service hardware interrupts.
  89.  
  90. %soft
  91. Percentage of time spent by the CPU or CPUs to service software interrupts.
  92.  
  93. %guest
  94. Percentage of time spent by the CPU or CPUs to run a virtual processor.
  95.  
  96. %idle
  97. Percentage of time that the CPU or CPUs were idle and the system did not have an outstanding disk I/O request.
  98. Note: On SMP machines a processor that does not have any activity at all (0.00 for every field) is a disabled (offline) processor.
  99.  
  100. Task creation and system switching activity
  101. proc/s
  102. Total number of tasks created per second.
  103.  
  104. cswch/s
  105. Total number of context switches per second.
  106.  
  107. Swapping statistics
  108. pswpin/s
  109. Total number of swap pages the system brought in per second.
  110.  
  111. pswpout/s
  112. Total number of swap pages the system brought out per second.
  113.  
  114. I/O and transfer rate statistics:
  115. tps
  116. Total number of transfers per second that were issued to physical devices. A transfer is an I/O request to a physical device. Multiple logical requests can be combined into a single I/O request to the device. A transfer is of indeterminate size.
  117.  
  118. rtps
  119. Total number of read requests per second issued to physical devices.
  120.  
  121. wtps
  122. Total number of write requests per second issued to physical devices.
  123.  
  124. bread/s
  125. Total amount of data read from the devices in blocks per second. Blocks are equivalent to sectors and therefore have a size of 512 bytes.
  126.  
  127. bwrtn/s
  128. Total amount of data written to devices in blocks per second.
  129.  
  130. Activity for each block device ( block devices statistics )
  131. tps
  132. Indicate the number of transfers per second that were issued to the device. Multiple logical requests can be combined into a single I/O request to the device. A transfer is of indeterminate size.
  133.  
  134. rd_sec/s
  135. Number of sectors read from the device. The size of a sector is 512 bytes.
  136.  
  137. wr_sec/s
  138. Number of sectors written to the device. The size of a sector is 512 bytes.
  139.  
  140. avgrq-sz
  141. The average size (in sectors) of the requests that were issued to the device.
  142.  
  143. avgqu-sz
  144. The average queue length of the requests that were issued to the device.h2. await The average time (in milliseconds) for I/O requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them.
  145.  
  146. svctm
  147. The average service time (in milliseconds) for I/O requests that were issued to the device. Warning! Do not trust this field any more. This field will be removed in a future sysstat version.
  148.  
  149. %util
  150. Percentage of CPU time during which I/O requests were issued to the device (bandwidth utilization for the device). Device saturation occurs when this value is close to 100%.)
  151.  
  152. Paging statistics
  153. pgpgin/s
  154. Total number of kilobytes the system paged in from disk per second.
  155.  
  156. pgpgout/s
  157. Total number of kilobytes the system paged out to disk per second.
  158.  
  159. fault/s
  160. Number of page faults (major + minor) made by the system per second. This is not a count of page faults that generate I/O, because some page faults can be resolved without I/O.
  161.  
  162. majflt/s
  163. Number of major faults the system has made per second, those which have required loading a memory page from disk.
  164.  
  165. pgfree/s
  166. Number of pages placed on the free list by the system per second.
  167.  
  168. pgscank/s
  169. Number of pages scanned by the kswapd daemon per second.
  170.  
  171. pgscand/s
  172. Number of pages scanned directly per second.
  173.  
  174. pgsteal/s
  175. Number of pages the system has reclaimed from cache (pagecache and swapcache) per second to satisfy its memory demands.
  176.  
  177. %vmeff
  178. Calculated as pgsteal / pgscan, this is a metric of the efficiency of page reclaim. If it is near 100% then almost every page coming off the tail of the inactive list is being reaped. If it gets too low (e.g. less than 30%) then the virtual memory is having some difficulty. This field is displayed as zero if no pages have been scanned during the interval of time.
  179.  
  180. Network DEVICES statistics
  181. rxpck/s
  182. Total number of packets received per second.
  183.  
  184. txpck/s
  185. Total number of packets transmitted per second.
  186.  
  187. rxkB/s
  188. Total number of kilobytes received per second.
  189.  
  190. txkB/s
  191. Total number of kilobytes transmitted per second.
  192.  
  193. rxcmp/s
  194. Number of compressed packets received per second (for cslip etc.)
  195.  
  196. txcmp/s
  197. Number of compressed packets transmitted per second.
  198.  
  199. rxmcst/s
  200. Number of multicast packets received per second.
  201.  
  202. Network DEVICES ERROR statistics
  203. rxerr/s
  204. Total number of bad packets received per second.
  205.  
  206. txerr/s
  207. Total number of errors that happened per second while transmitting packets.
  208.  
  209. coll/s
  210. Number of collisions that happened per second while transmitting packets.
  211.  
  212. rxdrop/s
  213. Number of received packets dropped per second because of a lack of space in linux buffers.
  214.  
  215. txdrop/s
  216. Number of transmitted packets dropped per second because of a lack of space in linux buffers.
  217.  
  218. txcarr/s
  219. Number of carrier-errors that happened per second while transmitting packets.
  220.  
  221. rxfram/s
  222. Number of frame alignment errors that happened per second on received packets.
  223.  
  224. rxfifo/s
  225. Number of FIFO overrun errors that happened per second on received packets.
  226.  
  227. txfifo/s
  228. Number of FIFO overrun errors that happened per second on transmitted packets.
  229.  
  230. SOCK statistics (IPV4)
  231. totsck
  232. Total number of sockets used by the system.
  233.  
  234. tcpsck
  235. Number of TCP sockets currently in use.
  236.  
  237. udpsck
  238. Number of UDP sockets currently in use.
  239.  
  240. rawsck
  241. Number of RAW sockets currently in use.
  242.  
  243. ip-frag
  244. Number of IP fragments currently in use.
  245.  
  246. tcp-tw
  247. Number of TCP sockets in TIME_WAIT state.
  248.  
  249. IPv4 network traffic Statistics
  250. irec/s
  251. The total number of input datagrams received from interfaces per second, including those received in error [ipInReceives].
  252.  
  253. fwddgm/s
  254. The number of input datagrams per second, for which this entity was not their final IP destination, as a result of which an attempt was made to find a route to forward them to that final destination [ipForwDatagrams].
  255.  
  256. idel/s
  257. The total number of input datagrams successfully delivered per second to IP user-protocols (including ICMP) [ipInDelivers].
  258.  
  259. orq/s
  260. The total number of IP datagrams which local IP user-protocols (including ICMP) supplied per second to IP in requests for transmission [ipOutRequests]. Note that this counter does not include any datagrams counted in fwddgm/s.
  261.  
  262. asmrq/s
  263. The number of IP fragments received per second which needed to be reassembled at this entity [ipReasmReqds].
  264.  
  265. asmok/s
  266. The number of IP datagrams successfully re-assembled per second [ipReasmOKs].
  267.  
  268. fragok/s
  269. The number of IP datagrams that have been successfully fragmented at this entity per second [ipFragOKs].
  270.  
  271. fragcrt/s
  272. The number of IP datagram fragments that have been generated per second as a result of fragmentation at this entity [ipFragCreates].
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement