Enum RequestTracingConstants

java.lang.Object
java.lang.Enum<RequestTracingConstants>
com.azure.spring.cloud.config.RequestTracingConstants
All Implemented Interfaces:
Serializable, Comparable<RequestTracingConstants>, java.lang.constant.Constable

public enum RequestTracingConstants extends Enum<RequestTracingConstants>
Request Tracing values used to check
  • Enum Constant Details

    • REQUEST_TRACING_DISABLED_ENVIRONMENT_VARIABLE

      public static final RequestTracingConstants REQUEST_TRACING_DISABLED_ENVIRONMENT_VARIABLE
      Constant for Disabling Tracing
    • AZURE_FUNCTIONS_ENVIRONMENT_VARIABLE

      public static final RequestTracingConstants AZURE_FUNCTIONS_ENVIRONMENT_VARIABLE
      Constant for checking for use in Azure Functions
    • AZURE_WEB_APP_ENVIRONMENT_VARIABLE

      public static final RequestTracingConstants AZURE_WEB_APP_ENVIRONMENT_VARIABLE
      Constant for checking for use in Azure Web App
    • KUBERNETES_ENVIRONMENT_VARIABLE

      public static final RequestTracingConstants KUBERNETES_ENVIRONMENT_VARIABLE
      Constant for checking for use in Kubernetes
    • REQUEST_TYPE_KEY

      public static final RequestTracingConstants REQUEST_TYPE_KEY
      Constant for tracing the type of request
    • HOST_TYPE_KEY

      public static final RequestTracingConstants HOST_TYPE_KEY
      Constant for tracing the type of host
    • CORRELATION_CONTEXT_HEADER

      public static final RequestTracingConstants CORRELATION_CONTEXT_HEADER
      Constant for http Header Correlation Context
    • REPLICA_COUNT

      public static final RequestTracingConstants REPLICA_COUNT
      Constant for number of replicas, not including origin configured.
  • Method Details

    • values

      public static RequestTracingConstants[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static RequestTracingConstants valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<RequestTracingConstants>