The wire-batch: line is emitted when more than one request completes within a single curl multi tick.
When you see RequestServer wire-batch: drained N completions in one curl multi tick followed by several wire: lines with identical timestamp prefixes, the clustering is cosmetic. The requests actually completed at different times, but they were all processed in the same loop.
To reconstruct true per-request completion times:
Take the drain timestamp from the batch line and subtract each request's drain delay (found in the wire^: line) from its wire^: timestamp.
RequestServer wire-batch: drained 3 completions in one curl multi tick