Nagios – Monitorando nossos hosts ESXi

Neste documento, veremos todos los pasos necesarios para poder monitorizar un host ESXi, veremos los parámetros más comunes y los valores que podremos obtener para tener un entorno controlado gracias a Nagios y Centreon! Es asombrosa toda la información que podremos obtener! En otros documentos ya veremos otra info que podremos obtener de vCenter y sus MVs, hoy tocan los hosts!

 

 

Instalación de requisitos,

Empezaremos primero instalando todos los requisitos necesarios para usar uno de los scripts más comunes que podemos usar. Em Nagios Exchange podremos obtener casi cualquier script que necesitemos, y de ahí nos descargaremos posteriormente uno que suelo usar yo para monitorizar hosts ESXi 4.x, 5.x o 6.x. Pero antes tendremos que instalar en la máquina nagios el SDK de VMware así como todo lo necesario antes.

Tras tener todos los requisitos instalados y probado que funciona el script para monitorizar servidores ESXi, podremos ya salir de consola y usar el interfaz de Centreon para crear los hosts ESXi, los servicios que monitorizaremos y los comandos necesarios. Espero que se entienda bien, a seguir los pasos!

 

Instalando los requisitos:

[Código-fonte]yum -y install openssl-devel perl-Archive-Zip perl-Class-MethodMaker uuid-perl perl-SOAP-Lite perl-XML-SAX perl-XML-NamespaceSupport perl-XML-LibXML perl-MIME-Lite perl-MIME-Types perl-MailTools perl-TimeDate uuid libuuid perl-Data-Dump perl-UUID make gcc perl-devel libuuid-devel cpan[/Código-fonte]

 

Buscamos en la web de descargas de VMware, el vSphere SDK para Perl, descargamos el paquete gz de 64 bit.

 

Lo subimos al servidor de Nagios mediante WinSCP por ejemplo y lo dejamos en el directorio temporal ‘/tmp/’. Lo descomprimimos y lo instalamos:

[Código-fonte]tar xvzf VMware-vSphere-Perl-SDK-xxxxxxx.tar.gz
cd vmware-vsphere-cli-distrib/
./vmware-install.pl[/Código-fonte]

 

Lo instalamos con los parámetros predeterminados,

 

Y tras unos segundos lo tendremos instalado,

 

Instalamos UUID:

[Código-fonte]cd /usr/src
WGET HTTP://search.cpan.org/CPAN/authors/id/J/JN/JNH/UUID-0.04.tar.gz
tar -xzvf UUID-0.04.tar.gz -C /opt[/Código-fonte]

 

Lo compilamos:

[Código-fonte]cd /opt/UUID-0.04
perl Makefile.PL
Fazer[/Código-fonte]

 

Y lo instalamos, así como ‘perl-Nagios-Pluginque también será necesario:

[Código-fonte]make install
yum install perl-Nagios-Plugin[/Código-fonte]

 

Instalamos más requisitos:

[Código-fonte]cpan GAAS/libwww-perl-5.837.tar.gz[/Código-fonte]

 

Y vamos acabando con este último!

[Código-fonte]cpan Monitoring::Plug-in[/Código-fonte]

 

Finalmente, ya podremos bajar el script que nos permitirá obtener información de los hosts aquí https (em inglês)://exchange.nagios.org/directory/Plugins/Operating-Systems/%2A-Virtual-Environments/VMWare/check_vmware_api/details una vez descargado dejaremos el fichero ‘check_vmware_api.plen ‘/usr/lib/centreon/plugins/y lo haremos ejecutable con ‘chmod +x check_vmware_api.pl’. Probaremos a ejecutarlo y si todo es correcto nos saldrá esta pantalla indicándonos las opciones que podremos usar.

 

Creando un usuario con privilegios en ESXi,

El script anterior, necesitará validarse contra el host ESXi para obtener la información que nos interese, por tanto crearemos un usuario en cada ESXi y daremos los permisos necesarios.

 

En cada ESXi, tras loguearnos bien con el cliente tradicional o el navegador web, iremos a la zona de “Usuários” y crearemos uno, le estableceremos también la contraseña.

 

No “Permisos”, añadiremos a este usuario a todo el ámbito posible, y le añadiremos con el rol de ‘Read-Only’.

 

Agora, crearemos en el directorio que nos interese (yo lo dejo en el mismo de plugins) un fichero, donde almacenaremos el usuario y contraseña que el comando usará para validarse cuando haga los checkeos. En este ejemplo lo guardo en ‘/usr/lib/centreon/plugins/check_vmware_api.authcon el siguiente formato:

