Enum StreamObservationDocumentation.LowCardinalityTags
- java.lang.Object
-
- java.lang.Enum<StreamObservationDocumentation.LowCardinalityTags>
-
- com.rabbitmq.stream.observation.micrometer.StreamObservationDocumentation.LowCardinalityTags
-
- All Implemented Interfaces:
io.micrometer.common.docs.KeyName,Serializable,Comparable<StreamObservationDocumentation.LowCardinalityTags>
- Enclosing class:
- StreamObservationDocumentation
public static enum StreamObservationDocumentation.LowCardinalityTags extends Enum<StreamObservationDocumentation.LowCardinalityTags> implements io.micrometer.common.docs.KeyName
Low cardinality tags.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MESSAGING_OPERATIONA string identifying the kind of messaging operation.MESSAGING_SYSTEMA string identifying the messaging system.NET_PROTOCOL_NAMEA string identifying the protocol (RabbitMQ Stream).NET_PROTOCOL_VERSIONA string identifying the protocol version (1.0).
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StreamObservationDocumentation.LowCardinalityTagsvalueOf(String name)Returns the enum constant of this type with the specified name.static StreamObservationDocumentation.LowCardinalityTags[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MESSAGING_SYSTEM
public static final StreamObservationDocumentation.LowCardinalityTags MESSAGING_SYSTEM
A string identifying the messaging system.
-
MESSAGING_OPERATION
public static final StreamObservationDocumentation.LowCardinalityTags MESSAGING_OPERATION
A string identifying the kind of messaging operation.
-
NET_PROTOCOL_NAME
public static final StreamObservationDocumentation.LowCardinalityTags NET_PROTOCOL_NAME
A string identifying the protocol (RabbitMQ Stream).
-
NET_PROTOCOL_VERSION
public static final StreamObservationDocumentation.LowCardinalityTags NET_PROTOCOL_VERSION
A string identifying the protocol version (1.0).
-
-
Method Detail
-
values
public static StreamObservationDocumentation.LowCardinalityTags[] 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 (StreamObservationDocumentation.LowCardinalityTags c : StreamObservationDocumentation.LowCardinalityTags.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StreamObservationDocumentation.LowCardinalityTags 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
-
-