Interface JfrRuntimeConfig


@ConfigMapping(prefix="quarkus.jfr") @ConfigRoot(phase=RUN_TIME) public interface JfrRuntimeConfig
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    If false, only quarkus-jfr events are not recorded even if JFR is enabled.
    boolean
    If false, only REST events in quarkus-jfr are not recorded even if JFR is enabled.
    boolean
    If 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 is true
    • 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 is true
    • 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 is true