You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is meant to track accuracy issues present in ActivityWatch.
Inaccuracies can arise in two places: during collection, and during analysis.
Collection
Bugs in how events are sent, queued, and merged can affect the data and lead to inconsistencies like unexpected gaps and overlaps.
Inaccuracies introduced by bugs during collection are taken very seriously, as they may lead to unrecoverable loss of usable
tracking data. However, spurious behavior and difficulty in testing well presents difficulties in ensuring things are bug-free.
Some inaccuracies arise from assumptions made during collection, such as setting constants for polling intervals, AFK timeouts, etc. These should be intelligently set to minimize inaccuracies and make a good tradeoff between data detail and space/compute requirements.
Known issues
There are occurrences where events are duplicated, often then keep getting heartbeats such that there are two events with the same start and data but different durations. See here: Warning: gap of negative duration #239 (comment)
May downstream lead to warnings about overlapping events and negative gaps.
Bugs in transforms and queries may lead to analysis issues. However, these bugs are generally considered less critical since as long as the underlying data is correct, the analysis can always be corrected later. However, they can still present significant frustration for end-users, who may find the resulting buggy analysis results useless.
Transforms and queries are also easy to test, and the dual-implementation of transforms in both Python and Rust make it a suitable target for cross-implementation testing to ensure robust analysis methods.
This issue is meant to track accuracy issues present in ActivityWatch.
Inaccuracies can arise in two places: during collection, and during analysis.
Collection
Bugs in how events are sent, queued, and merged can affect the data and lead to inconsistencies like unexpected gaps and overlaps.
Inaccuracies introduced by bugs during collection are taken very seriously, as they may lead to unrecoverable loss of usable
tracking data. However, spurious behavior and difficulty in testing well presents difficulties in ensuring things are bug-free.
Some inaccuracies arise from assumptions made during collection, such as setting constants for polling intervals, AFK timeouts, etc. These should be intelligently set to minimize inaccuracies and make a good tradeoff between data detail and space/compute requirements.
Known issues
Analysis
Bugs in transforms and queries may lead to analysis issues. However, these bugs are generally considered less critical since as long as the underlying data is correct, the analysis can always be corrected later. However, they can still present significant frustration for end-users, who may find the resulting buggy analysis results useless.
Transforms and queries are also easy to test, and the dual-implementation of transforms in both Python and Rust make it a suitable target for cross-implementation testing to ensure robust analysis methods.
Known issues
The text was updated successfully, but these errors were encountered: