Command: cesapp healthy
The command cesapp healthy <dogu-name> can be used to check if the specified dogu is healthy.
Check all dogus
The command cesapp healthy --all checks the health status of all dogus.
Wait for ready state
The --wait flag delays the health check until the dogu is ready.
With --timeout <value> you can set a timeout for this, so that the command does not wait forever.
--fail-fast makes the command fail as soon as a critical result is detected.
Silent
With the --silent flag the results of the health check are not printed to the console. If there is at least one
unhealthy dogu, the command returns with exit code 1. If additionally, the --list-dogus flag is set, the names of
the unhealthy dogus are printed to the console before exiting.
Manpage
NAME:
cesapp healthy - checks if a dogu is healthy
USAGE:
cesapp healthy [options] <dogu-name>
cesapp healthy [options] --all
OPTIONS:
--all check the health of all installed dogus (default: false)
--fail-fast fails immediately if a critical result returns, makes only sense in combination with wait (default: false)
--silent do not print health check results (default: false)
--list-dogus in combination with silent mode: print the names of the dogus that failed the health check (default: false)
--timeout value timeout for check, makes only sense in combination with wait (default: 0)
--wait wait until the dogu is ready (default: false)