Feature #100946
openScheduler: More details via mail on failed task
0%
Description
In the mail received on a failed scheduler task it would be helpful to have more information available that helps identifying the problematic task. Currently there's only the stack trace but e.g. not the id of the scheduler task itself. Other informations might be helpful too.
Sure, the failed task is marked as failed
in the BE, but that's not a persistent information we can rely on. The subsequent run of that task might have ran smoothly again. And still I might wanna look into that one that failed.
Files
Updated by Philipp Kitzberger over 1 year ago
- Due date set to 2019-02-28
- Start date changed from 2023-06-02 to 2019-02-28
- Follows Feature #87806: Scheduler: Send email on error added
Updated by Philipp Kitzberger over 1 year ago
- Description updated (diff)
- Start date deleted (
2019-02-28) - Complexity set to easy
Updated by Georg Ringer 5 months ago
- Due date deleted (
2019-02-28) - Sprint Focus set to On Location Sprint
Updated by Garvin Hicking 5 months ago
- Status changed from New to Needs Feedback
Might https://review.typo3.org/84152 be related and solved it for you?
Updated by Philipp Kitzberger 5 months ago
@Garvin Hicking, yes, that is kinda related, but not changing the contents of the cronjob MAILTO mail. I'd like to have ID and name of the failed scheduler task included in that mail.
Updated by Garvin Hicking 5 months ago
Philipp Kitzberger wrote in #note-5:
@Garvin Hicking, yes, that is kinda related, but not changing the contents of the cronjob MAILTO mail. I'd like to have ID and name of the failed scheduler task included in that mail.
Do you have an example mail you get and how it looks with the patch above applied? I thought that the stdterr would contain the contents of the error logger, but this is not the case? I don't have a setup where I could easily investigate this, do you happen to know an easy way to make a scheduler task fail and generate the output that is used for a MAILTO command?
Updated by Philipp Kitzberger 4 months ago
Hm, simply add this to EXT:scheduler/Classes/Example/TestTask.php->execute()
:
throw new \Exception('Boom!');
Then add a task of that class to the scheduler and call it via:
$ bin/typo3cms scheduler:run --task=1 --force [ERROR] Boom!
That message is what's been sent as mail content. Which is not exactly helpful at all.
Your patch doesn't change that. But I guess modifying SchedulerCommand.php
would do the trick:
try { $this->executeOrStopTask($task); } catch (\Exception $e) { $this->io->getErrorStyle()->error($e->getMessage()); ...
Maybe just output a bit more than just the exceptions message. A 2nd line with scheduler id and title would already be an improvement.
Updated by Garvin Hicking 4 months ago
Ah, I see - if Exceptions are involved that's another thing.
Your patch idea looks promising, would you like to implement/propose that as a core patch, or should I?!
Updated by Gerrit Code Review 5 days ago
- Status changed from Needs Feedback to Under Review
Patch set 1 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87001
Updated by Philipp Kitzberger 3 days ago
- File Bildschirmfoto vom 2024-11-18 10-37-21.png Bildschirmfoto vom 2024-11-18 10-37-21.png added
- File Bildschirmfoto vom 2024-11-18 10-40-19.png Bildschirmfoto vom 2024-11-18 10-40-19.png added
This is how patch set 1 looks like on the CLI:
And in the mail client:
Updated by Philipp Kitzberger 3 days ago
Rather like this?
Updated by Gerrit Code Review 3 days ago
Patch set 2 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87001
Updated by Gerrit Code Review 2 days ago
Patch set 3 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87001
Updated by Gerrit Code Review 2 days ago
Patch set 4 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87001
Updated by Gerrit Code Review 2 days ago
Patch set 5 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87001
Updated by Gerrit Code Review 2 days ago
Patch set 6 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87001
Updated by Gerrit Code Review 1 day ago
Patch set 1 for branch 13.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87089
Updated by Gerrit Code Review about 19 hours ago
Patch set 7 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87001