Enum StreamObservationDocumentation.HighCardinalityTags
- java.lang.Object
-
- java.lang.Enum<StreamObservationDocumentation.HighCardinalityTags>
-
- com.rabbitmq.stream.observation.micrometer.StreamObservationDocumentation.HighCardinalityTags
-
- All Implemented Interfaces:
io.micrometer.common.docs.KeyName,Serializable,Comparable<StreamObservationDocumentation.HighCardinalityTags>
- Enclosing class:
- StreamObservationDocumentation
public static enum StreamObservationDocumentation.HighCardinalityTags extends Enum<StreamObservationDocumentation.HighCardinalityTags> implements io.micrometer.common.docs.KeyName
High cardinality tags.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MESSAGING_DESTINATION_NAMEThe message destination name.MESSAGING_MESSAGE_PAYLOAD_SIZE_BYTESMESSAGING_SOURCE_NAMEThe message destination name.NET_SOCK_PEER_ADDRNET_SOCK_PEER_PORT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StreamObservationDocumentation.HighCardinalityTagsvalueOf(String name)Returns the enum constant of this type with the specified name.static StreamObservationDocumentation.HighCardinalityTags[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MESSAGING_DESTINATION_NAME
public static final StreamObservationDocumentation.HighCardinalityTags MESSAGING_DESTINATION_NAME
The message destination name.
-
MESSAGING_SOURCE_NAME
public static final StreamObservationDocumentation.HighCardinalityTags MESSAGING_SOURCE_NAME
The message destination name.
-
MESSAGING_MESSAGE_PAYLOAD_SIZE_BYTES
public static final StreamObservationDocumentation.HighCardinalityTags MESSAGING_MESSAGE_PAYLOAD_SIZE_BYTES
-
NET_SOCK_PEER_PORT
public static final StreamObservationDocumentation.HighCardinalityTags NET_SOCK_PEER_PORT
-
NET_SOCK_PEER_ADDR
public static final StreamObservationDocumentation.HighCardinalityTags NET_SOCK_PEER_ADDR
-
-
Method Detail
-
values
public static StreamObservationDocumentation.HighCardinalityTags[] 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.HighCardinalityTags c : StreamObservationDocumentation.HighCardinalityTags.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.HighCardinalityTags 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
-
-