Node Sources¶
List node sources matching a search filter.
Info
For more details on the SolarNetwork APIs used by this command, see the documentation for the /nodes/sources endpoint.
Usage¶
s10k nodes sources [-node=nodeId[,nodeId...]]...
[-source=sourceId[,sourceId...]]...
[-min=<minDate>] [-max=<maxDate>]
[-local] [-tz=<zone>]
[-filter=<metadataFilter>]
[-prop=propName[,propName...]]...
[-i=propName[,propName...]]...
[-a=propName[,propName...]]...
[-s=propName[, propName...]]...
[-mode=<displayMode>]
Options¶
Output¶
A listing of all matching node sources.
Examples¶
List all available sources:
s10k nodes sources
+---------+---------------+
| Node ID | Source ID |
+---------+---------------+
| 64 | /meter/1 |
+---------+---------------+
| 64 | /meter/2 |
+---------+---------------+
| 64 | /test/solcast |
+---------+---------------+
| 70 | meter/1 |
+---------+---------------+
| 101 | con/1 |
+---------+---------------+
| 101 | con/pcm |
+---------+---------------+
| 101 | dnp3/client/a |
+---------+---------------+
| 101 | gen/1 |
+---------+---------------+
| 101 | pcm/limit |
+---------+---------------+
| 101 | power/limit |
+---------+---------------+
| 101 | switch/1 |
+---------+---------------+
Node ID,Source ID
64,/meter/1
64,/meter/2
64,/test/solcast
70,meter/1
101,con/1
101,con/pcm
101,dnp3/client/a
101,gen/1
101,pcm/limit
101,power/limit
101,switch/1
[
{
"kind" : "n",
"objectId" : 64,
"sourceId" : "/meter/1"
},
{
"kind" : "n",
"objectId" : 64,
"sourceId" : "/meter/2"
},
{
"kind" : "n",
"objectId" : 64,
"sourceId" : "/test/solcast"
},
{
"kind" : "n",
"objectId" : 70,
"sourceId" : "meter/1"
},
{
"kind" : "n",
"objectId" : 101,
"sourceId" : "con/1"
},
{
"kind" : "n",
"objectId" : 101,
"sourceId" : "con/pcm"
},
{
"kind" : "n",
"objectId" : 101,
"sourceId" : "dnp3/client/a"
},
{
"kind" : "n",
"objectId" : 101,
"sourceId" : "gen/1"
},
{
"kind" : "n",
"objectId" : 101,
"sourceId" : "pcm/limit"
},
{
"kind" : "n",
"objectId" : 101,
"sourceId" : "power/limit"
},
{
"kind" : "n",
"objectId" : 101,
"sourceId" : "switch/1"
}
]
Show sources that have both watts
instantaneous and wattHours
accumulating properties
and have posted datum since 2025-08-01
:
s10k datum sources \
--instantaneous watts \
--accumulating wattHours \
--min-date 2025-08-01