Tutorial: DTrace by Example


 
Thread Tools Search this Thread
Operating Systems Solaris Solaris BigAdmin RSS Tutorial: DTrace by Example
# 1  
Old 10-13-2009
Tutorial: DTrace by Example

This tutorial uses DTrace (Dynamic Tracing), a powerful diagnostic tool, to analyze several applications, emphasizing practical real-world use.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Web Development

Vue JS 2 Tutorial by The Net Ninja: A Recommended Vue.js Video Tutorial Series

A number of people have asked me how to get started with Vue.js and my reply before today was to Google "Vue.js". That has changed and my recommendation to anyone who wants to learn the fastest growing, easiest to learn and use Vue.js web dev framework is to watch this video tutorial series: ... (0 Replies)
Discussion started by: Neo
0 Replies

2. Shell Programming and Scripting

DTRACE help required...

if dtrace -n 'syscall::open*:entry { printf("%i %s %s %s",uid,execname,cwd,copyinstr(arg0)); }' will show me all files that are opened as follows... 3 522 open:entry 0 init / /etc/inittab 3 522 open:entry 0 init /... (5 Replies)
Discussion started by: smurf4568
5 Replies

3. Solaris

PID Provider dtrace script

I'm just starting to mess about with dtrace on Solaris. How do I configure a probe in a PID provider dtrace script to trigger when the process being traced exits? I've tried pid$1:::exit where $1 is the PID but I get 'exit' is an invalid probe name (0 Replies)
Discussion started by: JerryHone
0 Replies
Login or Register to Ask a Question
dtrace(7D)							      Devices								dtrace(7D)

NAME
dtrace - DTrace dynamic tracing facility DESCRIPTION
The dtrace driver provides the dynamic instrumentation and tracing facilities for the DTrace software, as well as the built-in dtrace provider. The dtrace driver is not a public interface and you access the instrumentation offered by this provider through DTrace tools such as dtrace(1M). Refer to the Solaris Dynamic Tracing Guide for a description of the public documented interfaces available for the DTrace facility and dtrace provider probes. ATTRIBUTES
See attributes(5) for a description of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWdtrp | +-----------------------------+-----------------------------+ |Interface Stability |Private | +-----------------------------+-----------------------------+ SEE ALSO
dtrace(1M), libdtrace(3LIB), attributes(5) Solaris Dynamic Tracing Guide SunOS 5.11 4 Sep 2003 dtrace(7D)