What are you writing in your Worker? Looks like you are trying to store an object that can’t be sere
What are you writing in your Worker? Looks like you are trying to store an object that can’t be serealized
console.log a place to quickly and easily dump data to, but querying said data generally shouldn't be in the hot path of your app.

web_context to set a custom endpoint path, so it kind of works. Basic sample here: https://tsplay.dev/m3Eyqw
double column compared to the timestamp column? I'm writing ingesting Logpush batches into Analytics Engine, but they are delayed by up to a couple of minutes, so I need to use the timestamp specified in each log entry.Alternatively, if you need to be very accurate, maybe you can filter using both columns? You could increase the range on the timestamp one slightly, if needed.That sounds like the best solution for now. I know for sure the real timestamp won't be larger than the datapoint's, and, unless there's an issue with Logpush, the datapoint will be written within a couple of minutes of the event.
[response.status, Object.fromEntries(response.headers.entries())]doubleSELECT
formatDateTime(timestamp, '%Y-%m-%d') as day,
sum(_sample_interval) AS hits,
_sample_interval
FROM USAGE
WHERE
timestamp >= now() - INTERVAL '30' DAY
GROUP BY day, _sample_interval
ORDER BY day