Introduction
SystemTap is a tracing and probing tool that provides users deep technical insight into what the operating system (particularly, the kernel) is doing at any given time. It provides information similar to the output of tools like netstat, ps, top, and iostat; however, SystemTap is designed to provide information that is more "granular" in nature.
For system administrators, SystemTap can be used as a performance monitoring tool for ∏. It is most useful when other similar tools cannot precisely pinpoint a bottleneck in the system, requiring a deep analysis of kernel activity. In the same manner, application developers can also use SystemTap to monitor, in finer detail, how their application behaves.
Goals
SystemTap provides the infrastructure to monitor the running Linux kernel for detailed analysis. This can assist in identifying the underlying cause of a performance or functional problem.
Without SystemTap, monitoring the activity of a running kernel would require a tedious instrument, recompile, install, and reboot sequence. SystemTap is designed to eliminate this, allowing users to gather the same information by simply running its suite of tools against specific tapsets or SystemTap scripts.
However, SystemTap was initially designed for users with intermediate to advanced knowledge of the kernel. This could present a steep learning curve for administrators or developers whose knowledge of the Linux kernel is little to none.
In line with that, the main goals of the SystemTap Beginner's Guide are as follows:
To introduce users to SystemTap, familiarize them with its architecture, and provide setup instructions for all kernel types.
To provide pre-written SystemTap scripts for monitoring and forensic tasks, along with instructions on how to analyze their output.
above, Short description on the underlying goals of SystemTap_Beginners_Guide, what we want to teach users.
SystemTap Versus Other Monitoring Tools
** Short summary; when is SystemTap suitable vs other popular monitoring tools (e.g. top, Oprofile, /proc)
Advantages
TBD
Limitations
TBD