diff --git a/src/views/dashboard/related/ebpf/components/EBPFStack.vue b/src/views/dashboard/related/ebpf/components/EBPFStack.vue index 7d2ee801..abe3c866 100644 --- a/src/views/dashboard/related/ebpf/components/EBPFStack.vue +++ b/src/views/dashboard/related/ebpf/components/EBPFStack.vue @@ -136,7 +136,7 @@ limitations under the License. --> } const { type } = ebpfStore.analyzeTrees[0]; if ([JFREventType.LOCK].includes(type)) { - return `
Duration: ${item.dumpCount} ms
`; + return `
Duration: ${item.dumpCount} ns
`; } if (type === JFREventType.EXECUTION_SAMPLE) { return `
Count: ${item.dumpCount}
`;