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
As well as the uptime of individual tools, we want to register how long a user stays on a single slide for each annotation stage (ROIs, clinical).
This way we're going to be able to capture the full "view time" without being limited to the simple time of "active" use of the interface tools.
Annotation steps will have a new field used to record, in seconds, the total view time.
Since a user can freely move from a slide to another during the review, view time have to be updated incrementally each time a user stays on the page of an annotation step.
The text was updated successfully, but these errors were encountered:
Since registering "view time" as a single field could be tricky, it's best to record this time frame as the a set of activity sessions by the user. Each session is a time frame used to register a continuous active time of him/her on the user interface.
Every session item should have the following attributes:
unique_id
ROI/clinical annotation step reference
session_start_time
session_last_update
of course, this means that two different session objects must be created in order to implement the annotation step reference as a foreign key into the DB.
The lifecicle of each session should be implemented as follow:
a new session is started when the user starts the ROI/clinical annotation process
every X seconds, a session_update event is sent to the server which updates the session_last_update field
if the user stops interacting with the interface for a pre-defined amount of time or leaves the annotation page (which includes moving to a different section of the software or closing the browser/panel) the session is closed and an optional session_close event is sent to the server (otherwise the last update event is considered as the last one of the session)
if the session was closed due to a prolonged inactivity by the user, when the interaction start back a new session is created and its lifecycle resumes from the first point
As well as the uptime of individual tools, we want to register how long a user stays on a single slide for each annotation stage (ROIs, clinical).
This way we're going to be able to capture the full "view time" without being limited to the simple time of "active" use of the interface tools.
Annotation steps will have a new field used to record, in seconds, the total view time.
Since a user can freely move from a slide to another during the review, view time have to be updated incrementally each time a user stays on the page of an annotation step.
The text was updated successfully, but these errors were encountered: