How to select database in Chronograf

Hi,

I have set up locally InfluxDB and Chronograf on my Mac. I can see the TS data in the admin UI of InfluxDB on http://localhost:8083/ but I cannot plot it on Chronograf http://localhost:8888/
On DataExplorer of Chronograf, I type
use mydb; select * from myts

which doesn’t work.
I cannot select the database.

Tx for your help

OK I found a workaround with fully qualified measurement
select * from “mydb”.“autogen”.“myts”

1 Like

@danlg Using fully qualified measurement will clear up most issues like this.