Datum Stale Aggregates Mark¶
Mark node datum stream aggregations as "stale" for ranges of time.
Usage¶
s10k datum stale-aggregates mark
[-node=nodeId[,nodeId...]]...
[-source=sourceId[,sourceId...]]...
[-ident=identifier[,identifier...]]...
[-min=<minDate>] [-max=<maxDate>] [-local] [-tz=<zone>]
[-mode=<displayMode>]
Output¶
A listing of stale aggregate records matching the criteria. Note that if the --local-dates option is used
then the results will include records matching the given node and source IDs but for all time.
Examples¶
s10k datum stale-aggregates mark --node-id 123 --source-id 'bld1/meter/*' --min-date 2026-04-15 --max-date 2026-04-16
You can use stale-agg or stale instead of stale-aggregates:
s10k datum stale mark --node-id 123 --source-id 'bld1/meter/*' --min-date 2026-04-15 --max-date 2026-04-16
+------+---------+--------------+---------------------------+
| Kind | Node ID | Source ID | Period Start |
+------+---------+--------------+---------------------------+
| Hour | 123 | bld1/meter/4 | 2026-04-15 10:00:00+12:00 |
+------+---------+--------------+---------------------------+
| Hour | 123 | bld1/meter/4 | 2026-04-15 11:00:00+12:00 |
+------+---------+--------------+---------------------------+
| Hour | 123 | bld1/meter/4 | 2026-04-15 12:00:00+12:00 |
+------+---------+--------------+---------------------------+
| Hour | 123 | bld1/meter/4 | 2026-04-15 13:00:00+12:00 |
+------+---------+--------------+---------------------------+
Kind,Node ID,Source ID,Period Start
Hour,123,bld1/meter/4,2026-04-15 10:00:00+12:00
Hour,123,bld1/meter/4,2026-04-15 11:00:00+12:00
Hour,123,bld1/meter/4,2026-04-15 12:00:00+12:00
Hour,123,bld1/meter/4,2026-04-15 13:00:00+12:00
[
{
"kind": "Hour",
"nodeId": 123,
"sourceId": "bld1/meter/4",
"startDate": "2026-04-14 22:00:00Z"
},
{
"kind": "Hour",
"nodeId": 123,
"sourceId": "bld1/meter/4",
"startDate": "2026-04-14 23:00:00Z"
},
{
"kind": "Hour",
"nodeId": 123,
"sourceId": "bld1/meter/4",
"startDate": "2026-04-15 00:00:00Z"
},
{
"kind": "Hour",
"nodeId": 123,
"sourceId": "bld1/meter/4",
"startDate": "2026-04-15 01:00:00Z"
}
]