DTrace is a comprehensive dynamic tracing framework for the Solaris Operating Environment, Mac OS X 10.5+ and FreeBSD.

learn more… | top users | synonyms

0
votes
2answers
37 views

How can I write a dtrace script to dump the stack of a crashing process on Solaris 10?

I have a process, running on Solaris 10, that is terminating due to a SIGSEGV. For various uninteresting reasons it is not possible for me to get a backtrace by the usual means (gdb, backtrace call, ...
2
votes
1answer
37 views

Does the new Tracepoint API in Ruby 2.0 use the same probes that dtrace uses?

I spent some time learning about using Dtrace and Ruby.. then found the new TracePoint class in Ruby core for 2.0. Does TracePoint use the same probes under the covers that dtrace uses to monitor ...
1
vote
1answer
41 views

How does Instruments collect data from iOS without DTrace being available?

I am trying to understand the inner workings of XCode's Instruments. On MacOS, it can rely on DTrace to gather all kinds of profiling data. On iOS, it is also capable of lots of things, but I have ...
-1
votes
0answers
17 views

dtrace sched:::on-cpu - sched time on CPU [closed]

If i run the following command: dtrace -n 'sched:::on-cpu {@a[execname] = count()} tick-3s {printa(@a)}' oracle 430174 sched ...
0
votes
0answers
90 views

Node.js profiling with Dtrace not showing functions names

I'm trying to profile CPU utilization for my project using DTrace. I just followed the script The problem is that it doesn't show the functions names. The stacks.out file looks like that: CPU ...
1
vote
1answer
43 views

Dtrace to get write size by distribution

I'm trying to get write size distribution by process. I ran: sudo dtrace -n 'sysinfo:::writech { @dist[execname] = quantize(arg0); }' and got the following error: dtrace: invalid probe specifier ...
0
votes
1answer
63 views

Show Objective-C class in DTrace output

Using the following DTrace script, I can get an output that is close to what I want: $ cat script.d objc$target:::entry {} objc$target:::return {} $ sudo dtrace -F -s script.d -c ...
0
votes
1answer
44 views

Dtrace Invalid Probe Specifier error

I installed Dtrace in Ubuntu 11.04. I was able to run " dtrace -n 'syscall:::' " and " sudo dtrace -l | grep terminal " commands properly and got the results. But when I tried to run " dtrace -n ...
2
votes
2answers
32 views

dtrace: doesn't catch any write sys call

I'm new to dtrace and trying to write some a basic dtrace scripting. I found a example to catch read(2) and write(2) syscall on seperate terminal as following, syscall::read:entry, ...
0
votes
1answer
44 views

Tutorial for creating custom Instrument in XCode

I want to create my own custom Instrument in XCode. Unfortunately, I can't seem to find any Tutorial; the only help I found is the manual, which is in my opinion hardly self-contained. Does anyone ...
0
votes
0answers
24 views

error: ‘php’ undeclared when compiling DTrace (PECL package) on Mac?

I've downloaded DTrace for PHP and when compiling it, I've got the following errors; $ ./configure ... creating libtool appending configuration tag "CXX" to libtool configure: creating ...
1
vote
0answers
68 views

dtrace on linux does not always remove userland probes at program exit — why?

(See end of this post if you want to see how I installed dtrace - for now I'll assume you already have it installed) I made a custom probe with no problems at all by following these steps: A. Create ...
0
votes
1answer
40 views

DTrace script never reports write syscalls

I'm using the following DTrace script to follow the read and write syscalls of bash: syscall::write:entry, syscall::read:entry /execname == "bash"/ { } It successfully matches 2 probes, but no ...
1
vote
1answer
55 views

How to use dtrace to determine the maximum memory usage of a process

The following dtrace script will give the sum of all allocations a process has performed: pid$target::malloc:entry { @ = sum(arg0); } Now, I'm rather interested in the maximum total allocated ...
0
votes
1answer
43 views

DTrace for Linux ustack() invalid address in action

When I run the following .d script with DTrace for Linux: #!/usr/sbin/dtrace -s syscall::open:entry { @[ustack()] = count(); } I get many errors of the following kind: dtrace: error on enabled ...
0
votes
0answers
35 views

How to print a NSString from a DTrace script

This question is asking the same thing, but when I tried: typedef long long ptr_t; objc$target:NSWindow:-setTitle?:entry { printf( "%30s %10s %x %x %x\n", probemod, probefunc, arg0, arg1, arg2 ...
0
votes
0answers
25 views

Printing the NSWindow title in a DTrace script

I can write a simple dtrace script to tell me each time the -orderOut method is called in my program. #pragma D option quiet objc$target::-orderOut?:entry { printf( "%30s %10s %x %x\n", ...
1
vote
0answers
78 views

How to monitor any input and output of a process

There is the following process: NetAuthSysAgent which calls/create repeatedly the process mount_nfs of a non-existing NFS share. I have a hunch that these calls are triggered by another process which ...
2
votes
1answer
127 views

32 bit DTrace on OSX

I need to run DTrace on 32-bit executables on OSX. I have two machines, both running OSX 10.8.2. On one of them, /usr/lib/dtrace/libdtrace_dyld.dylib is a fat binary, on the other it isn't: ...
0
votes
0answers
99 views

DTrace: Tracing user stack size on OS X? (curthread->t_procp->p_stksize?)

I've come across this simple DTrace script for tracing user stack sizes, but it doesn't work on OS X Mountain Lion: dtrace -n 'sched:::on-cpu { @[execname] = ...
1
vote
1answer
147 views

How can I display microseconds cpu consumed per process using dtrace?

Using dtrace on Solaris, I am able to accumulate on-cpu time for a given process (or execname) for the interval from start until control-C with the following script: !/usr/sbin/dtrace -qs ...
5
votes
2answers
318 views

Dtrace script that returns %CPU, %Memory and network in/out aggregated by zone

I need a DTrace script that returns CPU usage percentage, memory usage percentage and network input and output bytes used, aggregating the data by zone. Something like this: ZONE %CPU %MEM NET_INPUT ...
0
votes
1answer
35 views

How to use dtrace to detect file transfer

I want to use "dtrace" to track file tranfer in OSX 10.8 , like when command "mv /folder1/file1 /folder2" is run . I know there're probes like create/link/unlink/rename/chdir can be used in the form ...
5
votes
1answer
1k views

DTrace on Ubuntu, how-to?

I'd like to use DTrace on Ubuntu. https://github.com/dtrace4linux/linux There is one for Linux above, the github. I wonder if dtrace for linux is just same with dtrace for other OS(Solaris, ...
1
vote
0answers
113 views

Python OS X 10.8 Dtrace patched but getting “invalid probe specifier” running test scripts

I patched Python 2.7.3 with Issue 13405 - http://bugs.python.org/issue13405# - compiled python with the --with-dtrace (configure option). When I run the test_dtrace script the tests fail with the ...
0
votes
1answer
61 views

DTrace not printing aggregations

I'm trying to execute the following very simple use of DTrace from the terminal in OS X 10.8. sudo dtrace -n 'syscall:::entry { @counts["System Call Entry"] = count(); }' When I hit ^C I expect the ...
8
votes
2answers
338 views

Interpret dtruss output like “psynch_cvwait(…) = -1 Err#316”

dtruss appears to be a useful tool to analyze the (mis-)behaviour of applications on OS X. The closes thing I found to my beloved strace on linux. But interpreting its output requires an understanding ...
1
vote
2answers
208 views

dtrace: failed to compile script Preprocessor not found

I'm trying to test this script from oracle to get active NFS clients on Ubuntu 10.04, but I can' get it to run. To achieve that, I first installed dtrace following these instructions. This is what ...
2
votes
1answer
124 views

Example of using dtrace to calculate average and max disk read/write queue over time

I need to read disk queue length (separately for read and write operations) on Mac OSX. I already came to conclusion that this may be done only via dtrace (I would be happy to be wrong here, however I ...
1
vote
1answer
274 views

Understanding output of dtruss

Could anyone point me to a reference on how to understand/interpret the report outputted by dtruss (mac) or dtrace? I just tried dtruss on a simple program. For example, I got the following output: ...
10
votes
1answer
1k views

Profiling Node.JS (code) execution time in Linux

I am looking for a method to do precise Node.JS profiling of script execution times on Linux. There are interesting projects like the NodeTime.com Performance Profiler, but this profiles the timing ...
1
vote
2answers
167 views

Determine what's blocking a process on OSX using command line tools?

The title says it most, really. On Linux it would be easy with strace and possibly lsof or /proc, and it used to be easy on OSX until truss was removed from OSX Leopard, along with underlying system ...
0
votes
1answer
255 views

Error deploying node js restify application to heroku

I'm having an issue deploying a restify application to Heroku. npm ERR! dtrace-provider@0.0.9 install: `node-waf clean ; node-waf configure build` npm ERR! `sh "-c" "node-waf clean ; node-waf ...
0
votes
1answer
79 views

Access dtrace probe from C program

There is runocc.d dtrace script which prints run queue for each processor. I need to get run queue length in my C++ program on Mac OS X. Is it possible to somehow embed dtrace constructs into C++ ...
0
votes
0answers
165 views

DTrace probe on xcode4 compile error

I use xcode4, create a command line tool project and try to add some DTrace probe to test. the probe is very simple. provider testProbe{ probe sendmsg(char*); }; then I compile this d file and ...
1
vote
1answer
261 views

Compiling erlang with systemtap but require dtrace

I'm compiling erlang otp from source like following: ./configure --with-dynamic-trace=systemtap But it reports error: checking for dtrace... no configure: error: No dtrace utility found. I ...
0
votes
1answer
164 views

Please help to profile C code with dtrace

I was looking through stackoverflow for the best profiling technique. I have a bunch of processes running 24/7, written in C and using Oracle 10g. I have discovered several tools I want to try: ...
1
vote
1answer
208 views

Need someone who has Mac OS X Mountain Lion? Udp Probes

If you have Mac OS X Mountain Lion could you write " sudo dtrace -ln udp::: " to your Terminal screen and copy the results for me? I need to learn are UDP probes available for new OS . Thank you ...
0
votes
0answers
85 views

Weird results using dtrace to watch fstat64 calls

I'm using dtrace under OS X Lion to attempt to make some sense of the behavior of an application for which I don't have the source code. Thanks to the fs_usage script, I know that the application is ...
0
votes
0answers
58 views

produce output like Apple's instruments using trace

I have been developing some software on OS X for deployment on Unix servers. One one server the performance mirrors that which I see on OS X closely, but I see drastically different behavior on a ...
0
votes
1answer
127 views

DTrace - How do I correctly retrieve initial parameters in the return probe

I'm trying to read the initial arguments that was passed into the function in my return probe. Unlike the entry probe, the argument variables(arg0,arg1,...) in the return probe do not contain the ...
3
votes
1answer
316 views

Interposing of OS X system calls

I need to interpose (get my functions called instead of the original functions) some OS X system calls to overcome a flaw in a piece of closed-source software. Preferably, the resulting solution ...
0
votes
1answer
79 views

dtrace accessing global variables from application

suppose my app code looks like this: #include <stdio.h> int global_var; void change_var(){ global_var++; } int main(void){ change_var(); retrun 0; } Now, can You please tell ...
0
votes
0answers
112 views

dtrace libc probes on opensolaris

when im trying to do trace getenv function i got: -bash-4.0#/usr/sbin/dtrace -n 'pid$target:libc:getenv:entry' -p 2017 dtrace: invalid probe specifier pid$target:libc:getenv:entry: probe description ...
4
votes
2answers
1k views

Profiling Node.js using DTrace

I am currently profiling my node.js application.I found this blog: http://blog.nodejs.org/2012/04/25/profiling-node-js/ that suggests I should use Dtrace. I installed dtrace on ubuntu 12.04 using ...
4
votes
1answer
256 views

DTrace END probe never fires

I have a mid-2009 MacBook Pro and a new 2012 MacBook Pro and I am in the process of learning DTrace ( a pretty amazing tool). When I calculate aggregates on the new 2012 MBP, the aggregates don't ...
0
votes
1answer
96 views

dtrace - aggregation of variables passing to funcion from diffrent places where function was called

Sorry for compilcated title, but here is a dtrace output of my script, which I think will help explain what im talking about: 16384 1 38048 1 ...
0
votes
3answers
181 views

Is it possible to conceal a OS X app from DTrace?

I am developing an OS X application that I would like to conceal from inspection by DTrace. I'm aware of the P_LNOATTACH flag, but everything I've read tells me that there are ways around it. Is it ...
1
vote
1answer
266 views

How to get complete stack dump from profiler in every sample for use in flame graph?

I really like the idea of the Flame Graph for profiling since it will help in eliminating unneeded function calls. There is a catch however in that it requires the profiler to do a complete stack dump ...
1
vote
1answer
212 views

dtracing a short lived application

I have written a DTrace script which measures the time spent inside a function in my C program. The program itself runs, outputs some data and then exits. The problem is that it finishes way to fast ...

1 2 3