The metrics object for a SubTask.
JSON representation |
---|
{ "metric": string, "valueType": enum ( |
Fields | |
---|---|
metric |
Required. The name of the metric. If the metric is not known by the service yet, it will be auto-created. |
valueType |
Required. The value type of the time series. |
metricKind |
Optional. The metric kind of the time series. If present, it must be the same as the metric kind of the associated metric. If the associated metric's descriptor must be auto-created, then this field specifies the metric kind of the new descriptor and must be either |
points[] |
Required. The data points of this time series. When listing time series, points are returned in reverse time order. When creating a time series, this field must contain exactly one point and the point's type must be the same as the value type of the associated metric. If the associated metric's descriptor must be auto-created, then the value type of the descriptor is determined by the point's type, which must be |
Point
A single data point in a time series.
JSON representation |
---|
{ "interval": { object ( |
Fields | |
---|---|
interval |
The time interval to which the data point applies. For |
value |
The value of the data point. |
TimeInterval
A time interval extending just after a start time through an end time. If the start time is the same as the end time, then the interval represents a single point in time.
JSON representation |
---|
{ "startTime": string, "endTime": string } |
Fields | |
---|---|
startTime |
Optional. The beginning of the time interval. The default value for the start time is the end time. The start time must not be later than the end time. |
endTime |
Required. The end of the time interval. |
TypedValue
A single strongly-typed value.
JSON representation |
---|
{ // Union field |
Fields | |
---|---|
Union field value . The typed value field. value can be only one of the following: |
|
boolValue |
A Boolean value: |
int64Value |
A 64-bit integer. Its range is approximately |
doubleValue |
A 64-bit double-precision floating-point number. Its magnitude is approximately |
stringValue |
A variable-length string value. |
distributionValue |
A distribution value. |