Background jobs - #1084
Open
kesselb wants to merge 2 commits into
Open
Conversation
kesselb
force-pushed
the
background-jobs
branch
from
August 9, 2026 14:04
402f3c3 to
35c88b9
Compare
There was a problem hiding this comment.
Pull request overview
Adds background-job monitoring to the admin server information page.
Changes:
- Adds recent, failed, and slowest-job collectors with periodic caching.
- Adds cron health, job tables, and run-detail UI.
- Introduces periodic polling, shared types, tests, and generated assets.
Reviewed changes
Copilot reviewed 33 out of 36 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
tests/psalm-baseline.xml |
Updates collector suppressions. |
tests/lib/SlowestJobsTest.php |
Removes superseded tests. |
tests/lib/CronInfoTest.php |
Removes superseded tests. |
tests/lib/Collector/CronTest.php |
Tests cron collection. |
tests/lib/Collector/BackgroundJobsTest.php |
Tests job collection and aggregation. |
src/views/SettingsAdmin.vue |
Integrates periodic job monitoring. |
src/utils.ts |
Adds job formatting helpers. |
src/types.ts |
Defines polling payload types. |
src/main.css |
Styles headings and tables. |
src/composables/useLiveData.ts |
Generalizes endpoint polling. |
src/components/ThermalSection.vue |
Updates shared type import. |
src/components/StatTile.vue |
Adds slots and severity styling. |
src/components/SlowJobsTable.vue |
Displays aggregated jobs. |
src/components/JobStatusIndicator.vue |
Displays run status. |
src/components/JobRunsTable.vue |
Displays job runs. |
src/components/JobRunDialog.vue |
Shows run details. |
src/components/BackgroundJobsSection.vue |
Composes monitoring UI. |
lib/StaticData.php |
Removes legacy cron data. |
lib/SlowestJobs.php |
Removes legacy collector. |
lib/Jobs/UpdateJobStats.php |
Schedules statistics refreshes. |
lib/CronInfo.php |
Removes legacy cron service. |
lib/Controller/PageController.php |
Adds periodic endpoint. |
lib/Config/ConfigLexicon.php |
Defines statistics configuration. |
lib/Commands/UpdateJobStats.php |
Adds manual refresh command. |
lib/Collector/Cron.php |
Collects cron state. |
lib/Collector/BackgroundJobs.php |
Collects and aggregates runs. |
lib/AppInfo/Application.php |
Registers the config lexicon. |
js/serverinfo-main.mjs.map.license |
Updates generated licenses. |
js/serverinfo-main.mjs.license |
Updates generated licenses. |
css/serverinfo-main.css |
Points to rebuilt stylesheet. |
css/main-fEjI3iIv.chunk.css |
Adds rebuilt styles. |
css/main-BzX8j22H.chunk.css |
Removes obsolete styles. |
appinfo/routes.php |
Registers periodic route. |
appinfo/info.xml |
Registers job and command. |
Files not reviewed (1)
- css/main-fEjI3iIv.chunk.css: Generated file
馃挕 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
kesselb
force-pushed
the
background-jobs
branch
from
August 9, 2026 14:29
35c88b9 to
594258b
Compare
kesselb
force-pushed
the
background-jobs
branch
from
August 9, 2026 18:17
594258b to
12996b8
Compare
Assisted-by: ClaudeCode:claude-opus-5 Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
kesselb
force-pushed
the
background-jobs
branch
from
August 9, 2026 18:36
12996b8 to
9c15844
Compare
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.
This PR
Screenshots
Background jobs pane
H3 tweak