Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

check_multi(8) [debian man page]

CHECK_MULTI(8)						  System Administration Utilities					    CHECK_MULTI(8)

NAME
check_multi - nagios plugin to combine multiple service checks in one run DESCRIPTION
Usage: check_multi -f <config file> [-n name] [-t timeout] [-T TIMEOUT] [-r level] [-l libexec_path] [-s option=value] check_multi [-h | --help] [-hh extended help] [-hhh complete help] check_multi [-v | --verbose] check_multi [-V | --version] [ more infos on http://my-plugin.de/check_multi ] Common options: -f, --filename config file which contains commands to be executed multiple files can be specified serially if filename is a directory, all '.cmd' files will be taken (file format follows nrpe style: command[tag]=plugin command line) -n, --name multi plugin name (shown in output), default: -r, --report <level> specify level of details in output (level is binary coded, just sum up all options) default:13 see more details with extended help option -hh -s, --set <option>=<value> <KEY>=<VALUE> - set multi variable $<KEY>$ to <VALUE> see more details with complete help option -hhh -t, --timeout timeout for one command, default:11 -T, --TIMEOUT TIMEOUT for all commands, default:60 -l, --libexec path to plugins, default:/usr/lib/nagios/plugins -h, --help print detailed help screen (extended help with -hh, complete help with -hhh) -v, --verbose prints debug output (multiple -v extend debug level) -V, --version print version information Extended command line - command file options also available on command line: -x, --execute "command [ tag ] = check_xyz" -i, --instant "tag" -y, --inventory -w, --warning <expression> -c, --critical <expression> -u, --unknown <expression> -o, --ok <expression> check_multi 0.26-1 November 2011 CHECK_MULTI(8)

Check Out this Related Man Page

RABBITMQ-PLUGINS(1)						 RabbitMQ Service					       RABBITMQ-PLUGINS(1)

NAME
rabbitmq-plugins - command line tool for managing RabbitMQ broker plugins SYNOPSIS
rabbitmq-plugins {command} [command options...] DESCRIPTION
rabbitmq-plugins is a command line tool for managing RabbitMQ broker plugins. It allows one to enable, disable and browse plugins. It must be run by a user with write permissions to the RabbitMQ configuration directory. Some plugins depend on others to work correctly. rabbitmq-plugins traverses these dependencies and enables all required plugins. Plugins listed on the rabbitmq-plugins command line are marked as explicitly enabled; dependent plugins are marked as implicitly enabled. Implicitly enabled plugins are automatically disabled again when they are no longer required. COMMANDS
list [-v] [-m] [-E] [-e] [pattern] -v Show all plugin details (verbose). -m Show only plugin names (minimal). -E Show only explicitly enabled plugins. -e Show only explicitly or implicitly enabled plugins. pattern Pattern to filter the plugin names by. Lists available plugins, their versions, dependencies and descriptions. Each plugin is prefixed with a status indicator - [ ] to indicate that the plugin is not enabled, [E] to indicate that it is explicitly enabled, and [e] to indicate that it is implicitly enabled. If the optional pattern is given, only plugins whose name matches pattern are shown. enable {plugin ...} plugin One or more plugins to enable. Enables the specified plugins and all their dependencies. disable {plugin ...} plugin One or more plugins to disable. Disables the specified plugins and all plugins that depend on them. EXAMPLES
rabbitmq-plugins list This command lists all the plugins available, on one line each. rabbitmq-plugins list -v This command lists all the plugins available. rabbitmq-plugins list -v management This command lists all the plugins available, but does not display plugins whose name does not contain "management". rabbitmq-plugins list -e rabbit This command lists all implicitly or explicitly enabled RabbitMQ plugins. rabbitmq-plugins enable rabbitmq_shovel rabbitmq_management This command enables the shovel and management plugins and all their dependencies. rabbitmq-plugins disable amqp_client This command disables amqp_client and all plugins that depend on it. AUTHOR
The RabbitMQ Team <info@rabbitmq.com> RabbitMQ Server 06/22/2012 RABBITMQ-PLUGINS(1)
Man Page