Re: [osol-discuss] dtrace io on zfs

2010-08-19 Thread Sergio Troiano
Hi, I'm working in a zfs_log monitor, mi idea is to create a backup fileserver, at first place the source server log each zfs syscall and then another server takes them and replicate the information copying each diference (via NFS), My problem is that some transactions don't appear in the log,

Re: [osol-discuss] [dtrace-discuss] How to dtrace thread_reaper?

2009-10-20 Thread Thomas Blank
Hi Jon, hi Brian, thank you both very much for your quick and detailed responses. Jon, the code you sent me is exactly what I was looking for! I added some probes to have some more information. Thus the entry probe will only ever be fired once during the kernel initialisation, and by the time

Re: [osol-discuss] dtrace

2009-03-09 Thread Tirthankar
Refer to http://blogs.sun.com/binujp/entry/dtrace_provider_for_python Thanks, Tirthankar http://blogs.sun.com/tirthankar On 03/09/09 11:22, gautham k wrote: how to write our own probes for integrating dtrace with other scripting langauage. eg:python

[osol-discuss] dtrace

2009-03-08 Thread gautham k
how to write our own probes for integrating dtrace with other scripting langauage. eg:python -- This message posted from opensolaris.org ___ opensolaris-discuss mailing list opensolaris-discuss@opensolaris.org

[osol-discuss] dtrace quantize file desctriptors

2008-08-21 Thread Allan
Hi, I am a new to dtrace and have a little question I am hoping you could clear up. When I run the following I command I get the ouput of the file which is being stat by ftsat64, when I quantize this what reference is the Value field using dtrace -n syscall::fstat64:entry'[EMAIL

Re: [osol-discuss] dtrace quantize file desctriptors

2008-08-21 Thread Robert Milkowski
Hello Allan, Thursday, August 21, 2008, 11:15:02 AM, you wrote: A Hi, A I am a new to dtrace and have a little question I am hoping you could clear up. A When I run the following I command I get the ouput of the file A which is being stat by ftsat64, when I quantize this what reference is the

Re: [osol-discuss] dtrace quantize file desctriptors

2008-08-21 Thread Allan
Folks, I have the answer of what I was looking for thanks to Clive King, It was a wood for the tree's moment so thanks for all the replies. Allan This message posted from opensolaris.org ___ opensolaris-discuss mailing list

[osol-discuss] DTrace normalize

2008-01-09 Thread Victor Feng
profile:::tick-1sec /this-cnt == 10/ { normalize(@runq, 1); printa([EMAIL PROTECTED], @runq); exit(0); } The output is an integer, but I want a decimal, e.g. 7.4 instead of 7. How could I do that? Thanks Victor This message posted from opensolaris.org

Re: [osol-discuss] DTrace Graphical User Interface (GUI)

2007-10-31 Thread Nasser Nouri
The new version of the NetBeans DTrace GUI plug-in is ready for download. http://www.netbeans.org/kb/dtracegui_plugin/NetBeans_DTrace_GUI_Plugin.html The NetBeans DTrace GUI plug-in works with Sun Studio 12 IDE, NetBeans IDE 5.5.1 and NetBeans 6.0 Beta 2. Regards, __Nasser This message

Re: [osol-discuss] DTrace Graphical User Interface (GUI)

2007-07-30 Thread Nasser Nouri
The DTrace GUI puts more emphasis on ease of use. Users with different levels of expertise in DTrace, can use the GUI to debug their systems, processes, and applications. Basically, it shortens learning curve and enables users to utilize DTrace before they become an expert in writing D

Re: [osol-discuss] DTrace Graphical User Interface (GUI)

2007-07-30 Thread David Lloyd
Nasser, For instance, the code completion feature helps users with writing D scripts. The code completion feature is not included in first release of the DTrace GUI. Believe me, such features are very useful for seasoned programmers as well. Not that I'm a D scripter by any means, but

Re: [osol-discuss] DTrace Graphical User Interface (GUI)

2007-07-27 Thread Richard L. Hamilton
The purpose of this message is to announce the availability of the NetBeans plug-in module for DTrace. The NetBeans DTrace plug-in module is a Graphical User Interface (GUI) for running DTrace scripts. The DTrace plug-in module works with both Sun Studio 12 IDE and NetBeans IDE 5.5.1.

Re: [osol-discuss] DTrace Graphical User Interface (GUI)

2007-07-27 Thread Calum Benson
On Fri, 2007-07-27 at 03:35 -0700, Richard L. Hamilton wrote: Hopefully, the functionality of Apple's XRay tool is also being looked at for ideas... Hopefully the main idea being wtf didn't *we* do this first? :) Cheeri, Calum. -- CALUM BENSON, Usability Engineer Sun Microsystems

[osol-discuss] DTrace Graphical User Interface (GUI)

2007-07-26 Thread Nasser Nouri
The purpose of this message is to announce the availability of the NetBeans plug-in module for DTrace. The NetBeans DTrace plug-in module is a Graphical User Interface (GUI) for running DTrace scripts. The DTrace plug-in module works with both Sun Studio 12 IDE and NetBeans IDE 5.5.1. Users are

Re: [osol-discuss] Dtrace Question

2007-03-12 Thread Mello
On 3/12/07, Ian [EMAIL PROTECTED] wrote: Hi People - I'm new to the OpenSolaris forum so be gentle with me ;) Can someone please help me with this question ? Are there ay Dtrace scripts available anywhere which would be usful to Monitor/Diagnose Sun Webserver ?? I've had a good look and

[osol-discuss] DTrace: How to print string in C++

2006-11-28 Thread eric wang
How to print string in C++: e.g. string Fun(string a, int b) Then I'll try to printf the return value of this Fun(). *:return { printf(ret = %s, stringof(arg0)); ... } But DTrace told that this use is uncorrect. Then how to get the return string value?? This message posted from