public final class MetricUpdate extends GeneratedMessageV3 implements MetricUpdateOrBuilder
Describes the state of a metric.
Protobuf type google.dataflow.v1beta3.MetricUpdate
Static Fields
CUMULATIVE_FIELD_NUMBER
public static final int CUMULATIVE_FIELD_NUMBER
Field Value
DISTRIBUTION_FIELD_NUMBER
public static final int DISTRIBUTION_FIELD_NUMBER
Field Value
GAUGE_FIELD_NUMBER
public static final int GAUGE_FIELD_NUMBER
Field Value
INTERNAL_FIELD_NUMBER
public static final int INTERNAL_FIELD_NUMBER
Field Value
KIND_FIELD_NUMBER
public static final int KIND_FIELD_NUMBER
Field Value
MEAN_COUNT_FIELD_NUMBER
public static final int MEAN_COUNT_FIELD_NUMBER
Field Value
MEAN_SUM_FIELD_NUMBER
public static final int MEAN_SUM_FIELD_NUMBER
Field Value
NAME_FIELD_NUMBER
public static final int NAME_FIELD_NUMBER
Field Value
SCALAR_FIELD_NUMBER
public static final int SCALAR_FIELD_NUMBER
Field Value
SET_FIELD_NUMBER
public static final int SET_FIELD_NUMBER
Field Value
UPDATE_TIME_FIELD_NUMBER
public static final int UPDATE_TIME_FIELD_NUMBER
Field Value
Static Methods
getDefaultInstance()
public static MetricUpdate getDefaultInstance()
Returns
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
Returns
newBuilder()
public static MetricUpdate.Builder newBuilder()
Returns
newBuilder(MetricUpdate prototype)
public static MetricUpdate.Builder newBuilder(MetricUpdate prototype)
Parameter
Returns
public static MetricUpdate parseDelimitedFrom(InputStream input)
Parameter
Returns
Exceptions
public static MetricUpdate parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parseFrom(byte[] data)
public static MetricUpdate parseFrom(byte[] data)
Parameter
Name | Description |
data | byte[]
|
Returns
Exceptions
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static MetricUpdate parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parseFrom(ByteString data)
public static MetricUpdate parseFrom(ByteString data)
Parameter
Returns
Exceptions
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static MetricUpdate parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
public static MetricUpdate parseFrom(CodedInputStream input)
Parameter
Returns
Exceptions
public static MetricUpdate parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
public static MetricUpdate parseFrom(InputStream input)
Parameter
Returns
Exceptions
public static MetricUpdate parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parseFrom(ByteBuffer data)
public static MetricUpdate parseFrom(ByteBuffer data)
Parameter
Returns
Exceptions
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static MetricUpdate parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parser()
public static Parser<MetricUpdate> parser()
Returns
Methods
equals(Object obj)
public boolean equals(Object obj)
Parameter
Returns
Overrides
getCumulative()
public boolean getCumulative()
True if this metric is reported as the total cumulative aggregate
value accumulated since the worker started working on this WorkItem.
By default this is false, indicating that this metric is reported
as a delta that is not associated with any WorkItem.
bool cumulative = 3;
Returns
Type | Description |
boolean | The cumulative.
|
getDefaultInstanceForType()
public MetricUpdate getDefaultInstanceForType()
Returns
getDistribution()
public Value getDistribution()
A struct value describing properties of a distribution of numeric values.
.google.protobuf.Value distribution = 11;
Returns
Type | Description |
Value | The distribution.
|
getDistributionOrBuilder()
public ValueOrBuilder getDistributionOrBuilder()
A struct value describing properties of a distribution of numeric values.
.google.protobuf.Value distribution = 11;
Returns
getGauge()
A struct value describing properties of a Gauge.
Metrics of gauge type show the value of a metric across time, and is
aggregated based on the newest value.
.google.protobuf.Value gauge = 12;
Returns
Type | Description |
Value | The gauge.
|
getGaugeOrBuilder()
public ValueOrBuilder getGaugeOrBuilder()
A struct value describing properties of a Gauge.
Metrics of gauge type show the value of a metric across time, and is
aggregated based on the newest value.
.google.protobuf.Value gauge = 12;
Returns
getInternal()
public Value getInternal()
Worker-computed aggregate value for internal use by the Dataflow
service.
.google.protobuf.Value internal = 8;
Returns
Type | Description |
Value | The internal.
|
getInternalOrBuilder()
public ValueOrBuilder getInternalOrBuilder()
Worker-computed aggregate value for internal use by the Dataflow
service.
.google.protobuf.Value internal = 8;
Returns
getKind()
Metric aggregation kind. The possible metric aggregation kinds are
"Sum", "Max", "Min", "Mean", "Set", "And", "Or", and "Distribution".
The specified aggregation kind is case-insensitive.
If omitted, this is not an aggregated value but instead
a single metric sample value.
string kind = 2;
Returns
Type | Description |
String | The kind.
|
getKindBytes()
public ByteString getKindBytes()
Metric aggregation kind. The possible metric aggregation kinds are
"Sum", "Max", "Min", "Mean", "Set", "And", "Or", and "Distribution".
The specified aggregation kind is case-insensitive.
If omitted, this is not an aggregated value but instead
a single metric sample value.
string kind = 2;
Returns
getMeanCount()
public Value getMeanCount()
Worker-computed aggregate value for the "Mean" aggregation kind.
This holds the count of the aggregated values and is used in combination
with mean_sum above to obtain the actual mean aggregate value.
The only possible value type is Long.
.google.protobuf.Value mean_count = 6;
Returns
Type | Description |
Value | The meanCount.
|
getMeanCountOrBuilder()
public ValueOrBuilder getMeanCountOrBuilder()
Worker-computed aggregate value for the "Mean" aggregation kind.
This holds the count of the aggregated values and is used in combination
with mean_sum above to obtain the actual mean aggregate value.
The only possible value type is Long.
.google.protobuf.Value mean_count = 6;
Returns
getMeanSum()
public Value getMeanSum()
Worker-computed aggregate value for the "Mean" aggregation kind.
This holds the sum of the aggregated values and is used in combination
with mean_count below to obtain the actual mean aggregate value.
The only possible value types are Long and Double.
.google.protobuf.Value mean_sum = 5;
Returns
Type | Description |
Value | The meanSum.
|
getMeanSumOrBuilder()
public ValueOrBuilder getMeanSumOrBuilder()
Worker-computed aggregate value for the "Mean" aggregation kind.
This holds the sum of the aggregated values and is used in combination
with mean_count below to obtain the actual mean aggregate value.
The only possible value types are Long and Double.
.google.protobuf.Value mean_sum = 5;
Returns
getName()
public MetricStructuredName getName()
Name of the metric.
.google.dataflow.v1beta3.MetricStructuredName name = 1;
Returns
getNameOrBuilder()
public MetricStructuredNameOrBuilder getNameOrBuilder()
Name of the metric.
.google.dataflow.v1beta3.MetricStructuredName name = 1;
Returns
getParserForType()
public Parser<MetricUpdate> getParserForType()
Returns
Overrides
getScalar()
Worker-computed aggregate value for aggregation kinds "Sum", "Max", "Min",
"And", and "Or". The possible value types are Long, Double, and Boolean.
.google.protobuf.Value scalar = 4;
Returns
Type | Description |
Value | The scalar.
|
getScalarOrBuilder()
public ValueOrBuilder getScalarOrBuilder()
Worker-computed aggregate value for aggregation kinds "Sum", "Max", "Min",
"And", and "Or". The possible value types are Long, Double, and Boolean.
.google.protobuf.Value scalar = 4;
Returns
getSerializedSize()
public int getSerializedSize()
Returns
Overrides
getSet()
Worker-computed aggregate value for the "Set" aggregation kind. The only
possible value type is a list of Values whose type can be Long, Double,
or String, according to the metric's type. All Values in the list must
be of the same type.
.google.protobuf.Value set = 7;
Returns
Type | Description |
Value | The set.
|
getSetOrBuilder()
public ValueOrBuilder getSetOrBuilder()
Worker-computed aggregate value for the "Set" aggregation kind. The only
possible value type is a list of Values whose type can be Long, Double,
or String, according to the metric's type. All Values in the list must
be of the same type.
.google.protobuf.Value set = 7;
Returns
getUnknownFields()
public final UnknownFieldSet getUnknownFields()
Returns
Overrides
getUpdateTime()
public Timestamp getUpdateTime()
Timestamp associated with the metric value. Optional when workers are
reporting work progress; it will be filled in responses from the
metrics API.
.google.protobuf.Timestamp update_time = 9;
Returns
getUpdateTimeOrBuilder()
public TimestampOrBuilder getUpdateTimeOrBuilder()
Timestamp associated with the metric value. Optional when workers are
reporting work progress; it will be filled in responses from the
metrics API.
.google.protobuf.Timestamp update_time = 9;
Returns
hasDistribution()
public boolean hasDistribution()
A struct value describing properties of a distribution of numeric values.
.google.protobuf.Value distribution = 11;
Returns
Type | Description |
boolean | Whether the distribution field is set.
|
hasGauge()
public boolean hasGauge()
A struct value describing properties of a Gauge.
Metrics of gauge type show the value of a metric across time, and is
aggregated based on the newest value.
.google.protobuf.Value gauge = 12;
Returns
Type | Description |
boolean | Whether the gauge field is set.
|
hasInternal()
public boolean hasInternal()
Worker-computed aggregate value for internal use by the Dataflow
service.
.google.protobuf.Value internal = 8;
Returns
Type | Description |
boolean | Whether the internal field is set.
|
hasMeanCount()
public boolean hasMeanCount()
Worker-computed aggregate value for the "Mean" aggregation kind.
This holds the count of the aggregated values and is used in combination
with mean_sum above to obtain the actual mean aggregate value.
The only possible value type is Long.
.google.protobuf.Value mean_count = 6;
Returns
Type | Description |
boolean | Whether the meanCount field is set.
|
hasMeanSum()
public boolean hasMeanSum()
Worker-computed aggregate value for the "Mean" aggregation kind.
This holds the sum of the aggregated values and is used in combination
with mean_count below to obtain the actual mean aggregate value.
The only possible value types are Long and Double.
.google.protobuf.Value mean_sum = 5;
Returns
Type | Description |
boolean | Whether the meanSum field is set.
|
hasName()
Name of the metric.
.google.dataflow.v1beta3.MetricStructuredName name = 1;
Returns
Type | Description |
boolean | Whether the name field is set.
|
hasScalar()
public boolean hasScalar()
Worker-computed aggregate value for aggregation kinds "Sum", "Max", "Min",
"And", and "Or". The possible value types are Long, Double, and Boolean.
.google.protobuf.Value scalar = 4;
Returns
Type | Description |
boolean | Whether the scalar field is set.
|
hasSet()
Worker-computed aggregate value for the "Set" aggregation kind. The only
possible value type is a list of Values whose type can be Long, Double,
or String, according to the metric's type. All Values in the list must
be of the same type.
.google.protobuf.Value set = 7;
Returns
Type | Description |
boolean | Whether the set field is set.
|
hasUpdateTime()
public boolean hasUpdateTime()
Timestamp associated with the metric value. Optional when workers are
reporting work progress; it will be filled in responses from the
metrics API.
.google.protobuf.Timestamp update_time = 9;
Returns
Type | Description |
boolean | Whether the updateTime field is set.
|
hashCode()
Returns
Overrides
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Overrides
isInitialized()
public final boolean isInitialized()
Returns
Overrides
newBuilderForType()
public MetricUpdate.Builder newBuilderForType()
Returns
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected MetricUpdate.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
Returns
Overrides
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
Returns
Overrides
toBuilder()
public MetricUpdate.Builder toBuilder()
Returns
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Parameter
Overrides
Exceptions