Data problem in InfluxDB

Hi,

I recently start using InfluxDB instead of RRD4j to store my sensor datas. I noticed some data are not stored.
I have two temperature A and B send by MQTT client at the same time. With RRD4j the temperature was both represented at the same time each second now datas are not stored each second.

Maybe someone could help me solve this problem

What have you asked influxdb to store? i.e. what is your influxdb.persist

I’haven’t a InfluxDB.persist file, I install Influx from command line and InfluxDB persistence from my OpenHab 3 GUI
What I need to put in this file?

If you want to save everything and restore everything:

Strategies {
    everyMinute : "0 * * * * ?"
    everyHour   : "0 0 * * * ?"
    everyDay    : "0 0 0 * * ?"
}
Items {
    *  : strategy = everyChange, everyHour, restoreOnStartup
}

Thanks, this solve my problem.

I have another question:
I see there is a InfuxDB panel and seem to be possible upload data from CSV, delete and modify datas but using 3000 port on my openhabian device I can see only Grafana panel. How can I access InfluxDB panel?

It is port 8086.

nothing on 8086 port

There is not influxdb panel, but you can do everything from command line.
For login try:

influx -username YourAdminUserName -password YourPassword -host localhost

This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.