Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions btrdb/point.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ class StatPoint(object):
Parameters
----------
time : int
The time in which the aggregated values represent in nanoseconds since
the Unix epoch.
The start time of the window which spans the aggregated values. Represented
in nanoseconds since the Unix epoch.
min : float
The minimum value in a time series within a specified range of time.
mean : float
Expand Down Expand Up @@ -157,7 +157,7 @@ def from_proto_list(cls, proto_list):
@property
def time(self):
"""
The mean value of the time series point within a range of time
The starting time of the time series within the stat point
"""
return self._time

Expand Down