we want to publish a set of tags. They are samples at one rate (mayby once per second) and we want to publish them less frequent (maybe once per 10 seconds). Is this possible? For each tag we want to publish the timestamp of when the data was sampled by the source, and the quality of the data: is it good or bad so we know if the data can be trusted. Where can we find info on these type of attributes? Example: 3 tags sampled every 5s and published every 10s: {
"timestamp": 1658316850507,
"values": [
{
"id": "tag1",
"v": 1,
"q": true,
"t": 1658316845507
},
{
"id": "tag2",
"v": 100,
"q": true,
"t": 1658316845507
},
{
"id": "tag3",
"v": true,
"q": true,
"t": 1658316845507
},
{
"id": "tag1",
"v": 12,
"q": true,
"t": 1658316850507
},
{
"id": "tag2",
"v": 101,
"q": false,
"t": 1658316850507
},
{
"id": "tag3",
"v": false,
"q": true,
"t": 1658316850507
}
]
}
... View more