Datum Stream Stale Aggregates List¶
Show stale node datum aggregate records matching a search filter.
Usage¶
s10k datum stale-aggregates list
[-node=nodeId[,nodeId...]]...
[-source=sourceId[,sourceId...]]...
[-ident=identifier[,identifier...]]...
[-min=<minDate>] [-max=<maxDate>] [-tz=<zone>]
[-agg=<aggregation>]
[-M=max] [-O=<resultOffset>]
[-mode=<displayMode>]
Options¶
Output¶
A listing of matching stale aggregate records. A stale aggregate record represents an aggregate period of time on a datum stream that SolarNetwork needs to recalculate because the underlying data has changed. Each record contains the following properties:
| Property | Description |
|---|---|
| Kind | The aggregation type. |
| Node ID | The node ID. |
| Source ID | The soruce ID. |
| Period Start | The start of the aggreate period. The end of the period depends on the Kind value. |
Examples¶
View all stale aggregate records for a node:
s10k datum stale-aggregates list --node-id 101
You can use stale-agg or stale instead of stale-aggregates:
s10k datum stale list --node-id 1001
+------+---------+---------------------+---------------------------+
| Kind | Node ID | Source ID | Period Start |
+------+---------+---------------------+---------------------------+
| Day | 1001 | /BLD1/S1/R10/INV/5 | 2026-07-31 00:00:00-07:00 |
+------+---------+---------------------+---------------------------+
| Hour | 1001 | /BLD1/S1/R10/INV/5 | 2026-07-31 21:00:00-07:00 |
+------+---------+---------------------+---------------------------+
Kind,Node ID,Source ID,Period Start
Day,1001,/BLD1/S1/R10/INV/5,2026-07-31 00:00:00-07:00
Hour,1001,/BLD1/S1/R10/INV/5,2026-07-31 21:00:00-07:00
[
{
"kind": "Day",
"nodeId": 1001,
"sourceId": "/BLD1/S1/R10/INV/5",
"startDate": "2026-07-31 07:00:00Z"
},
{
"kind": "Hour",
"nodeId": 1001,
"sourceId": "/BLD1/S1/R10/INV/5",
"startDate": "2026-08-01 04:00:00Z"
}
]