public static interface Windmill.CounterOrBuilder
extends com.google.protobuf.MessageOrBuilder
| Modifier and Type | Method and Description |
|---|---|
boolean |
getCumulative()
optional bool cumulative = 7; |
double |
getDoubleScalar()
optional double double_scalar = 3; |
long |
getIntScalar()
optional int64 int_scalar = 4; |
Windmill.Counter.Kind |
getKind()
optional .windmill.Counter.Kind kind = 2; |
long |
getMeanCount()
optional int64 mean_count = 6; |
java.lang.String |
getName()
optional string name = 1; |
com.google.protobuf.ByteString |
getNameBytes()
optional string name = 1; |
boolean |
hasCumulative()
optional bool cumulative = 7; |
boolean |
hasDoubleScalar()
optional double double_scalar = 3; |
boolean |
hasIntScalar()
optional int64 int_scalar = 4; |
boolean |
hasKind()
optional .windmill.Counter.Kind kind = 2; |
boolean |
hasMeanCount()
optional int64 mean_count = 6; |
boolean |
hasName()
optional string name = 1; |
boolean hasName()
optional string name = 1;java.lang.String getName()
optional string name = 1;com.google.protobuf.ByteString getNameBytes()
optional string name = 1;boolean hasKind()
optional .windmill.Counter.Kind kind = 2;Windmill.Counter.Kind getKind()
optional .windmill.Counter.Kind kind = 2;boolean hasDoubleScalar()
optional double double_scalar = 3;
For SUM, MAX, MIN, AND, OR, MEAN at most one of the following should be set. For MEAN it is the sum
double getDoubleScalar()
optional double double_scalar = 3;
For SUM, MAX, MIN, AND, OR, MEAN at most one of the following should be set. For MEAN it is the sum
boolean hasIntScalar()
optional int64 int_scalar = 4;long getIntScalar()
optional int64 int_scalar = 4;boolean hasMeanCount()
optional int64 mean_count = 6;
Only set for MEAN. Count of elements contributing to the sum.
long getMeanCount()
optional int64 mean_count = 6;
Only set for MEAN. Count of elements contributing to the sum.
boolean hasCumulative()
optional bool cumulative = 7;
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.
boolean getCumulative()
optional bool cumulative = 7;
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.