Time Series
Lifetime data series
This data is collected over the whole lifetime of the product. Currently the minimum, average, and maximum values are stored for 30 min intervals.
| Field | Type | Default | Unit |
|---|---|---|---|
binary |
- |
- |
|
Binary data |
|||
meta |
- |
- |
|
Meta information |
|||
Meta
Meta information about the lifetime series
| Field | Type | Default | Unit |
|---|---|---|---|
module |
string |
- |
- |
Module from which the data was collected |
|||
type |
- |
- |
|
Type of data |
|||
Binary
The fields of the series are encoded as binary arrays. Binary types instead of native Protobuf types are used to improve the performance.
| All byte arrays are encoded in Little Endian. |
| Field | Type | Default | Unit |
|---|---|---|---|
length |
uint32 |
- |
- |
Number of entries in arrays below. |
|||
timestamp |
bytes |
- |
- |
Timestamps of time series. Type: UInt64 |
|||
minimum |
bytes |
- |
- |
Aggregated minimum values. Type: Float32 |
|||
average |
bytes |
- |
- |
Aggregated average values. Type: Float32 |
|||
maximum |
bytes |
- |
- |
Aggregated average values. Type: Float32 |
|||