8359895: JFR: method-timing view doesn't work

Reviewed-by: mgronlun
This commit is contained in:
Erik Gahlin 2025-06-18 14:43:55 +00:00
parent 42d3604a31
commit 984d7f9cdf

View File

@ -471,8 +471,8 @@ table = "COLUMN 'Alloc. Time', 'Application Method', 'Object Age', 'Heap Usage'
[application.method-timing]
label = "Method Timing"
table = "COLUMN 'Timed Method', 'Invocations', 'Min. Tim', 'Max. Time', 'Average Time'
FORMAT none, none, ms-precision:6
table = "COLUMN 'Timed Method', 'Invocations', 'Min. Time', 'Max. Time', 'Average Time'
FORMAT none, none, ms-precision:6, ms-precision:6, ms-precision:6
SELECT LAST_BATCH(method) AS M, LAST_BATCH(invocations), LAST_BATCH(minimum), LAST_BATCH(maximum), LAST_BATCH(average)
FROM jdk.MethodTiming GROUP BY method ORDER BY average"