We have two cases where the timestamps we record are for benchmarking purposes - one for when the RPC call it sent, another for when an event is observed. Currently these timestamps are in milliseconds from System.currentTimeMillis(). We should switch these to System.nanoTime() - it is not subject to internal clock time issues and is at least as precise as the milliseconds measurement.
We have two cases where the timestamps we record are for benchmarking purposes - one for when the RPC call it sent, another for when an event is observed. Currently these timestamps are in milliseconds from
System.currentTimeMillis()
. We should switch these toSystem.nanoTime()
- it is not subject to internal clock time issues and is at least as precise as the milliseconds measurement.