influxDB not saving constant values

My OH4 was working with influxDB 2.7 as it should. But some days ago it started to save changed values only. So constant values are no more saved over time which produces bad looking graphs.
Last time when this happened I deleted all data and influxDB started to save constant data too. But this is not very practical. Cause may be a storage parameter deep under the influxDb hood.

What is the content of you influxdb persistence definition ?

here my “influxdb.persist”:

Strategies {
	everyMinute	: "0 * * * * ?"
	everyHour 	: "0 0 * * * ?"
	everyDay	: "0 0 0 * * ?"
	default = everyChange, everyMinute
}

Items  {
    *: 			strategy = everychange, everyMinute, restoreOnStartup
  }

Mind the case in everyChange :

=>

Items  {
    *: 			strategy = everyChange, everyMinute, restoreOnStartup
  }

Thanks - that was the cure

1 Like