feat: Add "About > Workers" tab#2083
Merged
nikclayton merged 1 commit intopachli:mainfrom Feb 7, 2026
Merged
Conversation
Some users still report slow queries. Investigation using the info in "About > Database" shows the workers intended to prune the database and keep query times reasonable aren't running. Add an additional "About > Workers" tab with additional information. For the three workers the current `WorkInfo` is displayed, as are the logs for those workers, to help with debugging this. To do this: - Move the workers from `app` to `core.workers`, so they can be visible to `feature.about`. This also moves their dependent code. - Add additional logging to the workers, add their tags to the list of tags logged to the database in `LogEntryTree`. - Modify the DAO methods that prune the database to return the number of affected rows. - Extract `LogEntryAdapter` and `WorkInfoAdapter`. - Include tags and periodicity information when displaying `WorkInfo`. - Add a Fragment/ViewModel to display the worker information. - `asDdHhMmSs()` now handles negative durations. - Periodic work is enqueued with an `UPDATE` policy (was `KEEP`).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Some users still report slow queries. Investigation using the info in "About > Database" shows the workers intended to prune the database and keep query times reasonable aren't running.
Add an additional "About > Workers" tab with additional information. For the three workers the current
WorkInfois displayed, as are the logs for those workers, to help with debugging this.To do this:
apptocore.workers, so they can be visible tofeature.about. This also moves their dependent code.LogEntryTree.LogEntryAdapterandWorkInfoAdapter.WorkInfo.asDdHhMmSs()now handles negative durations.UPDATEpolicy (wasKEEP).