< prev index next >

src/share/vm/jfr/metadata/metadata.xml

Print this page
rev 9380 : 8237499: JFR: Include stack trace in the ThreadStart event
Reviewed-by: egahlin


   9  published by the Free Software Foundation.
  10 
  11  This code is distributed in the hope that it will be useful, but WITHOUT
  12  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  version 2 for more details (a copy is included in the LICENSE file that
  15  accompanied this code).
  16 
  17  You should have received a copy of the GNU General Public License version
  18  2 along with this work; if not, write to the Free Software Foundation,
  19  Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 
  21  Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  or visit www.oracle.com if you need additional information or have any
  23  questions.
  24 
  25 -->
  26 
  27 <Metadata>
  28 
  29   <Event name="ThreadStart" category="Java Application" label="Java Thread Start" thread="true" startTime="false">
  30     <Field type="Thread" name="thread" label="Java Thread" />

  31   </Event>
  32 
  33   <Event name="ThreadEnd" category="Java Application" label="Java Thread End" thread="true" startTime="false">
  34     <Field type="Thread" name="thread" label="Java Thread" />
  35   </Event>
  36 
  37   <Event name="ThreadSleep" category="Java Application" label="Java Thread Sleep" thread="true" stackTrace="true">
  38     <Field type="long" contentType="millis" name="time" label="Sleep Time" />
  39   </Event>
  40 
  41   <Event name="ThreadPark" category="Java Application" label="Java Thread Park" thread="true" stackTrace="true">
  42     <Field type="Class" name="parkedClass" label="Class Parked On" />
  43     <Field type="long" contentType="nanos" name="timeout" label="Park Timeout" />
  44     <Field type="long" contentType="epochmillis" name="until" label="Park Until" />
  45     <Field type="ulong" contentType="address" name="address" label="Address of Object Parked" relation="JavaMonitorAddress" />
  46   </Event>
  47 
  48   <Event name="JavaMonitorEnter" category="Java Application" label="Java Monitor Blocked" thread="true" stackTrace="true">
  49     <Field type="Class" name="monitorClass" label="Monitor Class" />
  50     <Field type="Thread" name="previousOwner" label="Previous Monitor Owner" />




   9  published by the Free Software Foundation.
  10 
  11  This code is distributed in the hope that it will be useful, but WITHOUT
  12  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  version 2 for more details (a copy is included in the LICENSE file that
  15  accompanied this code).
  16 
  17  You should have received a copy of the GNU General Public License version
  18  2 along with this work; if not, write to the Free Software Foundation,
  19  Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 
  21  Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  or visit www.oracle.com if you need additional information or have any
  23  questions.
  24 
  25 -->
  26 
  27 <Metadata>
  28 
  29   <Event name="ThreadStart" category="Java Application" label="Java Thread Start" thread="true" startTime="false" stackTrace="true">
  30     <Field type="Thread" name="thread" label="New Java Thread" />
  31     <Field type="Thread" name="parentThread" label="Parent Java Thread" />
  32   </Event>
  33 
  34   <Event name="ThreadEnd" category="Java Application" label="Java Thread End" thread="true" startTime="false">
  35     <Field type="Thread" name="thread" label="Java Thread" />
  36   </Event>
  37 
  38   <Event name="ThreadSleep" category="Java Application" label="Java Thread Sleep" thread="true" stackTrace="true">
  39     <Field type="long" contentType="millis" name="time" label="Sleep Time" />
  40   </Event>
  41 
  42   <Event name="ThreadPark" category="Java Application" label="Java Thread Park" thread="true" stackTrace="true">
  43     <Field type="Class" name="parkedClass" label="Class Parked On" />
  44     <Field type="long" contentType="nanos" name="timeout" label="Park Timeout" />
  45     <Field type="long" contentType="epochmillis" name="until" label="Park Until" />
  46     <Field type="ulong" contentType="address" name="address" label="Address of Object Parked" relation="JavaMonitorAddress" />
  47   </Event>
  48 
  49   <Event name="JavaMonitorEnter" category="Java Application" label="Java Monitor Blocked" thread="true" stackTrace="true">
  50     <Field type="Class" name="monitorClass" label="Monitor Class" />
  51     <Field type="Thread" name="previousOwner" label="Previous Monitor Owner" />


< prev index next >