@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)", date="2023-01-31T18:36:56.224Z") public enum ClusterMonitoringLevel extends java.lang.Enum<ClusterMonitoringLevel>
Enum Constant and Description |
---|
DEFAULT
(experimental) Default metrics are the essential metrics to monitor.
|
PER_BROKER
(experimental) Per Broker metrics give you metrics at the broker level.
|
PER_TOPIC_PER_BROKER
(experimental) Per Topic Per Broker metrics help you understand volume at the topic level.
|
PER_TOPIC_PER_PARTITION
(experimental) Per Topic Per Partition metrics help you understand consumer group lag at the topic partition level.
|
Modifier and Type | Method and Description |
---|---|
static ClusterMonitoringLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClusterMonitoringLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClusterMonitoringLevel DEFAULT
public static final ClusterMonitoringLevel PER_BROKER
public static final ClusterMonitoringLevel PER_TOPIC_PER_BROKER
public static final ClusterMonitoringLevel PER_TOPIC_PER_PARTITION
public static ClusterMonitoringLevel[] values()
for (ClusterMonitoringLevel c : ClusterMonitoringLevel.values()) System.out.println(c);
public static ClusterMonitoringLevel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null