I'm counting end to end from my perf monitoring, from the worker it's only going to be ~10ms or so I
I'm counting end to end from my perf monitoring, from the worker it's only going to be ~10ms or so I'd imagine



var startReq = performance.now();
await env.KV.put(key, req.body, { // or get
});
var getDur = performance.now() - startReq;
if (env.AE)
env.AE.writeDataPoint({
blobs: [],
doubles: [getDur],
indexes: [key]
});
...