From 57e0c8219dcf7f29f7b6e2129c5ef947ca1a542a Mon Sep 17 00:00:00 2001 From: Fine Date: Mon, 2 Dec 2024 17:36:36 +0800 Subject: [PATCH] update data --- .../dashboard/related/async-profiling/components/data.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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",