[Código-fonte]username=usuario
password=Contraseña[/Código-fonte]

 

Y ya podremos ejecutar cualquier checkeo contra un host ESXi, algo sencillo para probar, Utilização da CPU:

[Código-fonte]./check_vmware_api.pl -H SERVIDOR_ESXI -f check_vmware_api.auth -l cpu -s usage -w 80 -c 90[/Código-fonte]

 

Los parámetros que acompañan al comando vienen abajo descritos todos, en el comando anterior ‘-w’ será o % de aviso cuando sea Warning y ‘-cel valor de cuando sea Critico. Esto os lo comento por que es común en casi todos los comandos, y cada uno que use los varemos que quiera, en estos documentos encontraréis que normalmente cuando alcance el 80% será algo Warning y cuando llegue al 90% será Critical.

 

Ahora ya sólo queda elegir los elementos que más nos interese monitorizar, al final del documento os pondré todas las posibilidades que nos da este excelente comando ‘check_vmware_api.pl’. Pero por ahora os pongo los ejemplos más comunes para monitorizar información de un host ESXi:

 

Uso de Memoria RAM:

[Código-fonte]./check_vmware_api.pl -H SERVIDOR_ESXI -f check_vmware_api.auth -l mem -s usage -w 80 -c 90[/Código-fonte]

 

Uso de Memoria Swap

[Código-fonte]./check_vmware_api.pl -H SERVIDOR_ESXI -f check_vmware_api.auth -l mem -s swap -w 1 -c 10[/Código-fonte]

 

Uso de Memoria Balloning

[Código-fonte]./check_vmware_api.pl -H SERVIDOR_ESXI -f check_vmware_api.auth -l mem -s memctl -w 1 -c 10[/Código-fonte]

 

Uso de red

[Código-fonte]./check_vmware_api.pl -H SERVIDOR_ESXI -f check_vmware_api.auth -l net -s usage -w 10240 -c 102400[/Código-fonte]

 

Detectar si tenemos alguna NIC caida,

[Código-fonte]./check_vmware_api.pl -H SERVIDOR_ESXI -f check_vmware_api.auth -l net -s nic -w 1 -c 2[/Código-fonte]

 

Monitorizar los datastores VMFS, en este, el comando devuelve el uso libre, por lo indicaremos con el siguiente formato en Warning y Critical el % de espacio libre,

 

[Código-fonte]./check_vmware_api.pl -H SERVIDOR_ESXI -f check_vmware_api.auth -l vmfs -s LUN04 -w 10%: -c 5%:[/Código-fonte]

 

Por ejemplo con el parámetro ‘runtimeveremos un resumen general del servidor, y opcionalmente podremos añadirle otras opciones como ‘healthpara ver la salud, ‘temperaturepara ver los sensores de temperatura, o ‘statuspara ver un resumen entre otros.

[Código-fonte]./check_vmware_api.pl -H SERVIDOR_ESXI -f check_vmware_api.auth -l runtime
./check_vmware_api.pl -H SERVIDOR_ESXI -f check_vmware_api.auth -l runtime -s health
./check_vmware_api.pl -H SERVIDOR_ESXI -f check_vmware_api.auth -l runtime -s temperature
./check_vmware_api.pl -H SERVIDOR_ESXI -f check_vmware_api.auth -l runtime -s status[/Código-fonte]

 

Si usamos el parámetro ‘servicepodremos ver el status de todos los servicios de ESXi si están corriendo o no, y adicionalmente podremos añadirle el nombre de los servicios que nos interese monitorizar unicamente.

[Código-fonte]./check_vmware_api.pl -H SERVIDOR_ESXI -f check_vmware_api.auth -l service
./check_vmware_api.pl -H SERVIDOR_ESXI -f check_vmware_api.auth -l service -s DCUI vpxa[/Código-fonte]

 

Por ahora con esto creo que nos vale, Não? Ya que el script ‘check_vmware_api.pltiene aún muchísimas cosas más que podrás curiosear y ya veremos en otros posts, también nos valdría para monitorizar Clústers de hosts, Data Centers, Máquinas Virtuales, etc… otro día ;), ahora seguimos con los hosts!

 

Creando un host,

Aqui daremos ya por fín de alta en Nagios nuestro primero servidor, un host ESXi! Usaremos Centreon para facilitar todo el trabajo.

 

 

