don't disable stack traces for JFR events

This commit is contained in:
Gavin King 2024-12-15 16:41:54 +01:00
parent 225c411d86
commit ad1a86f570
16 changed files with 16 additions and 16 deletions

View File

@ -18,7 +18,7 @@ import jdk.jfr.StackTrace;
@Label( "Cache Get Executed" ) @Label( "Cache Get Executed" )
@Category( "Hibernate ORM" ) @Category( "Hibernate ORM" )
@Description( "Cache Get Executed" ) @Description( "Cache Get Executed" )
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class CacheGetEvent extends Event implements HibernateMonitoringEvent { public class CacheGetEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.CacheGet"; public static final String NAME = "org.hibernate.orm.CacheGet";

View File

@ -18,7 +18,7 @@ import jdk.jfr.StackTrace;
@Label( "Cache Put Executed" ) @Label( "Cache Put Executed" )
@Category( "Hibernate ORM" ) @Category( "Hibernate ORM" )
@Description( "Cache Put Executed" ) @Description( "Cache Put Executed" )
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class CachePutEvent extends Event implements HibernateMonitoringEvent { public class CachePutEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.CachePut"; public static final String NAME = "org.hibernate.orm.CachePut";

View File

@ -18,7 +18,7 @@ import jdk.jfr.StackTrace;
@Label("DirtyCalculationEvent Execution") @Label("DirtyCalculationEvent Execution")
@Category("Hibernate ORM") @Category("Hibernate ORM")
@Description("DirtyCalculationEvent Execution") @Description("DirtyCalculationEvent Execution")
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class DirtyCalculationEvent extends Event implements HibernateMonitoringEvent { public class DirtyCalculationEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.DirtyCalculationEvent"; public static final String NAME = "org.hibernate.orm.DirtyCalculationEvent";

View File

@ -17,7 +17,7 @@ import org.hibernate.internal.build.AllowNonPortable;
@Label("Entity Delete") @Label("Entity Delete")
@Category("Hibernate ORM") @Category("Hibernate ORM")
@Description("Entity Delete") @Description("Entity Delete")
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class EntityDeleteEvent extends Event implements HibernateMonitoringEvent { public class EntityDeleteEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.EntityDeleteEvent"; public static final String NAME = "org.hibernate.orm.EntityDeleteEvent";

View File

@ -17,7 +17,7 @@ import org.hibernate.internal.build.AllowNonPortable;
@Label("Entity Insert") @Label("Entity Insert")
@Category("Hibernate ORM") @Category("Hibernate ORM")
@Description("Entity Insert") @Description("Entity Insert")
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class EntityInsertEvent extends Event implements HibernateMonitoringEvent { public class EntityInsertEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.EntityInsertEvent"; public static final String NAME = "org.hibernate.orm.EntityInsertEvent";

View File

@ -17,7 +17,7 @@ import org.hibernate.internal.build.AllowNonPortable;
@Label("Entity Update") @Label("Entity Update")
@Category("Hibernate ORM") @Category("Hibernate ORM")
@Description("Entity Update") @Description("Entity Update")
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class EntityUpdateEvent extends Event implements HibernateMonitoringEvent { public class EntityUpdateEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.EntityUpdateEvent"; public static final String NAME = "org.hibernate.orm.EntityUpdateEvent";

View File

@ -18,7 +18,7 @@ import jdk.jfr.StackTrace;
@Label("Flush Execution") @Label("Flush Execution")
@Category("Hibernate ORM") @Category("Hibernate ORM")
@Description("Flush Execution") @Description("Flush Execution")
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class FlushEvent extends Event implements HibernateMonitoringEvent { public class FlushEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.FlushEvent"; public static final String NAME = "org.hibernate.orm.FlushEvent";

View File

@ -18,7 +18,7 @@ import jdk.jfr.StackTrace;
@Label("JDBC Batch Execution") @Label("JDBC Batch Execution")
@Category("Hibernate ORM") @Category("Hibernate ORM")
@Description("JDBC Batch Execution") @Description("JDBC Batch Execution")
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class JdbcBatchExecutionEvent extends Event implements HibernateMonitoringEvent { public class JdbcBatchExecutionEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.JdbcBatchExecution"; public static final String NAME = "org.hibernate.orm.JdbcBatchExecution";

View File

@ -18,7 +18,7 @@ import jdk.jfr.StackTrace;
@Label("JDBC Connection Obtained") @Label("JDBC Connection Obtained")
@Category("Hibernate ORM") @Category("Hibernate ORM")
@Description("JDBC Connection Obtained") @Description("JDBC Connection Obtained")
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class JdbcConnectionAcquisitionEvent extends Event implements HibernateMonitoringEvent { public class JdbcConnectionAcquisitionEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.JdbcConnectionAcquisition"; public static final String NAME = "org.hibernate.orm.JdbcConnectionAcquisition";

View File

@ -18,7 +18,7 @@ import jdk.jfr.StackTrace;
@Label("JDBC Connection Release") @Label("JDBC Connection Release")
@Category("Hibernate ORM") @Category("Hibernate ORM")
@Description("JDBC Connection Released") @Description("JDBC Connection Released")
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class JdbcConnectionReleaseEvent extends Event implements HibernateMonitoringEvent { public class JdbcConnectionReleaseEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.JdbcConnectionRelease"; public static final String NAME = "org.hibernate.orm.JdbcConnectionRelease";

View File

@ -18,7 +18,7 @@ import jdk.jfr.StackTrace;
@Label("JDBC PreparedStatement Created") @Label("JDBC PreparedStatement Created")
@Category("Hibernate ORM") @Category("Hibernate ORM")
@Description("JDBC PreparedStatement Created") @Description("JDBC PreparedStatement Created")
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class JdbcPreparedStatementCreationEvent extends Event implements HibernateMonitoringEvent { public class JdbcPreparedStatementCreationEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.JdbcPreparedStatementCreation"; public static final String NAME = "org.hibernate.orm.JdbcPreparedStatementCreation";

View File

@ -18,7 +18,7 @@ import jdk.jfr.StackTrace;
@Label( "JDBC PreparedStatement Executed" ) @Label( "JDBC PreparedStatement Executed" )
@Category( "Hibernate ORM" ) @Category( "Hibernate ORM" )
@Description( "JDBC PreparedStatement Executed" ) @Description( "JDBC PreparedStatement Executed" )
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class JdbcPreparedStatementExecutionEvent extends Event implements HibernateMonitoringEvent { public class JdbcPreparedStatementExecutionEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.JdbcPreparedStatementExecution"; public static final String NAME = "org.hibernate.orm.JdbcPreparedStatementExecution";

View File

@ -18,7 +18,7 @@ import jdk.jfr.StackTrace;
@Label( "PartialFlushEvent Execution" ) @Label( "PartialFlushEvent Execution" )
@Category( "Hibernate ORM" ) @Category( "Hibernate ORM" )
@Description( "PartialFlushEvent Execution" ) @Description( "PartialFlushEvent Execution" )
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class PartialFlushEvent extends Event implements HibernateMonitoringEvent { public class PartialFlushEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.PartialFlushEvent"; public static final String NAME = "org.hibernate.orm.PartialFlushEvent";

View File

@ -18,7 +18,7 @@ import jdk.jfr.StackTrace;
@Label( "PrePartialFlushEvent Execution" ) @Label( "PrePartialFlushEvent Execution" )
@Category( "Hibernate ORM" ) @Category( "Hibernate ORM" )
@Description( "PrePartialFlushEvent Execution" ) @Description( "PrePartialFlushEvent Execution" )
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class PrePartialFlushEvent extends Event implements HibernateMonitoringEvent { public class PrePartialFlushEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.PrePartialFlushEvent"; public static final String NAME = "org.hibernate.orm.PrePartialFlushEvent";

View File

@ -21,7 +21,7 @@ import jdk.jfr.StackTrace;
@Label("Session Closed") @Label("Session Closed")
@Category("Hibernate ORM") @Category("Hibernate ORM")
@Description("Hibernate Session closed") @Description("Hibernate Session closed")
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class SessionClosedEvent extends Event implements HibernateMonitoringEvent { public class SessionClosedEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.SessionClosed"; public static final String NAME = "org.hibernate.orm.SessionClosed";

View File

@ -21,7 +21,7 @@ import jdk.jfr.StackTrace;
@Label("Session Opened") @Label("Session Opened")
@Category("Hibernate ORM") @Category("Hibernate ORM")
@Description("Hibernate Session opened") @Description("Hibernate Session opened")
@StackTrace(false) @StackTrace
@AllowNonPortable @AllowNonPortable
public class SessionOpenEvent extends Event implements HibernateMonitoringEvent { public class SessionOpenEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.SessionOpen"; public static final String NAME = "org.hibernate.orm.SessionOpen";