systemquery/src/subcommands/query/meta.mjs

7 lines
266 B
JavaScript
Raw Normal View History

"use strict";
export default function(cli) {
2021-10-01 01:48:22 +00:00
cli.subcommand("query", "Query the cluster [requires agent with the query permission to be running on this host]")
.argument("address", "Address of the agent to connect to.", "unix-abstract:systemquery", "string");
}