Chapter 6. Memory Tapset

Table of Contents

function::addr_to_node - Returns which node a given address belongs to within a NUMA system
function::bytes_to_string - Human readable string for given bytes
function::mem_page_size - Number of bytes in a page for this architecture
function::pages_to_string - Turns pages into a human readable string
function::proc_mem_data - Program data size (data + stack) in pages
function::proc_mem_data_pid - Program data size (data + stack) in pages
function::proc_mem_rss - Program resident set size in pages
function::proc_mem_rss_pid - Program resident set size in pages
function::proc_mem_shr - Program shared pages (from shared mappings)
function::proc_mem_shr_pid - Program shared pages (from shared mappings)
function::proc_mem_size - Total program virtual memory size in pages
function::proc_mem_size_pid - Total program virtual memory size in pages
function::proc_mem_string - Human readable string of current proc memory usage
function::proc_mem_string_pid - Human readable string of process memory usage
function::proc_mem_txt - Program text (code) size in pages
function::proc_mem_txt_pid - Program text (code) size in pages
function::vm_fault_contains - Test return value for page fault reason
probe::vm.brk - Fires when a brk is requested (i.e. the heap will be resized)
probe::vm.kfree - Fires when kfree is requested
probe::vm.kmalloc - Fires when kmalloc is requested
probe::vm.kmalloc_node - Fires when kmalloc_node is requested
probe::vm.kmem_cache_alloc - Fires when kmem_cache_alloc is requested
probe::vm.kmem_cache_alloc_node - Fires when kmem_cache_alloc_node is requested
probe::vm.kmem_cache_free - Fires when kmem_cache_free is requested
probe::vm.mmap - Fires when an mmap is requested
probe::vm.munmap - Fires when an munmap is requested
probe::vm.oom_kill - Fires when a thread is selected for termination by the OOM killer
probe::vm.pagefault - Records that a page fault occurred
probe::vm.pagefault.return - Indicates what type of fault occurred
probe::vm.write_shared - Attempts at writing to a shared page
probe::vm.write_shared_copy - Page copy for shared page write

This family of probe points is used to probe memory-related events or query the memory usage of the current process. It contains the following probe points: