Failed to run sql query: function "time_bucket_gapfill" is not supported under the current "apache" license
select
time_bucket_gapfill('1 hour', time) as hour,
count(update) as updates
from
app.update_log
where
time >= (now() - interval '3d') and time < now()
group by
hour
order by
hour asc