historize every node value even if node value didn't change? #1242
-
|
So i have a server up and running and want to historize every value that has been set on the nodes. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
|
I don't remember if UA Spec actually calls out if data should be time series or not...but I don't think that is the intention. Anyways, maybe you could hack the code to historize a "tick" node that changes ever second, then in the call back write all other nodes to history. Perhaps another way is to just have the server write to every node with the same value on a tick. Bother are probably bad ideas though haha. |
Beta Was this translation helpful? Give feedback.
-
|
no! only datachanges will be added to the History... if you need a whole timeseries (sampled timeseries) you must fill the gap assuming the value has not changed between two records but you can also copy the historymanagerclass and change it to a cyclic sampling historizer and contribute it back as a new feature 😉 |
Beta Was this translation helpful? Give feedback.
no! only datachanges will be added to the History... if you need a whole timeseries (sampled timeseries) you must fill the gap assuming the value has not changed between two records
but you can also copy the historymanagerclass and change it to a cyclic sampling historizer and contribute it back as a new feature 😉