Skip to content
View as Markdown

DataPoint

Field Type Description
timestamp google.protobuf.Timestamp The start of the aggregation window. The size of the aggregation window is given in the TimeSeries response.
value double The accumulated value of the data point for a given aggregation window.
rate_details optional bitdrift.public.shared.explorations.v1.RateDetails For rate data points, this field contains the numerator and denominator values to allow the frontend to render the absolute values in addition to the rate.
unique_devices optional uint64 The unique devices count for this data point based on the TrackUnique configuration.

Example

JSON
{
  "rate_details": {
    "denominator_count": 42,
    "numerator_count": 42
  },
  "timestamp": "2024-01-15T09:30:00Z",
  "unique_devices": 1,
  "value": 1.0
}