summaryrefslogtreecommitdiffstats
path: root/examples
Commit message (Collapse)AuthorAgeFilesLines
* syscalltimes, syscalltimes.txt: New combination shell/SystemTap scriptmmason2007-10-103-0/+408
| | | | to measure system call times.
* PR1119: unused variable elision warningsfche2007-10-064-3/+11
| | | | | | | | | | | | | | | | | | 2007-10-05 Frank Ch. Eigler <fche@elastic.org> PR 1119 * elaborate.cxx (semantic_pass_opt[12]): Warn on elided variables/functions in user script. * session.h (suppress_warnings): New field. Change "timing" to plain old bool. * main.cxx (main): Configure warnings on by default. * stap.1.in: Document this. PR 1119. * systemtap.base/warnings.*: New test. * futexes.stp, sig_by_proc.stp, small_demos/rwtiming.stp: Fix elision warnings.
* grammar tweaksfche2007-09-271-9/+8
| | | | Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
* 2007-09-15 Wenji Huang <wenji.huang@oracle.com>wenji2007-09-163-6/+15
| | | | | * iostat-scsi.stp: Make module probe optional,clarify reference to flags. * small_demos/sched_snoop.stp(scheduler.migrage,scheduler.balance): Make optional.
* 2007-09-05 Frank Ch. Eigler <fche@elastic.org>fche2007-09-052-6/+10
| | | | * pf2.stp: Exploit sortable aggregates.
* 2007-08-09 Frank Ch. Eigler <fche@elastic.org>fche2007-08-0915-7/+24
| | | | | PR 4718, from Eugeniy Meshcheryakov <eugen@debian.org>: * *.stp: Make all shell scripts lead with #! /usr/bin/stap
* Script to track when a specific PID receives a specific signal.mmason2007-06-051-0/+35
|
* Updated to reflect new script names.mmason2007-05-312-2/+2
|
* More renamesmmason2007-05-313-0/+0
|
* Renamed sig_count_by_pid.stp to sig_by_pid.stpmmason2007-05-311-0/+0
|
* Changed top.stp to use the system calls tapset.mmason2007-05-291-1/+1
|
* Scripts to print signal activity based on process ID and/or name.mmason2007-05-295-0/+127
|
* Added a couple simple syscall example scripts.mmason2007-04-244-0/+149
|
* 2007-04-02 Frank Ch. Eigler <fche@elastic.org>fche2007-04-024-3/+8
| | | | | | | | | | | | * tapsets.cxx (query_dwarf_func): Skip non-inlined functions for .function().inline case. 2007-04-02 Frank Ch. Eigler <fche@elastic.org> * socket-trace.stp, small_demos/prof.stp, top.stp: Adapt to .inline -> .function change. * semko/twentyone.stp: Ditto.
* excise memories of /usr/localfche2007-02-191-1/+1
|
* 2007-01-30 Frank Ch. Eigler <fche@elastic.org>fche2007-01-302-1/+11
| | | | * socket-trace.stp: Added from the tutorial.
* New example that uses a shell script to process command line options for a ↵mmason2007-01-293-0/+389
| | | | systemtap script.
* Add iotime.stp, sleeptime.stp, and wait4time.stp examples.wcohen2007-01-114-0/+237
|
* * moving examples/ changelog entriesfche2007-01-101-0/+4
|
* 2007-01-10 Martin Hunt <hunt@redhat.com>hunt2007-01-102-5/+19
| | | | * small_demos/top.stp: Use "limit" option in foreach.
* 2007-01-01 Frank Ch. Eigler <fche@redhat.com>fche2007-01-029-0/+229
| | | | | | | * configure.ac: Bump version to 0.5.12 for release. * configure: Regenerated. * NEWS, AUTHORS: Populate & repopulate. * examples/*: Added several .stp/.txt files from the wiki.
* 2006-09-26 David Smith <dsmith@redhat.com>dsmith2006-09-262-3/+3
| | | | | | | | | | | | | | | | | | | | | * .cvsignore: Changed 'stpd' reference to 'staprun'. * INTERNALS: Ditto. * buildrun.cxx (run_pass): Ditto. * lket.5.in: Ditto. * stap.1.in: Ditto. * stapruncs.5.in: Ditto. * examples/small_demos/demo_script.txt: Ditto. * examples/small_demos/sys.stp: Ditto. * systemtap.spec.in: Created a new subpackage, "systemtap-runtime", that contains staprun. * Makefile.am: Renamed 'stpd' to 'staprun' and moved it to $(bindir). * Makefile.in: Regenerated from Makefile.am. * configure.ac: Incremented version number. * configure: Regenerated from configure.ac.
* 2006-08-09 Josh Stone <joshua.i.stone@intel.com>jistone2006-08-101-4/+4
| | | | | | | | | * tapset/signal.stp: Create a new tapset that addresses process signals. Much of this was contributed by Manoj Pattabhiraman (IBM). * tapset/process.stp: Remove aliases that now belong in signal tapset * examples/small_demos/proc_snoop.stp, testsuite/buildok/process_test.stp: Rename process.signal_* to new signal.* tapset.
* 2006-06-02 Josh Stone <joshua.i.stone@intel.com>jistone2006-06-021-2/+0
| | | | | * testsuite/buildok/process_test.stp: add signal_handle test * examples/small_demos/proc_snoop.stp: log signal_handle
* 2006-05-17 Josh Stone <joshua.i.stone@intel.com>jistone2006-05-181-0/+35
| | | | | | * testsuite/buildok/sched_test.stp: test scheduler tapset * examples/small_demos/sched_snoop.stp: demo scheduler tapset * tapset/scheduler.stp: New scheduler tapset
* 2006-05-17 Josh Stone <joshua.i.stone@intel.com>jistone2006-05-181-3/+3
| | | | | | | * process.stp: Rename signal.send to signal_send and process.complete to process_complete, to allow process.* to work properly. * process.stp (_IS_ERR): declare parameter type * process.stp (process.create): correct new_pid assignment
* 2006-05-09 Josh Stone <joshua.i.stone@intel.com>jistone2006-05-101-0/+57
| | | | | | | | * examples/small_demos/proc_snoop.stp: monitor all process events. * testsuite/buildok/task_test.stp: test compilation of all task functions. * testsuite/buildok/process_test.stp: test all process events and associated variables.
* 2006-05-05 Will Cohen <wcohen@redhat.com>wcohen2006-05-052-0/+90
| | | | | | * small_demos/fileopen.stp: Shows use of target() to look at pid. * small_demos/rwtiming.stp: Shows per executable histograms of time spent in read and write system calls.
* 2006-04-23 Eugene Teo <eteo@redhat.com>eteo2006-04-231-0/+21
| | | | | * small_demos/ansi_colors.stp: Add an example of using octal escape sequences to display all possible ansi colors.
* 2006-04-20 Martin Hunt <hunt@redhat.com>hunt2006-04-201-1/+1
| | | | * small_demos/top.stp: Use printf.
* 2006-03-30 Martin Hunt <hunt@redhat.com>hunt2006-03-301-0/+2
| | | | * small_demos/close.stp: Make it executable.
* 2006-03-20 Martin Hunt <hunt@redhat.com>hunt2006-03-201-2/+2
| | | | * small_demos/key.stp: Pipe output to dev/null.
* *** empty log message ***hunt2006-03-2011-3/+193
|
* Fix typo in comment.hunt2006-03-091-1/+1
|
* 2006-03-09 Martin Hunt <hunt@redhat.com>hunt2006-03-095-0/+85
* key.stp: Toy example. * prof.stp: Example profiler. * top.stp: Print the top 20 syscalls.