-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add setting to avoid session reset at app restart #340
Comments
Hi @AlexBenny, We are also facing this problem. Every time the app is restarted it creates a new session as you described. This is really affecting the quality of session data. I think it seems more bug rather than an enhancement. Is there any chance to prioritise this ticket? Thanks |
Thanks @hakanbagci for your important feedback about this issue. About the issue: The best approach for the session analysis would be at the data-processing phase, down in the pipeline, but it is computationally expensive, hence we preprocess session in the tracker. Definitely we want to improve the way the session is managed avoiding low performance and raising up the customisation level. |
Closing because it has been with no activity for a long time. |
…estarts rather than starting a new one (close #340)
The current implementation reset the session at each restart of the app because.
Informations about the session are persisted except for the last event timestamp.
Doing that the tracker is not able to know if the timeout is expired and it resets the session.
It would be useful to add a configuration setting that let the tracker to keep track of the last timestamp and keep the session alive among app restarts.
The text was updated successfully, but these errors were encountered: