OH3 influxDB Persistance every5Minutes?

Hello,

I have the following timeseries from a setpoint in OH3

Between 22:00 o’clock and 4:30 o’clock the stepoint value was continiously 5°C.

In my old OH2 installation I had the following persitance strategie

Strategies {
    everyMinute   : "0 * * * * ?"
    every5Minutes : "*/5 * * * * ?"
    everyHour     : "0 0 * * * ?"
    everyDay      : "0 0 0 * * ?"
}

Items {
    Temperature*, Percent*, Humidity*, Pm10*, Pm25*, Pressure*    : strategy = everyChange, every5Minutes
}

This strategie performed an entry in the database on everyChange but as well every5Minutes.

Where can I enter the 5Minutes strategy in the OH3 UI for my items?

An other problem I have is with that item

There is no need for persistance here. How can I take that one out?

At the moment it seems for me that any value becomes persisted automatically in the oh3 environment. I would like to controll that a bit.

The exact same way as you did in OH 2. Copy that .persist file to the persist $OH_CONF/persist folder. This is currently the only way to customize the persistence strategy.

You can’t exclude it from a default selection.
But when you do set up a manual xxxx.persist file, you choose what to persistand nothing else gets persisted.