]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - cddl/contrib/dtracetoolkit/Man/man1m/j_stat.d.1m
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / cddl / contrib / dtracetoolkit / Man / man1m / j_stat.d.1m
1 .TH j_stat.d 1m   "$Date:: 2007-10-03 #$" "USER COMMANDS"
2 .SH NAME
3 j_stat.d - Java operation stats using DTrace.
4 .SH SYNOPSIS
5 .B j_stat.d
6 [interval [count]]
7 .SH DESCRIPTION
8 This traces activity from all Java processes on the system with hotspot
9 provider support (1.6.0). Method calls and object allocation are only
10 visible when using the flag "+ExtendedDTraceProbes". eg,
11 java -XX:+ExtendedDTraceProbes classfile
12
13 The numbers are counts for the interval specified. The default interval
14 is 1 second.
15
16 If you see a count in "EXECS" but not in the other columns, then your
17 Java software is probably not running with the DTrace hotspot provider.
18
19 If you see counts in "CLOAD" but not in "METHODS", then you Java
20 software probably isn't running with "+ExtendedDTraceProbes".
21 .SH OS
22 Solaris
23 .SH STABILITY
24 Evolving - uses the DTrace hotspot provider, which may change 
25 as additional features are introduced. Check Java/Readme
26 to see what version these scripts are based on.
27 .SH EXAMPLES
28 .TP
29 Default output,
30
31 .B j_stat.d
32 .PP
33 .SH FIELDS
34 .TP
35 EXEC/s
36 Java programs executed per second, including
37 those without Java provider support
38 .TP
39 METHOD/s
40 Methods called, per second
41 .TP
42 OBJNEW/s
43 Objects created, per second
44 .TP
45 CLOAD/s
46 Class loads, per second
47 .TP
48 EXCP/s
49 Exceptions raised, per second
50 .TP
51 RESC/s
52 Rescues, per second
53 .TP
54 GC/s
55 Garbage collects, per second
56 .PP
57 .SH DOCUMENTATION
58 See the DTraceToolkit for further documentation under the 
59 Examples, Notes and Docs directories. The example files may be
60 especially useful as they aim to demonstrate how to interpret
61 the output.
62 .SH EXIT
63 j_stat.d will run until Ctrl-C is hit.
64 .SH AUTHOR
65 Brendan Gregg
66 [CA, USA]
67 .SH SEE ALSO
68 dtrace(1M)