Interface ObservabilityConfiguration

All Superinterfaces:
ModulesConfiguration

@ConfigMapping(prefix="quarkus.observability") @ConfigRoot(phase=BUILD_TIME) public interface ObservabilityConfiguration extends ModulesConfiguration
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Enable simplified usage of dev resources, instead of full observability processing.
    boolean
    If DevServices has been explicitly enabled or disabled.
    boolean
    Do we start the dev services in parallel.

    Methods inherited from interface io.quarkus.observability.common.config.ModulesConfiguration

    lgtm
  • Method Details

    • enabled

      @WithDefault("true") boolean enabled()
      If DevServices has been explicitly enabled or disabled. DevServices is generally enabled by default, unless there is an existing configuration present.

      When DevServices is enabled Quarkus will attempt to automatically configure and start a containers when running in Dev or Test mode and when Docker is running.

    • devResources

      @WithDefault("false") boolean devResources()
      Enable simplified usage of dev resources, instead of full observability processing. Make sure @code{enabled} is set to false.
    • parallel

      @WithDefault("false") boolean parallel()
      Do we start the dev services in parallel.