package jdk.jfr.events; import jdk.jfr.*; import jdk.jfr.internal.Type; @Name(Type.EVENT_NAME_PREFIX + "DirectMemoryStatistics") @Label("Direct Memory Statistics") @Category({ "Java Application", "Statistics" }) @Description("Statistics of direct memory") @StackTrace(false) public class DirectMemoryStatisticsEvent extends AbstractJDKEvent { @Label("Count") public long count; @Label("TotalCapacity") public long totalCapacity; @Label("MemoryUsed") public long memoryUsed; @Label("Limit") public long limit; }