I had some cronjobs that were running 120 times per hour. 5 were scheduled to run every 5 minutes and 1 was scheduled to run every 1 minute. They sent emails to my gmail account so I could debug the issues I was having with them.
Now I have those 5 jobs every 5 minutes and the 1 job running 4,9,14,19,24,29,34,39,44,49,54,59
I think I've fixed everything, but I'm still getting error messages in my email. In particular this one is very odd, PHP Parse error: syntax error, unexpected 'us' (T_STRING) in /var/www/html/blizzard_api_access_tokens.php on line 1
as this file doesn't even exist on the server anymore.
It looks like there's a queue of cronjob emails that are being sent, but it's being throttled.
Are these emails that have been throttled and are actually errors from a few days ago? And if they are then how should I go about reading the status (and errors) of my cronjobs in near real-time?
I'm using centos7 btw.