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" )
@Category( "Hibernate ORM" )
@Description( "Cache Get Executed" )
@StackTrace(false)
@StackTrace
@AllowNonPortable
public class CacheGetEvent extends Event implements HibernateMonitoringEvent {
public static final String NAME = "org.hibernate.orm.CacheGet";

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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