Posts Tagged DTrace

DTrace for Developers (SI-328-S10)

Este curso se trata de uno de los más interesantes para desarrolladores de aplicaciones. Se muestran conceptos clave para la depuración y diagnóstico de aplicaciones y la determinación de los problemas clave en una aplicación: Course Code: SI-328-S10 Course Title: DTrace for Developers Revision: A Duration: Two (2) Days Course Description he DTrace for Developers [...]

FacebookTwitterGoogle BookmarksLinkedInShare

,

No Comments

ZFS file access monitor dtrace script

I have created this small DTrace script to monitor the file access on a ZFS file system (it does not work on other File Systems). It uses one single argument, the file you are going to monitor. It will print the DATE access, the process using the file, the operation over the file (Read/Write/Delete), the [...]

FacebookTwitterGoogle BookmarksLinkedInShare

, , ,

4 Comments

Usefull links from sun.com : Solaris How-To Guides (dtrace, cluster, zfs, smf, …)

The other day I found the Solaris How-To Guides web page and I’d like to share it with you. There are some very interesting documents which explain how to install Solaris or how to configure Sun Cluster … : How to Quickly Install the Solaris 10 10/08 OS How to Use DTrace from a Solaris [...]

FacebookTwitterGoogle BookmarksLinkedInShare

, , , , , ,

No Comments

conntrack DTrace script: connections by process, user and port on Solaris/Opensolaris

I’ve created conntrack DTrace script for Solaris and Opensolaris to monitor all outgoing TCP and UDP connections by process, user and port. It has some filtering capabilities allowing to filter traffic by port, process or user. In a standard unix system it’s rather difficult to know what process are using the network and how. With [...]

FacebookTwitterGoogle BookmarksLinkedInShare

, , ,

9 Comments

Get TCP statistics and KPIs in Opensolaris and Solaris 10: tcpKPI.d

I’ve created this DTrace script to get network KPIs (Key Performance Indicators). It will print this information: * FIELDS: * DATE Time, string * OUT TCP Out Data Bytes * RET Number of Retransmited Bytes * IN TCP In Data Bytes * INDUP TCP In Duplicated Bytes * UNORD TCP In UnorderBytes * DROP TCP [...]

FacebookTwitterGoogle BookmarksLinkedInShare

, ,

No Comments