Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,8 @@ def collect(
offset=value_negative.offset,
bucket_counts=(value_negative.get_offset_counts()),
),
# FIXME: Find the right value for flags
# This data point has recorded values, so no flags are set.
# If no value was recorded, None is returned instead.
flags=0,
min=min_,
max=max_,
Expand Down Expand Up @@ -1055,7 +1056,8 @@ def collect(
self._previous_value_negative.get_offset_counts()
),
),
# FIXME: Find the right value for flags
# This data point has recorded values, so no flags are set.
# If no value was recorded, empty Buckets() are used instead.
flags=0,
min=self._previous_min,
max=self._previous_max,
Expand Down
Loading