Bug
The .env.example (and original .env) sets:
But the actual bucket in the InfluxDB Cloud org is named frog_fleet (id 264e998dffdc618c). This means every query hits a non-existent bucket and returns no data.
Fix
Update .env (and any production config) to:
INFLUXDB_BUCKET=frog_fleet
Also update .env.example so future contributors use the correct value.
Bug
The
.env.example(and original.env) sets:But the actual bucket in the InfluxDB Cloud org is named
frog_fleet(id264e998dffdc618c). This means every query hits a non-existent bucket and returns no data.Fix
Update
.env(and any production config) to:Also update
.env.exampleso future contributors use the correct value.