Why "top" missed a cron job that was killing our API latency
parth21shah.substack.com
Why "top" missed a cron job that was killing our API latency
1–5 of 5 posts
Re: Why "top" missed a cron job that was killing our API latency
#2Re: Why "top" missed a cron job that was killing our API latency
#3Anything that appears + disappears between polls is effectively invisible unless you’re streaming syscalls/process events. It’s surprising how often “short-lived, high-impact” processes cause the worst production spikes.
Curious whether you’re planning to surface this at the scheduler level (run queue latency/involuntary context switches) or stick to process-lifecycle tracing?
Re: Why "top" missed a cron job that was killing our API latency
#4Re: Why "top" missed a cron job that was killing our API latency
#5This is a great example of the blind spot between sampling-based observability and event-driven tracing. Anything that appears + disappears between polls is effectively invisible unless you’re streaming syscalls/process events. It’s surprising how often “short-lived, high-impact” processes cause the worst production spikes. Curious whether you’re planning to surface this at the scheduler level (run queue latency/invo…