Package com.azure.spring.cloud.config
Enum RequestTracingConstants
- java.lang.Object
-
- java.lang.Enum<RequestTracingConstants>
-
- com.azure.spring.cloud.config.RequestTracingConstants
-
- All Implemented Interfaces:
Serializable,Comparable<RequestTracingConstants>
public enum RequestTracingConstants extends Enum<RequestTracingConstants>
Request Tracing values used to check
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AZURE_FUNCTIONS_ENVIRONMENT_VARIABLEConstant for checking for use in Azure FunctionsAZURE_WEB_APP_ENVIRONMENT_VARIABLEConstant for checking for use in Azure Web AppCORRELATION_CONTEXT_HEADERConstant for http Header Correlation ContextHOST_TYPE_KEYConstant for tracing the type of hostKUBERNETES_ENVIRONMENT_VARIABLEConstant for checking for use in KubernetesREQUEST_TRACING_DISABLED_ENVIRONMENT_VARIABLEConstant for Disabling TracingREQUEST_TYPE_KEYConstant for tracing the type of request
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static RequestTracingConstantsvalueOf(String name)Returns the enum constant of this type with the specified name.static RequestTracingConstants[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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
-
-
Method Detail
-
values
public static RequestTracingConstants[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RequestTracingConstants c : RequestTracingConstants.values()) System.out.println(c);
- 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 nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<RequestTracingConstants>
-
-