node_status¶
Overview¶
node_status, is an alternative to knife’s status subcommand. It provides various output formats, sorting, filtering, and it is very fast, using partial search.
Example Usage¶
Return status information for all nodes with web in their name¶
$ node_status -F '*web*'
Return status information for all healthy nodes¶
Healthy will be considered any node that has had a successful chef-client run in the past 180 minutes.
$ node_status -H -m 180
Return status information for all healthy nodes with db in their name¶
Return a list of FQDNs matching our criteria, perhaps for use by fabric. Sort by FQDN in ascending order.
$ node_status -H -m 180 -f fqdn_list -S fqdn
Display chef-client and ruby version numbers for healthy nodes¶
Sort by ruby version.
$ node_status -H -m 180 -f fqdn_list -S ruby_version
Command-line Reference¶
A ‘knife status’ alternative.
usage: node_status [-h] [--name-filter CHEF_SEARCH_FILTER] [--healthy-only]
[--healthy-minutes HEALTHY_MINUTES]
[--output-format {knife_status,fqdn_list,version_list}]
[--sort {asc,desc,fqdn,chef_client_version,ruby_version}]
- Options:
--name-filter, -F A node name search filter, with * and ? allowed, defaulting to *. For example, *dev* or *pr?d*. Can be used multiple times with results being cumulative --healthy-only=False, -H=False Only report on “healthy” nodes, with client runs completed in < “healthy minutes” --healthy-minutes=120, -m=120 Set the number of minutes back for the last successful chef run, for a node to be considered healthy. Defaults to 120 minutes --output-format=knife_status, -f=knife_status Output format to display. Defaults to knife_status
Possible choices: knife_status, fqdn_list, version_list
--sort=desc, -S=desc Last client run sort order. Defaults to desc
Possible choices: asc, desc, fqdn, chef_client_version, ruby_version