Package io.micrometer.tracing.test
Enum Class SampleTestRunner.TracingSetup
java.lang.Object
java.lang.Enum<SampleTestRunner.TracingSetup>
io.micrometer.tracing.test.SampleTestRunner.TracingSetup
- All Implemented Interfaces:
Serializable,Comparable<SampleTestRunner.TracingSetup>,Constable
- Enclosing class:
- SampleTestRunner
Tracing setups. Contains various combinations of tracers and reporters.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIn memory with Brave Tracer.In memory with OTel Tracer.Wavefront Exporter with Brave Tracer.Wavefront Exporter with OTel Tracer.Zipkin Reporter with Brave Tracer.Zipkin Exporter with OTel Tracer. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static SampleTestRunner.TracingSetup[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
IN_MEMORY_OTEL
In memory with OTel Tracer. -
IN_MEMORY_BRAVE
In memory with Brave Tracer. -
ZIPKIN_OTEL
Zipkin Exporter with OTel Tracer. -
ZIPKIN_BRAVE
Zipkin Reporter with Brave Tracer. -
WAVEFRONT_OTEL
Wavefront Exporter with OTel Tracer. -
WAVEFRONT_BRAVE
Wavefront Exporter with Brave Tracer.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-