TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How do you currently monitor cron jobs?

2 点作者 johnkevinmbasco超过 5 年前
Sometimes a cron job fails and you won&#x27;t even notice for weeks or months that it is failing unless you manually check things (e.g, check data on the db, check the logs, run the cron job manually and check if it will finish running successfully, etc...).<p>I&#x27;m curious on how do you currently monitor cron jobs?<p>Like how do you know immediately that your cron jobs are failing (e.g, it fails to run or it fails to finish running successfully because of an unexpected error)?<p>Currently, we are using CronMonit ( https:&#x2F;&#x2F;cronmonit.app&#x2F; ) which is a simple tool that we built that notifies us via email when our cron jobs fail. I&#x27;m curious what tool are you using or if you even use a cron monitoring tool at all?

2 条评论

drnex超过 5 年前
I use jenkins, they are not cron jobs at the system level, but jobs that can either be executed periodically (defined with cron syntax) executed manually or with a webhook (mainly for executing builds after a git push)<p>You can see the log of every execution, see what builds succeeded and failed, etc. It works for me.
ahazred8ta超过 5 年前
related: <a href="https:&#x2F;&#x2F;google.com&#x2F;search?q=monitor+cron+jobs" rel="nofollow">https:&#x2F;&#x2F;google.com&#x2F;search?q=monitor+cron+jobs</a>
评论 #21231064 未加载