Hi,
I have a slightly odd problem. I have an item that saves the temperature of my living room into mysql every minute.
In my sitemap I then have that displayed in three graphs; daily, weekly and monthly. For some reason, the day and week graphs don’t display all the data. It’s most obvious in the daily graph and only slightly obvious in the weekly one.
At first I thought the thermometer was locking up but I’ve checked the numbers in Mysql and that’s not the case.
Furthermore, it’s always the same part of the graphs that’s missing - The first 11ish hours or so.
Can anyong think of a reason why it’s not displaying all the data?
I’ve attached a screenshot.
Number CarnegieTemp <temperature> (PersistenceGroup,Graphed) {mqtt="<[localhost:ourhouse/carnegie/temperature:state:default]"}
Items {
PersistenceGroup* : strategy = everyMinute, everyChange, restoreOnStartup
Graphed* : strategy = everyMinute, restoreOnStartup
}
As I copied that, I realised those two persistence groups are doing pretty much the same thing. Could having both be causing the issue?
Text label="Temperature" icon="temperature-max" {
Text item=CarnegieTemp icon="temperature-max" label="Current [%.1f°C]"
Text label="Past" icon="temperature-max"{
Text item=CarnegieTemp icon="temperature-max" label="Current [%.1f°C]"
Chart item=CarnegieTemp period=D refresh=60000
Chart item=CarnegieTemp period=W refresh=60000
Chart item=CarnegieTemp period=M refresh=60000
}
}