diff --git a/src/views/dashboard/related/async-profiling/components/data.ts b/src/views/dashboard/related/async-profiling/components/data.ts index 6c122f7b..6078842b 100644 --- a/src/views/dashboard/related/async-profiling/components/data.ts +++ b/src/views/dashboard/related/async-profiling/components/data.ts @@ -35,14 +35,13 @@ export enum EventsMap { WALL = "EXECUTION_SAMPLE", CTIMER = "EXECUTION_SAMPLE", ITIMER = "EXECUTION_SAMPLE", - LOCK = "JAVA_MONITOR_ENTER", + LOCK = "LOCK", ALLOC = "OBJECT_ALLOCATION_OUTSIDE_TLAB", } export enum JFREventType { EXECUTION_SAMPLE = "EXECUTION_SAMPLE", - JAVA_MONITOR_ENTER = "JAVA_MONITOR_ENTER", - THREAD_PARK = "THREAD_PARK", + LOCK = "LOCK", OBJECT_ALLOCATION_IN_NEW_TLAB = "OBJECT_ALLOCATION_IN_NEW_TLAB", OBJECT_ALLOCATION_OUTSIDE_TLAB = "OBJECT_ALLOCATION_OUTSIDE_TLAB", PROFILER_LIVE_OBJECT = "PROFILER_LIVE_OBJECT",