Guest User

Untitled

a guest
Jul 16th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. root@domU-12-31-39-03-1A-5A:/etc/munin/plugins# munin-run memory
  2. slab.value 109867008
  3. swap_cache.value 0
  4. page_tables.value 0
  5. vmalloc_used.value 7340032
  6. apps.value 491507712
  7. free.value 6626140160
  8. buffers.value 90103808
  9. cached.value 735678464
  10. swap.value 0
  11. committed.value 415891456
  12. mapped.value 13578240
  13. active.value 754020352
  14. inactive.value 295669760
  15.  
  16.  
  17.  
  18. root@domU-12-31-39-03-1A-5A:/etc/munin/plugins# munin-run memory config
  19. graph_args --base 1024 -l 0 --upper-limit 8053297152
  20. graph_vlabel Bytes
  21. graph_title Memory usage
  22. graph_category system
  23. graph_info This graph shows what the machine uses memory for.
  24. graph_order apps page_tables swap_cache slab cached buffers free swap
  25. apps.label apps
  26. apps.draw AREA
  27. apps.info Memory used by user-space applications.
  28. buffers.label buffers
  29. buffers.draw STACK
  30. buffers.info Block device (e.g. harddisk) cache. Also where "dirty" blocks are stored until written.
  31. swap.label swap
  32. swap.draw STACK
  33. swap.info Swap space used.
  34. cached.label cache
  35. cached.draw STACK
  36. cached.info Parked file data (file content) cache.
  37. free.label unused
  38. free.draw STACK
  39. free.info Wasted memory. Memory that is not used for anything at all.
  40. slab.label slab_cache
  41. slab.draw STACK
  42. slab.info Memory used by the kernel (major users are caches like inode, dentry, etc).
  43. swap_cache.label swap_cache
  44. swap_cache.draw STACK
  45. swap_cache.info A piece of memory that keeps track of pages that have been fetched from swap but not yet been modified.
  46. page_tables.label page_tables
  47. page_tables.draw STACK
  48. page_tables.info Memory used to map between virtual and physical memory addresses.
  49. vmalloc_used.label vmalloc_used
  50. vmalloc_used.draw LINE2
  51. vmalloc_used.info 'VMalloc' (kernel) memory used
  52. committed.label committed
  53. committed.draw LINE2
  54. committed.info The amount of memory allocated to programs. Overcommitting is normal, but may indicate memory leaks.
  55. mapped.label mapped
  56. mapped.draw LINE2
  57. mapped.info All mmap()ed pages.
  58. active.label active
  59. active.draw LINE2
  60. active.info Memory recently used. Not reclaimed unless absolutely necessary.
  61. inactive.label inactive
  62. inactive.draw LINE2
  63. inactive.info Memory not currently used.
Add Comment
Please, Sign In to add comment