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 |
---|
{ "endTime": string, "startTime": string } |
Fields | |
---|---|
end |
Required. The end of the time interval. Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
start |
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. Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
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: |
|
bool |
A Boolean value: |
int64 |
A 64-bit integer. Its range is approximately ±9.2x1018. |
double |
A 64-bit double-precision floating-point number. Its magnitude is approximately ±10±300 and it has 16 significant digits of precision. |
string |
A variable-length string value. |
distribution |
A distribution value. |