Your Node service has low CPU but latency spikes for every request at the same moment. What is happening?
Something synchronous is occupying the single thread that runs your JavaScript, so every pending request waits behind it regardless of what those requests are doing. The signature is that latency rises for everything at once rather than for one endpoint, which is what distinguishes it from a slow dependency.