Interface JfrRuntimeConfig
@ConfigMapping(prefix="quarkus.jfr")
@ConfigRoot(phase=RUN_TIME)
public interface JfrRuntimeConfig
-
Method Summary
Modifier and TypeMethodDescriptionbooleanenabled()If false, only quarkus-jfr events are not recorded even if JFR is enabled.booleanIf false, only REST events in quarkus-jfr are not recorded even if JFR is enabled.booleanIf false, only Runtime events in quarkus-jfr are not recorded even if JFR is enabled.
-
Method Details
-
enabled
@WithDefault("true") boolean enabled()If false, only quarkus-jfr events are not recorded even if JFR is enabled. In this case, Java standard API and virtual machine information will be recorded according to the setting. Default value istrue -
restEnabled
@WithName("rest.enabled") @WithDefault("true") boolean restEnabled()If false, only REST events in quarkus-jfr are not recorded even if JFR is enabled. In this case, other quarkus-jfr, Java standard API and virtual machine information will be recorded according to the setting. Default value istrue -
runtimeEnabled
@WithName("runtime.enabled") @WithDefault("true") boolean runtimeEnabled()If false, only Runtime events in quarkus-jfr are not recorded even if JFR is enabled. In this case, other quarkus-jfr, Java standard API and virtual machine information will be recorded according to the setting. Default value istrue
-