Displaying 20 results from an estimated 3000 matches similar to: "Dtracing scsi"
2006 Apr 28
1
Find no of incoming connections using dtrace
hi,
       i want to find out the total number of incoming connections for a machine at any time using dtrace.anyone please suggest me the solution.
 
 
This message posted from opensolaris.org
2009 Nov 19
11
dtracing a forked process OR dynamic library
Hi,
I am tracking down a problem and would like to know how I can follow a
forked process with my dtrace script, or how I can trace a dynamic library.
Here is the problem.  I am tracing dtlogin, and specifically I am trying
to determine what error libpkcs11`<routine> is returning.  It turns out
dtlogin forks a lot of processes, and I believe the second forked
process is the one that winds
2005 Nov 18
6
expected system load from DTrace scripts/probes
Does anyone out there have any thoughts on the type of load common 
DTrace scripts would cause on a system if run 24x7?  I know "common 
DTrace scripts" and their underlining probe calls a vague statement.  So 
for the lack of a common and establish set of scripts in the OS, I''ll 
use the most popular right for my question...the DTraceToolkit from 
Brendan Gregg.  Which by the
2006 Jan 25
6
failed to resolve SS_TCP_FAST_ACCEPT
Folks,
I came across an IPv6 snv_31 network driver problem during
testing.  I can "ping" an IPv6 address, but when I try and log
on to the IPv6 address I get an RPC failure.  Not knowing much about dtrace,
I thought I would give some of the networking dtrace scripts
a try that I found here:
http://www.opensolaris.org/os/community/dtrace/dtracetoolkit/
(tcptop or any other script in the
2005 Oct 31
11
Aggregation elements
Howdy,
Is there a method to get the number of elements in an aggregation? Are the 
results stored in an aggregation guaranteed to be in any type of order?
Thanks for any insight,
- Ryan
--
UNIX Administrator
http://daemons.net/~matty
2007 Mar 14
3
I/O bottleneck Root cause identification w Dtrace ?? (controller or IO bus)
Dtrace and Performance Teams,
I have the following IO Performance Specific Questions (and I''m already 
savy with the lockstat and pre-dtrace
utilities for performance analysis.. but in need of details regarding 
specifying IO bottlenecks @ the controller or IO bus..) :
**Q.A*> Determining IO Saturation bottlenecks ( */.. beyond service 
times and kernel contention.. )/
I''m
2008 Nov 08
4
Variable mpid - what is it?
DTraceToolkit has a dtrace script (Proc/pidpersec.d) that refers to a
variable mpid as below
profile:::tick-1sec
{
     printf("%-22Y %8d %6d\n", walltimestamp, `mpid, pids);
     pids = 0;
}
Where is `mpid getting picked from (it isn''t declared anywhere else)?
What does the character ` in `mpid signify?
I do not see any reference to this variable in the dtrace
2008 Jan 18
33
LatencyTop
I see Intel has released a new tool.  Oh, it requires some patches to 
the kernel to record
latency times.  Good thing people don''t mind patching their kernels, eh?
So who can write the equivalent latencytop.d the fastest? ;-)
http://www.latencytop.org/
-- 
cburgess at qnx.com
2006 Oct 11
5
Where is djvmti Agent?
What am I missing?
[Download dvm.zip from https://solaris10-dtrace-vm-agents.dev.java.net/]
[root at load0 /]$ mkdir /opt/dvm;cd /opt/dvm
root at load0 dvm]$ unzip /home/jbuckley/dvm.zip
[jbuckley at load0 ~]$ more /etc/release
                           Solaris Nevada snv_45 SPARC
           Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
                        Use is subject to
2006 Mar 03
3
Using DTrace to locate memory leak
Howdy,
I am attempting to isolate the location of a memory leak in a 4GL program, 
and have hit a bit of a snag. When I LD_PRELOAD libumem and run the 
application server, "::findleaks -fdv" reports numerous leaks:
CACHE             LEAKED           BUFCTL CALLER
0000000100b49068      15 0000000100ef2d50 fdcon+0x6c4
0000000100b50028       1 0000000100b72ac0 fdcon+0x6c4
0000000100b49068
2005 Nov 15
6
Oracle 9 process on Sol 10 container, doing a pollsys, using high CPU
We''re running a Solaris 10 container, with an Oracle 9.2.0.4 database - every 5-10 min, an Oracle process shoots up (using 20% + CPU) and then goes down in CPU %, doing a [i]pollsys [/i](see it via dtruss). I tried using some of the trace scripts in the Dtracetoolkit to see what the process is doing, but without any luck - also tried with the following, but dtrace process goes up to 30%
2005 Jun 11
3
swapinfo.d
G''Day Folks,
Check out this DTrace script,
   # ./swapinfo.d
   RAM  _______Total   511 Mb
   RAM      Unusable     8 Mb
   RAM        Kernel    96 Mb
   RAM        Locked     0 Mb
   RAM          Used   318 Mb
   RAM         Avail    88 Mb
   Disk _______Total  1023 Mb
   Disk         Used     9 Mb
   Disk        Avail  1014 Mb
   Swap _______Total  1367 Mb
   Swap         Used   327
2007 Sep 02
8
DTraceTools Update
Is there any work on keeping DTraceTools up to date with the latest snv builds. These  scripts are pretty useful and help get a novice dtrace user like me doing useful work quickly.
Specifically the tcp stack tools like tcptop and tcpsnoop don''t work with later OpenSolaris builds.
Thanks,
Gary
--
This message posted from opensolaris.org
2007 Oct 17
3
Dtrace scripts for performance data gathering
I am looking for Dtrace scripts that can be used to
collect data during performance tests.  I am especially
interested in IO but CPU, memory, threads, etc are needed
as well.
Thanks,
Dave
2008 Nov 12
2
hotuser in multicore system
Incase of multi-core systems where multiple threads maybe scheduled
for execution, does the below dscript (from hotuser in DTraceToolkit)
collect  information for multiple libraries/functions that would be
getting executed at a given point of time. I have been able to test it
to check if it does or doesn''t. I assume it does.
This was a query I have about profiling in general.
	#pragma D
2006 Dec 13
11
tcptop fail to run
Hello all,
i''m trying to run the tool tcptop from the dtracetoolkit but it fails.
I got the following error:
tcptop -C 30
dtrace: failed to compile script /dev/fd/11: "usr/include/sys/kstat.h", line 439: invalid type combination
I let it run on different machines on a Ultra 45 and a E20K both with Solaris 10 same result.
any ideas?
best regards
Jens
 
 
This message
2005 Sep 28
4
A document about implementing dtrace probes in SAX
Hi,
I have mentioned before that we have added some sdt dtrace probes in SAX, 
our APL interpreter. Encouraged by Angelo and Jignesh, I have created a 
small document (5 pages) describing our experience with it, together with 
some problems we have encountered and some scripts we use for 
pretty-printing dtrace outputs.
The said document can be found at
2005 Nov 05
3
Signal id and signal sender pid using dtrace
Hi
I have a process which reads a socket using recvfrom. After sometime, for no apparent reason, recvfrom exits with an EINTR causing the sender to barf too. Basically the socket on which these processes were communicating no longer exists. On writing a dtrace, I could determine that a signal was received at that socket causing the EINTR. I do not know of way to see who sent the signal (which
2006 Jul 20
2
How can I watch IO operations with dtrace on zfs?
I have been using iosoop script (see http://www.opensolaris.org/os/community/dtrace/scripts/) written by Brendan Gregg to look at the IO operations of my application. When I was running my test-program on a UFS filesystem I could see both read and write operations like:
  UID   PID D    BLOCK   SIZE       COMM PATHNAME
203803  4436 R  6016592  16384     diskio <none>
203803  4436 W  3448432
2005 Nov 22
6
DTrace #include problems
Howdy,
I am trying to migrate several scripts to use application defined types, 
and am running into a few issues. When I attempt to run a script with a 
application defined type, it looks like the DTrace preprocessor is getting 
angry with me:
$ cat view.d
#include "httpd.h"
:::acceptconnection
{
    this->addr = (conn_rec *)copyin(arg0,sizeof(conn_rec *));
}
$ dtrace -C