Tagged Questions
The dtrace tag has no wiki summary.
11
votes
6answers
2k views
Pointers to learn how to use DTrace
When I asked for tools to profile Rails apps, someone pointed at DTrace. Since I work on MacOSX stations and deploy on OpenSolaris, it is a valid way to go. But I have little knowledge of DTrace.
...
9
votes
3answers
561 views
How can get dtrace to run the traced command with non-root priviledges?
OS X lacks linux's strace, but it has dtrace which is supposed to be so much better.
However, I miss the ability to do simple tracing on individual commands. For example, on linux I can write strace ...
9
votes
5answers
2k views
How to measure mutex contention?
I have some threaded code using PThreads on Linux that, I suspect, is suffering from excessive lock contention. What tools are available for me to measure this?
Solaris has DTrace and plockstat. Is ...
8
votes
1answer
4k views
Equivalent of strace -feopen < command > on mac os X
This is useful for debugging (hence programming related). On linux, we can use the command
strace -feopen python myfile.py
to figure out which python modules and shared objects are loaded. Is ...
7
votes
4answers
2k views
What's an alternative for DTrace on Linux?
From what I can see, a DTrace implementation on Linux is held up by licensing and politics. What are the alternatives currently?
7
votes
3answers
876 views
How to use hotspot probes in dtrace on Mac OS X Leopard?
My Leopard system has dtrace built in. I also have Java 6 installed, using the Apple-provided installer:
$ java -version
java version "1.6.0_13"
Java(TM) SE Runtime Environment (build ...
6
votes
3answers
167 views
Can I use dtrace on OS X 10.5 to determine which of my perl subs is causing the most memory allocation?
We have a pretty big perl codebase.
Some processes that run for multiple hours (ETL jobs) suddenly started consuming a lot more RAM than usual. Analysis of the changes in the relevant release is a ...
6
votes
3answers
2k views
ltrace equivalent for osx?
osx has the really powerful dtrace/ktrace/dtruss tools - however i'm not willing to invest the time necessary to learn dealing with them right now.
what's the easiest way to get the equivalent ...
6
votes
4answers
739 views
How to trace a program from its very beginning without running it as root
I'm writing a tool that calls through to DTrace to trace the program that the user specifies.
If my tool uses dtrace -c to run the program as a subprocess of DTrace, not only can I not pass any ...
5
votes
2answers
2k views
How do I print a CFStringRef in a DTrace action?
I have a DTrace probe catching calls to a function, and one of the function's arguments is a CFStringRef. This is private structure that holds a pointer to a unicode string. But the CFStringRef is not ...
4
votes
1answer
120 views
Is it possible to get the result of objc method in dtrace?
I wrote an action that fires when any objc method return (objc:::return).
For now, I need to get the return value. Is it possible?
4
votes
1answer
221 views
What DTrace scripts makes it worthwhile to test and profile Java programs on Solaris
I have found the DTrace intriguing but have personally failed to see a use-case that allow me to get information that I cannot get otherwise anyway without using DTrace.
Hence, I would like to hear ...
3
votes
2answers
70 views
Can I ask dtrace what probes are enabled?
If it matters, I am using Mac OS X, but I believe this would apply across OSs. If the answer is different per OS, I would be interested in learning about that as well.
Let's say that I open a ...
3
votes
3answers
652 views
Why does DTrace give me invalid-address errors some times and not others?
My program:
typedef struct objc_class {
struct objc_class *isa;
struct objc_class *super_class;
char *name;
long version;
long info;
long instance_size;
void *ivars;
void *methodLists;
void ...
3
votes
2answers
443 views
Setting my own probes with Dtrace in C++
I have some custom dtrace probes in a C-library, and when linking and using the library with a C application my probes work fine, however when linked against C++ it says it can't find them. The reason ...
3
votes
4answers
1k views
dTrace scripts and tools
I've recently began using dTrace and have noticed just how awesome it is. Its the perfect tool for profiling without placing the burden on programmers to set up hundreds of probes in their ...
2
votes
1answer
33 views
How can I get command arguments with D-trace on OSX
I'm trying to preview run commands with the args with D-trace. I tried something like this:
sudo dtrace -n 'syscall::execve:return {printf("%s\n", curpsinfo->pr_psargs);}'
But on OSX this code ...
2
votes
3answers
133 views
listing all calls to my library
I'm building a shared library in C, which other programs use. Sometimes, these other programs crash because of some error in my shared library. While reproducing these sort of bugs, it is very useful ...
2
votes
1answer
367 views
How do I log messages / break execution for alloc, retain, release and dealloc of CFType objects?
I want to be able to log messages (and preferably break to the debugger) each time a specific CFType object (for my current purposes, a CGPDFDocument) is allocated, retained, released or deallocated.
...
2
votes
1answer
193 views
Can't Enable DTrace probes via jinfo on Mac OS X
Running Java 6 on Snow Leopard.
You're supposed to be able to turn on ExtendedDTraceProbes on a running Java process with the jinfo utility. Even at my command prompt jinfo talks about about ...
2
votes
2answers
164 views
Recommended books for learning DTrace [closed]
Since the last question similar to this one is from 2008, I thought I'd ask it anyway to see what's new since then.
I'm looking for books or other resources (though I prefer epubs for reading them on ...
2
votes
0answers
173 views
libdtrace buffered output
I'm trying to use dtrace through libdtrace (on Snow Leopard; 10.6.4). I want to catch the printed output of my dtrace script within my own program. One way to do so would be to have the output go to a ...
2
votes
3answers
151 views
Which (OS X) dtrace probe fires when a page is faulted in from disk?
I'm writing up a document about page faulting and am trying to get some concrete numbers to work with, so I wrote up a simple program that reads 12*1024*1024 bytes of data. Easy:
int main()
{
...
2
votes
1answer
632 views
How do you print an associative array in dtrace?
The question pretty much sums it up. "dtrace 'print an associative array'" has exactly one google hit and the similar searches are equally useless.
EDIT:
If I were to use an aggregation, I'm not ...
2
votes
1answer
785 views
How to view call stack with dtrace
How to view call stack, return value and arguments of the simply program below, with dtrace
/** Trival code **/
#include <stdio.h>
int
foo (int *a, int *b)
{
*a = *b;
*b = 4;
...
2
votes
1answer
163 views
Is is possible to use DTrace to view the arguments passed to strncpy?
I know I could write an interposer to watch the arguments being passed to the strncpy library call, but it seems like this should be easy to do with DTrace.
2
votes
3answers
198 views
What is the programming paradigm of Dtrace?
I've been using Dtrace for a while, and as time goes by I've began to wonder what's the programming paradigm of the D language used in Dtrace.
It's not an imperative language, I guess, so that means ...
1
vote
1answer
47 views
dtrace scripts io counters per NFS mount
I need to measure performance counters per NFS mount I have on my Nexenta machine (Based on OpenSolaris).
iostat is great, the problem is that it count by devices and not at the NFS level.
Is there ...
1
vote
4answers
183 views
automated assembly loop level profiling
Does anyone know any assembly loop level profiler?
I have been using gprof but gprof hides loops and it is function level profiling, yet to optimize my code i want something to go to the loop level. ...
1
vote
2answers
191 views
How can write logs to a file in btrace?
I have following btrace script. I would like to record entry and exit of functions in a specific class.
..
package com.sun.btrace.samples;
import com.sun.btrace.BTraceUtils;
import ...
1
vote
0answers
135 views
Xcode Instruments - equivalents for Windows?
Xcode's Instruments make me feel physically I'll. They're based on DTrace - which has some loose equivalents in Windows - but the GUI Apple made for them makes them usable in a day to day way.
Visual ...
1
vote
1answer
96 views
Enabling dtrace on Apache on FreeBSD
HI i am using freeBSD as my operating system.I have apache version 2.2.16 installed on it.I want to make this dtrace enabled.How can i do this.Thanks in advance
1
vote
1answer
137 views
DTrace: how to print out memory buffers
I need to trace all pwrite(2) calls done to some specific file and print all buffers that are to be written byte by byte. The data expected is not in ASCII string format so i can't use:
...
1
vote
1answer
168 views
Are there dtrace ustack() helpers on Mac OS X?
I've been wondering if there is any chance to use dtrace ustack helpers on Mac OS X for python and other interpreted languages? I know that you can figure out what python and php on OpenSolaris are ...
1
vote
2answers
220 views
Calling C function from DTrace scripts
DTrace is impressive, powerful tracing system originally from Solaris, but it is ported to FreeBSD and Mac OSX.
DTrace uses a high-level language called D not unlike AWK or C. Here is an example:
...
1
vote
2answers
895 views
Pthread id from pthread_self() doesn't match data from dtrace script
I'm using this dtrace script from here to try to find when context switches occur for the threads of a java program.
I'm trying to match the data gathered from the script with trace data gathered ...
1
vote
3answers
776 views
DTrace on Leopard: No probes specified, even when I specify probes
% sudo dtrace -p 2446 'objc$target:NSObject:-init:entry { trace(); }'
dtrace: no probes specified
The manpage suggests that this is the correct format with which to specify a probe on an Objective-C ...
1
vote
3answers
638 views
Monitor Cocoa apps for execution of external utilities (e.g., ffmpeg) on Mac OS X?
There are Mac GUI applications which provide a front-end to more geeky commandline tools (often included as a part of the application package). I would like to look at what is happening under the hood ...
0
votes
0answers
13 views
Debugging key event flow in OS X before it reaches an app
I have a user who reports that a particular keystroke isn't working (control-apostrophe) in my app on OS X. This does work for him on other machines.
I added some logging and my app never receives ...
0
votes
1answer
38 views
How to filter dtrace output for objective C?
I am learning Dtrace and it is very powerful tool. But one problem for me is Dtrace output too much information and most of those are NS classes.
There was a similar discussion for this topic.
But ...
0
votes
1answer
59 views
OS X: Attach to a running process and read its environment variables
Is it possible (and if so, how?) to read a running process's environment variables. To be more specific, I am concerned with environment variables set by the process itself (using setenv() or ...
0
votes
2answers
113 views
DTrace key logger
I have tried to see if I could get Brendan Gregg's sshkeysnoop.d to work on Mac OS X, but am having trouble. Is it possible to get this working? If so, how?
The error I am getting is:
dtrace: failed ...
0
votes
1answer
101 views
dtrace: tracing all functions calls and print out their parameters (userspace)
I want to see what functions are called in my user-space C99 program and in what order. Also, which parameters are given.
Can I do this with dtrace?
E.g. for program
int g(int a, int b) { puts("I'm ...
0
votes
1answer
67 views
Detecting redundant function calls within call stack tree with DTrace
I'm having a hard time tracking down unnecessary redundant calls within a rather complex algorithm.
It looks like (some of my) my algorithm(s) is/are seriously slowed down by redundant calls (in ...
0
votes
1answer
53 views
how to detect without the system method or system framework with dtrace on MAC OSX
How to just print the user-defined class and method using dtrace, without the system class,method, such as NSLock,NSThread,NSObject and so on.
use the following D code, can trace all of the objective ...
0
votes
1answer
77 views
How to learn about kernel variables for DTrace?
I am only interested in answers related to Mac OS X as I would assume the answer would be different based on OS.
For example, Apple mentions the kernel variable avenrun in this document. I know that ...
0
votes
2answers
92 views
Can DTrace of Java be used for Non Unix Like OS such as windows?
Can DTrace feature provided by Java6 be used on Windows?
0
votes
1answer
49 views
Pushing Solaris script output across network to Windows client?
I've got a simple Solaris DTrace script that outputs some disk stats continuously. By default, the output gets chucked to STDOUT, so I can redirect to a file to capture the data.
What I'm looking ...
0
votes
1answer
91 views
Java DTrace bridge on OS X
I am trying to grab filesystem events on OS / Kernel level on OS X.
There are 2 requirements i have to follow. The first one is to do this in java as the whole project im developing for is written in ...
0
votes
1answer
649 views
How can I run this DTrace script to profile my application?
I was searching online for something to help me do assembly line profiling. I searched and found something on http://www.webservertalk.com/message897404.html
There are two parts of to this problem; ...