@Generated public enum JobsHealthMetric extends Enum<JobsHealthMetric>
* `RUN_DURATION_SECONDS`: Expected total time for a run in seconds. * `STREAMING_BACKLOG_BYTES`: An estimate of the maximum bytes of data waiting to be consumed across all streams. This metric is in Public Preview. * `STREAMING_BACKLOG_RECORDS`: An estimate of the maximum offset lag across all streams. This metric is in Public Preview. * `STREAMING_BACKLOG_SECONDS`: An estimate of the maximum consumer delay across all streams. This metric is in Public Preview. * `STREAMING_BACKLOG_FILES`: An estimate of the maximum number of outstanding files across all streams. This metric is in Public Preview.
| Enum Constant and Description |
|---|
RUN_DURATION_SECONDS |
STREAMING_BACKLOG_BYTES |
STREAMING_BACKLOG_FILES |
STREAMING_BACKLOG_RECORDS |
STREAMING_BACKLOG_SECONDS |
| Modifier and Type | Method and Description |
|---|---|
static JobsHealthMetric |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobsHealthMetric[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobsHealthMetric RUN_DURATION_SECONDS
public static final JobsHealthMetric STREAMING_BACKLOG_BYTES
public static final JobsHealthMetric STREAMING_BACKLOG_FILES
public static final JobsHealthMetric STREAMING_BACKLOG_RECORDS
public static final JobsHealthMetric STREAMING_BACKLOG_SECONDS
public static JobsHealthMetric[] values()
for (JobsHealthMetric c : JobsHealthMetric.values()) System.out.println(c);
public static JobsHealthMetric 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 nullCopyright © 2025. All rights reserved.