Displaying 2 results from an estimated 2 matches for "app_crash".
Did you mean:
a_crash
2008 Oct 01
5
ustack()s of SIGSEGV''ed programs
Hi all,
I am trying to write a D script which would print ustack() for every
program in the system receiving SIGSEGV. All the stacks printed in
trap()/sigtoproc() context do not have meaningful symbols.
The following solves the problem to some degree but I''d much rather have
a self-contained D script.
dtrace -w -n ''fbt:genunix:sigtoproc:entry/arg2 == 11/ {
2006 Dec 14
23
Using DTrace to monitor productions systems
Hi,
we are developing and operating an very critical application in the financial sector. Now our customer wants us to report performance data (roundtrip times of the messages routed).
My idea is using dtrace to measure the times with the pid provider catching the timestamps on entry of the in and out functions of the processes.
Now my questions ;-):
1) Is this an appropriate method to monitor