samples.jthread.d Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of btrace-boot Show documentation
Show all versions of btrace-boot Show documentation
BTrace: A safe, dynamic tracing tool for the Java platform
#!/usr/sbin/dtrace -s
btrace$1:::event
/
copyinstr(arg0) == "jthreadstart" &&
arg1 != NULL
/
{
printf("From DTrace: Java Thread '%s' started\n", copyinstr(arg1));
}