Nodes Meta List¶
Show metadata matching a search filter.
Usage¶
s10k nodes meta list [-filter=<filter>] -node=nodeId[,nodeId...]
[-node=nodeId[,nodeId...]]...
Options¶
Output¶
A listing of all matching node metadata records.
Examples¶
You can show exactly the metadata for a single node like this:
s10k nodes meta list --node-id 101
Property Value
------------------------------------
nodeId 101
created 2025-08-28T23:22:00.237150Z
updated 2025-08-29T05:20:06.322691Z
{
"m" : {
"limit" : 123,
}
}
You can show multiple node metadatas by providing multiple --node-id
options
or as a comma-delimited list:
# using multiple options
s10k nodes meta list --node-id 101 --node-id 102
# or the same thing, using a comma-delimited list
s10k nodes meta list --node-id 101,102
Property Value
------------------------------------
nodeId 101
created 2025-08-28T23:22:00.237150Z
updated 2025-08-29T05:20:06.322691Z
{
"m" : {
"limit" : 123
}
}
Property Value
------------------------------------
nodeId 102
created 2025-08-28T12:22:00.433152Z
updated 2025-08-28T18:11:21.627128Z
{
"m" : {
"limit" : 234
}
}
You can restrict the returned metadata using a metadata filter, for example
to show only the metadata where limit
is greater than 200
:
s10k nodes meta list --node-id 101,102 --filter '(m/limit>200)'
Property Value
------------------------------------
nodeId 102
created 2025-08-28T12:22:00.433152Z
updated 2025-08-28T18:11:21.627128Z
{
"m" : {
"limit" : 234
}
}