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 | |
|---|---|
endTime |
Required. The end of the time interval. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
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. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
TypedValue
A single strongly-typed value.
| JSON representation |
|---|
{
// The following is a list of mutually exclusive fields. At most one of the
// fields will be set in a response:
"boolValue": boolean,
"int64Value": string,
"doubleValue": number,
"stringValue": string,
"distributionValue": {
object ( |
| Fields | |
|---|---|
| The typed value field. The following is a list of mutually exclusive fields. At most one of the fields will be set in a response: | |
boolValue |
A Boolean value: |
int64Value |
A 64-bit integer. Its range is approximately ±9.2x1018. |
doubleValue |
A 64-bit double-precision floating-point number. Its magnitude is approximately ±10±300 and it has 16 significant digits of precision. |
stringValue |
A variable-length string value. |
distributionValue |
A distribution value. |
| End of mutually exclusive fields. | |