public static enum KafkaReceiverObservation.ReceiverLowCardinalityTags extends Enum<KafkaReceiverObservation.ReceiverLowCardinalityTags> implements io.micrometer.common.docs.KeyName
Enum Constant and Description |
---|
COMPONENT_TYPE
Type of the component - 'receiver'.
|
RECEIVER_ID
The client id of the
KafkaConsumer behind KafkaReceiver . |
Modifier and Type | Method and Description |
---|---|
static KafkaReceiverObservation.ReceiverLowCardinalityTags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KafkaReceiverObservation.ReceiverLowCardinalityTags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KafkaReceiverObservation.ReceiverLowCardinalityTags RECEIVER_ID
KafkaConsumer
behind KafkaReceiver
.
Can be a ConsumerConfig.CLIENT_ID_CONFIG
value if present.public static final KafkaReceiverObservation.ReceiverLowCardinalityTags COMPONENT_TYPE
public static KafkaReceiverObservation.ReceiverLowCardinalityTags[] values()
for (KafkaReceiverObservation.ReceiverLowCardinalityTags c : KafkaReceiverObservation.ReceiverLowCardinalityTags.values()) System.out.println(c);
public static KafkaReceiverObservation.ReceiverLowCardinalityTags valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null