Desde “Configuração” > “Hosts” > “Adicionar”, añadiremos nuestro primer servidor, completaremos al menos los siguientes campos:

  • Nome: Nombre del servidor.
  • Alias: Alias del servidor.
  • Endereço IP / DNS: La dirección IP o nombre DNS del servidor.
  • SNMP Community & Version: En este caso no sería necesario.
  • Monitored from: El poller que monitorizará este host.
  • Modelo: Seleccionamos ‘generic-active-host’.

 

Creando un Comando,

Definiremos un Comando en Centreon usando variables para poder ejecutar los comandos que vimos antes, este comando luego será llamado desde cada Servicio que creemos para monitorizar la CPU, CARNEIRO… Qué mejor que verlo para entenderlo 🙂

 

Me suele gustar llamar al Comando igual que el script, por eso, en este caso crearé el comando ‘check_vmware_api.pl’. Para fazer isso,, desde “Configuração” > “Comandos” > “Verifica” > “Adicionar”. Indicamos que es un comando de tipo ‘Checky en el ‘Command line indicamos’:

[Código-fonte]$CENTREONPLUGINS$/check_vmware_api.pl -H $HOSTADDRESS$ -f $CENTREONPLUGINS$/check_vmware_api.auth -l $ARG1$ -s $ARG2$ -w $ARG3$ -c $ARG4$[/Código-fonte]

  • La variable $CENTREONPLUGINS$ es ‘/usr/lib/centreon/plugins/
  • La variable $HOSTADDRESS$ sería la dirección IP o nombre FQDN del servidor a monitorizar.
  • ARG1 sería el primer argumento que le pasaremos, si recordamos es el ‘Comandoque se indica tras ‘-l’.
  • ARG2 sería el primer argumento que le pasaremos,si recordamos es el ‘SubComandoque se indica tras ‘-s’.
  • ARG3 será el valor de Warning.
  • ARG4 será el valor de Critical.

Clique em “Describe argumentspara no tener que memorizar y saber esto.

 

Así que asociamos de una forma sencilla qué es cada Argumento, que luego cuando creemos los servicios, lo agradeceremos. “Salvar”.

 

Creando los servicios,

Aquí ya por fín podremos crear los servicios de lo que queremos monitorizar, sea CPU, CARNEIRO, NICs caidas, estado de los datastores… por isso, nos apoyaremos como hemos dicho en el comando que acabamos de crear! Mirar qué fácil:

 

Em “Configuração” > “Serviços” > “Adicionar”, crearemos nuestro primer servicio! Rellenaremos al menos los siguientes datos:

  • Descrição: Nombre del servicio, en mi caso CPU, CARNEIRO, Trocar memória…
  • Vinculado a anfitriões: Aquí añadiremos el host que hemos creado antes, nuestro servidor ESXi.
  • Modelo: Seleccionamos ‘generic-active-service’.
  • Comando Check: Escogemos el comando que hemos creado antes también, que en mi caso le llame como el script ‘check_vmware_api.pl
  • Argumentos: Deberemos rellenar todos los argumentos que nos pida el comando.
    • Uso de CPU: cpu / usage / 80 / 90
    • CARNEIRO: mem / usage / 80 / 90
    • Trocar memória: mem / swap / 1 / 10
    • Memoria Balloning: mem / memctl / 1/ 10
    • Estado de NIC: Rede / nic / 1 / 2

Gravamos com “Salvar”,

 

Para ir creando el resto de servicios, en vez de crearlos todos desde cero, lo más cómodo será duplicarlos, así sólo tendremos que editar los argumentos y será mucho más fácil crear los servicios.

 

 

Una vez que hayamos creado todos los servicios asociados a un host ESXi, si queremos ahora duplicar el trabajo realizado para monitorizar otro host ESXi que tengamos, o todos los que tengamos, pues desde “Configuração” > “Hosts”, seleccionaremos el ESXi que tenemos y lo duplicamos, con eso generamos un nuevo host, al que tendremos que cambiar el Nombre, Alias y Direccion IP y ya tendremos otro host listo con los mismos servicios!

 

E nada, lo de siempre, una vez finalizado el trabajo, guardamos los cambios, Cenreon generará los ficheros de nagios necesarios, “Configuração” > “Pesquisadores” > “Export configuration”,

 

Seleccionamos nuestro poller, Marcamos as verificações e reiniciamos & “Export”,

 

