From 42c5566805775fed6ac2f99d840bcbe531b112e8 Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Wed, 30 Dec 2009 19:33:06 +0100 Subject: Regenerate examples index to include new memory/vm.tracepoints.stp. --- testsuite/systemtap.examples/index.html | 3 +++ testsuite/systemtap.examples/index.txt | 10 ++++++++ testsuite/systemtap.examples/keyword-index.html | 17 ++++++++++++- testsuite/systemtap.examples/keyword-index.txt | 34 +++++++++++++++++++++++++ 4 files changed, 63 insertions(+), 1 deletion(-) (limited to 'testsuite') diff --git a/testsuite/systemtap.examples/index.html b/testsuite/systemtap.examples/index.html index 57cf0978..5c226901 100644 --- a/testsuite/systemtap.examples/index.html +++ b/testsuite/systemtap.examples/index.html @@ -124,6 +124,9 @@ keywords: MEMORY memory/pfaults.stp - Generate Log of Major and Minor Page Faults
keywords: MEMORY

The pfaults.stp script generates a simple log for each major and minor page fault that occurs on the system. Each line contains a timestamp (in microseconds) when the page fault servicing was completed, the pid of the process, the address of the page fault, the type of access (read or write), the type of fault (major or minor), and the elapsed time for page fault. This log can be examined to determine where the page faults are occurring.

+
  • memory/vm.tracepoints.stp - Collect slab allocation statistics
    +keywords: MEMORY SLAB ALLOCATOR
    +

    The script will probe all memory slab/slub allocations and collects information about the size of the object (bytes requested) and user-space process in execution. When run over a period of time, it helps to correlate kernel-space memory consumption owing to user-space processes.

  • network/autofs4.stp - Watch autofs4 operations
    keywords: NETWORK AUTOFS NFS

    Trace key autofs4 operations such as mounting or unmounting remote filesystems.

  • diff --git a/testsuite/systemtap.examples/index.txt b/testsuite/systemtap.examples/index.txt index 56c18c34..c1f7baff 100644 --- a/testsuite/systemtap.examples/index.txt +++ b/testsuite/systemtap.examples/index.txt @@ -271,6 +271,16 @@ keywords: memory determine where the page faults are occurring. +memory/vm.tracepoints.stp - Collect slab allocation statistics +keywords: memory slab allocator + + The script will probe all memory slab/slub allocations and collects + information about the size of the object (bytes requested) and + user-space process in execution. When run over a period of time, it + helps to correlate kernel-space memory consumption owing to + user-space processes. + + network/autofs4.stp - Watch autofs4 operations keywords: network autofs nfs diff --git a/testsuite/systemtap.examples/keyword-index.html b/testsuite/systemtap.examples/keyword-index.html index f7f08597..29f63635 100644 --- a/testsuite/systemtap.examples/keyword-index.html +++ b/testsuite/systemtap.examples/keyword-index.html @@ -39,7 +39,13 @@

    Examples by Keyword

    -

    AUTOFS BACKTRACE BUFFER CALLGRAPH CPU DEVICE DISK FILESYSTEM FORMAT FREE FUNCTIONS FUTEX GRAPH HACK INTERRUPT IO LOCKING MEMORY MONITOR MONITORING NETWORK NFS NUMA PER-PROCESS PROCESS PROFILING READ SCHEDULER SCSI SIGNALS SIMPLE SLEEP SOCKET STATISTICS SYSCALL TCP TIME TRACE TRACEPOINT TRAFFIC TTY USE WAIT4 WRITE

    +

    ALLOCATOR AUTOFS BACKTRACE BUFFER CALLGRAPH CPU DEVICE DISK FILESYSTEM FORMAT FREE FUNCTIONS FUTEX GRAPH HACK INTERRUPT IO LOCKING MEMORY MONITOR MONITORING NETWORK NFS NUMA PER-PROCESS PROCESS PROFILING READ SCHEDULER SCSI SIGNALS SIMPLE SLAB SLEEP SOCKET STATISTICS SYSCALL TCP TIME TRACE TRACEPOINT TRAFFIC TTY USE WAIT4 WRITE

    +

    ALLOCATOR

    +

    AUTOFS

    +

    SLAB

    +

    SLEEP