Displaying 20 results from an estimated 2000 matches similar to: "Find no of incoming connections using dtrace"
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
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
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 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 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
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
2006 Feb 10
4
Dtracing scsi
A small script to see what SCSI commands are being issued by a system:
http://blogs.sun.com/roller/page/chrisg?entry=scsi_d_script
Still work in progress as I needs to handle larger CDBs but it is a start, since I don''t have a disk that big it is not a problem for me yet.
Also getting the return scsi packet is a hack but so far I can see no alternative short of knowing about all the
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 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
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
2006 May 09
1
Dtrace Script to find instances of a file
hi,
i need to find out no of times a file has been opened,but not yet closed.
i mean if a file has been opened for 2 times ,one for reading and another for writing and the file has not been closed,the script should display the count of total opens and also to check wheather it has been closed r not.
This message posted from opensolaris.org
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
2006 Dec 07
2
System hangs when invoking DTrace script
Howdy,
I installed Nevada build 49 in a parallels VM on my intel mac mini,
and when I run the following DTrace script:
$ cat follow.d
#pragma option D flowindent;
pid$target:::entry,
pid$target:::return
{}
$ cat format.cmds
disk
0
exit
$ dtrace -s follow.d -o follow.out -c "/usr/sbin/format -f format.cmds"
dtrace: script ''follow.d'' matched 13641 probes
The system
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
2006 Mar 13
2
opensolaris dtrace page has bad link to dtrace documentation
The open solaris dtrace page (http://www.opensolaris.org/os/community/dtrace/) has a bad link to the DTrace Guide(http://docs.sun.com/db/doc/817-6223).
This message posted from opensolaris.org
2007 Sep 25
3
tcptop fail to run "Can''t find include file sys/tsol/label.h"
I try to run tcptop in solaris 10 x86 with patch level 125101-04 and I get the following error /usr/include/sys/zone.h line 16: can''t find include file sys/tsol/label.h error. Is there a work around for this problem?
--
This message posted from opensolaris.org
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
2006 Mar 15
1
Can dtrace agent of JDK be used in IBM Websphere?(fwd)
------------------forwarded------------------------------------
This is to help my customer to migrate their IBM websphere 6.0.2 to run
on solaris 10 platform.
Customer is eager to use the dtrace agent of JDK
(https://solaris10-dtrace-vm-agents.dev.java.net/ ) to benefit their IBM
websphere server, I am not sure whether we can use this agent in IBM
websphere bundled JDK whose version is JDK
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
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