Uma vez que tudo é gerado, ya podremos ir a la parte de monitorización y comprobar que todo lo que hemos hecho funciona! Veremos todos los nuevos servicios que hemos creado que monitorizan distintas cosas. Se quisermos forçar a verificação, Nós já sabemos, seleccionamos los servicios que nos interesen y en el combo seleccionamos ‘ServicesSchedule immediate check (Forçado)’.

 

Y aquí os dejo todas las posibilidades del comando:

[Código-fonte]Usage: check_vmware_api.pl -D <data_center> | -H <host_name> [ -C <cluster_name> ] [ -N <vm_name> ]
-quer <utilizador> -p <Passe> | -f <authfile>
-l <comando> [ -s <subcommand> ] [ -T <timeshift> ] [ -eu <intervalo> ]
[ -x <black_list> ] [ -ou <additional_options> ]
[ -t <Timeout> ] [ -w <warn_range> ] [ -c <crit_range> ]
[ -V ] [ -h ]
-?, –usage
Print usage information
-h, –Ajuda
Print detailed help screen
-V, –Versão
Print version information
extra-opts=[section][@file]
Read options from an ini file.
for usage and examples.
-H, –host=<hostname>
ESX or ESXi hostname.
-C, –cluster=<clustername>
ESX or ESXi clustername.
-D, –datacenter=<DCname>
Datacenter hostname.
-N, –name=<vmname>
Virtual machine name.
-quer, –username=<nome de usuário>
Username to connect with.
-p, –password=<senha>
Password to use with the username.
-f, –authfile=<Caminho>
Authentication file with login and password. File syntax :
username=<login>
password=<senha>
-w, –warning=THRESHOLD
Warning threshold. See
for the threshold format. By default, no threshold is set.
-c, –critical=THRESHOLD
Critical threshold. See
for the threshold format. By default, no threshold is set.
-l, –command=COMMAND
Specify command type (CPU, MEM, NET, IO, VMFS, RUNTIME, …)
-s, –subcommand=SUBCOMMAND
Specify subcommand
-S, –sessionfile=SESSIONFILE
Specify a filename to store sessions for faster authentication
-x, –exclude=<black_list>
Specify black list
-ou, –options=<additional_options>
Specify additional command options (quickstats, …)
-T, –timestamp=<timeshift>
Timeshift in seconds that could fix issues with "Unknown error". Use values like 5, 10, 20, etc
-eu, –interval=<sampling period>
Sampling Period in seconds. Basic historic intervals: 300, 1800, 7200 or 86400. See config for any changes.
Supports literval values to autonegotiate interval value: r – realtime interval, h<número> – historical interval specified by position.
Default value is 20 (realtime). Since cluster does not have realtime stats interval other than 20(default realtime) is mandatory.
-M, –maxsamples=<max sample count>
Maximum number of samples to retrieve. Max sample number is ignored for historic intervals.
Default value is 1 (latest available sample).
trace=<nível>
Set verbosity level of vSphere API request/respond trace
generate_test=<file>
Generate a test case script from the executed command/subcommand and write it to <file>. If <file> is "stdout", the test case script is written to stdout instead.
-t, –timeout=INTEGER
Seconds before plugin times out (inadimplência: 30)
-v, –verbose
Show details for command-line debugging (can repeat up to 3 times)
Supported commands(^ – blank or not specified parameter, ou – Opções, T – timeshift value, b – Lista negra) :
VM specific :
* cpushows cpu info
+ usageCPU usage in percentage
+ usagemhzCPU usage in MHz
+ esperar – CPU wait time in ms
+ readyCPU ready time in ms
^ all cpu info(no thresholds)
* memshows mem info
+ usagemem usage in percentage
+ usagembmem usage in MB
+ swapswap mem usage in MB
+ swapinswapin mem usage in MB
+ swapoutswapout mem usage in MB
+ overheadadditional mem used by VM Server in MB
+ overalloverall mem used by VM Server in MB
+ activeactive mem usage in MB
+ memctlmem used by VM memory control driver(vmmemctl) that controls ballooning
^ all mem info(except overall and no thresholds)
* Rede – shows net info
+ usageoverall network usage in KBps(Kilobytes per Second)
+ receivereceive in KBps(Kilobytes per Second)
+ sendsend in KBps(Kilobytes per Second)
^ all net info(except usage and no thresholds)
* ioshows disk I/O info
+ usageoverall disk usage in MB/s
+ readread disk usage in MB/s
+ writewrite disk usage in MB/s
^ all disk io info(no thresholds)
* Runtime – shows runtime info
+ com – connection state
+ cpuallocated CPU in MHz
+ memallocated mem in MB
+ estado – virtual machine state (UP, DOWN, SUSPENDED)
+ estado – overall object status (gray/green/red/yellow)
+ consoleconnectionsconsole connections to VM
+ guestguest OS status, needs VMware Tools
+ toolsVMware Tools status
+ issuesall issues for the host
^ all runtime info(except con and no thresholds)
Host specific :
* cpushows cpu info
+ usageCPU usage in percentage
o quickstatsswitch for query either PerfCounter values or Runtime info
+ usagemhzCPU usage in MHz
o quickstatsswitch for query either PerfCounter values or Runtime info
^ all cpu info
o quickstatsswitch for query either PerfCounter values or Runtime info
* memshows mem info
+ usagemem usage in percentage
o quickstatsswitch for query either PerfCounter values or Runtime info
+ usagembmem usage in MB
o quickstatsswitch for query either PerfCounter values or Runtime info
+ swapswap mem usage in MB
o listvmturn on/off output list of swapping VM’s
+ overheadadditional mem used by VM Server in MB
+ overalloverall mem used by VM Server in MB
+ memctlmem used by VM memory control driver(vmmemctl) that controls ballooning
o listvmturn on/off output list of ballooning VM’s
^ all mem info(except overall and no thresholds)
* Rede – shows net info
+ usageoverall network usage in KBps(Kilobytes per Second)
+ receivereceive in KBps(Kilobytes per Second)
+ sendsend in KBps(Kilobytes per Second)
+ nicmakes sure all active NICs are plugged in
^ all net info(except usage and no thresholds)
* ioshows disk io info
+ abortedaborted commands count
+ resetsbus resets count
+ readread latency in ms (totalReadLatency.average)
+ writewrite latency in ms (totalWriteLatency.average)
+ kernelkernel latency in ms
+ dispositivo – device latency in ms
+ queuequeue latency in ms
^ all disk io info
* vmfsshows Datastore info
+ (Nome) – free space info for datastore with name (Nome)
o usedoutput used space instead of free
o brieflist only alerting volumes
o regexpwhether to treat name as regexp
o blacklistregexpwhether to treat blacklist as regexp
b – blacklist VMFS’s
T (valor) – timeshift to detemine if we need to refresh
^ all datastore info
o usedoutput used space instead of free
o brieflist only alerting volumes
o blacklistregexpwhether to treat blacklist as regexp
b – blacklist VMFS’s
T (valor) – timeshift to detemine if we need to refresh
* Runtime – shows runtime info
+ com – connection state
+ healthchecks cpu/storage/memory/sensor status and propagates worst state
o listitemslist all available sensors(use for listing purpose only)
o blackregexpflagwhether to treat blacklist as regexp
b – blacklist status objects
+ storagehealthstorage status check
o blackregexpflagwhether to treat blacklist as regexp
b – blacklist status objects
+ temperatura – temperature sensors
o blackregexpflagwhether to treat blacklist as regexp
b – blacklist status objects
+ sensor – threshold specified sensor
+ maintenanceshows whether host is in maintenance mode
o maintwarnsets warning state when host is in maintenance mode
o maintcritsets critical state when host is in maintenance mode
+ list(vm) – list of VMware machines and their statuses
+ estado – overall object status (gray/green/red/yellow)
+ issuesall issues for the host
b – blacklist issues
^ all runtime info(health, storagehealth, temperature and sensor are represented as one value and no thresholds)
* serviço – shows Host service info
+ (names) – check the state of one or several services specified by (names), syntax for (names):<service1>,<service2>,…,<serviceN>
^ show all services
* storageshows Host storage info
+ adapterlist bus adapters
b – blacklist adapters
+ lunlist SCSI logical units
b – blacklist LUN’s
+ Caminho – list logical unit paths
b – blacklist paths
^ show all storage info
* Tempo de atividade – shows Host uptime
o quickstatsswitch for query either PerfCounter values or Runtime info
* dispositivo – shows Host specific device info
+ cd/dvdlist vm’s with attached cd/dvd drives
o listalllist all available devices(use for listing purpose only)
DC specific :
* cpushows cpu info
+ usageCPU usage in percentage
o quickstatsswitch for query either PerfCounter values or Runtime info
+ usagemhzCPU usage in MHz
o quickstatsswitch for query either PerfCounter values or Runtime info
^ all cpu info
o quickstatsswitch for query either PerfCounter values or Runtime info
* memshows mem info
+ usagemem usage in percentage
o quickstatsswitch for query either PerfCounter values or Runtime info
+ usagembmem usage in MB
o quickstatsswitch for query either PerfCounter values or Runtime info
+ swapswap mem usage in MB
+ overheadadditional mem used by VM Server in MB
+ overalloverall mem used by VM Server in MB
+ memctlmem used by VM memory control driver(vmmemctl) that controls ballooning
^ all mem info(except overall and no thresholds)
* Rede – shows net info
+ usageoverall network usage in KBps(Kilobytes per Second)
+ receivereceive in KBps(Kilobytes per Second)
+ sendsend in KBps(Kilobytes per Second)
^ all net info(except usage and no thresholds)
* ioshows disk io info
+ abortedaborted commands count
+ resetsbus resets count
+ readread latency in ms (totalReadLatency.average)
+ writewrite latency in ms (totalWriteLatency.average)
+ kernelkernel latency in ms
+ dispositivo – device latency in ms
+ queuequeue latency in ms
^ all disk io info
* vmfsshows Datastore info
+ (Nome) – free space info for datastore with name (Nome)
o usedoutput used space instead of free
o brieflist only alerting volumes
o regexpwhether to treat name as regexp
o blacklistregexpwhether to treat blacklist as regexp
b – blacklist VMFS’s
T (valor) – timeshift to detemine if we need to refresh
^ all datastore info
o usedoutput used space instead of free
o brieflist only alerting volumes
o blacklistregexpwhether to treat blacklist as regexp
b – blacklist VMFS’s
T (valor) – timeshift to detemine if we need to refresh
* Runtime – shows runtime info
+ list(vm) – list of VMware machines and their statuses
+ listhostlist of VMware esx host servers and their statuses
+ listclusterlist of VMware clusters and their statuses
+ toolsVMware Tools status
b – blacklist VM’s
+ estado – overall object status (gray/green/red/yellow)
+ issuesall issues for the host
b – blacklist issues
^ all runtime info(except cluster and tools and no thresholds)
* recommendationsshows recommendations for cluster
+ (Nome) – recommendations for cluster with name (Nome)
^ all clusters recommendations
Cluster specific :
* cpushows cpu info
+ usageCPU usage in percentage
+ usagemhzCPU usage in MHz
^ all cpu info
* memshows mem info
+ usagemem usage in percentage
+ usagembmem usage in MB
+ swapswap mem usage in MB
o listvmturn on/off output list of swapping VM’s
+ memctlmem used by VM memory control driver(vmmemctl) that controls ballooning
o listvmturn on/off output list of ballooning VM’s
^ all mem info(plus overhead and no thresholds)
* Cluster – shows cluster services info
+ effectivecputotal available cpu resources of all hosts within cluster
+ effectivememtotal amount of machine memory of all hosts in the cluster
+ failoverVMware HA number of failures that can be tolerated
+ cpufairnessfairness of distributed cpu resource allocation
+ memfairnessfairness of distributed mem resource allocation
^ only effectivecpu and effectivemem values for cluster services
* Runtime – shows runtime info
+ list(vm) – list of VMware machines in cluster and their statuses
+ listhostlist of VMware esx host servers in cluster and their statuses
+ estado – overall cluster status (gray/green/red/yellow)
+ issuesall issues for the cluster
b – blacklist issues
^ all cluster runtime info
* vmfsshows Datastore info
+ (Nome) – free space info for datastore with name (Nome)
o usedoutput used space instead of free
o brieflist only alerting volumes
o regexpwhether to treat name as regexp
o blacklistregexpwhether to treat blacklist as regexp
b – blacklist VMFS’s
T (valor) – timeshift to detemine if we need to refresh
^ all datastore info
o usedoutput used space instead of free
o brieflist only alerting volumes
o blacklistregexpwhether to treat blacklist as regexp
b – blacklist VMFS’s
T (valor) – timeshift to detemine if we need to refresh[/Código-fonte]

Postagens recomendadas

Autor

nheobug@bujarra.com
Autor del blog Bujarra.com Cualquier necesidad que tengas, Não hesite em contactar-me, Vou tentar ajudá-lo sempre que puder, Compartilhar é viver ;) . Desfrute de documentos!!!

Nagios - Monitorando o Windows

30 de março de 2017