mirror of https://github.com/Icinga/icinga2.git
Merge pull request #6491 from chrostek/feature/itl-vmware-health
Feature/itl vmware health
This commit is contained in:
commit
a1f81b9f53
|
@ -4139,6 +4139,9 @@ vmware_nosession | **Optional.** No auth session -- IT SHOULD BE USED FOR
|
|||
vmware_username | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
|
||||
vmware_password | **Optional.** The username's password. No value defined as default.
|
||||
vmware_authfile | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Authentication file content:** <br> username=vmuser <br> password=p@ssw0rd
|
||||
vmware_exclude | **Optional.** Blacklist VMs name. No value defined as default.
|
||||
vmware_include | **Optional.** Whitelist VMs name. No value defined as default.
|
||||
vmware_isregexp | **Optional.** Treat blacklist and whitelist expressions as regexp.
|
||||
|
||||
|
||||
**vmware-esx-soap-host-runtime-con**
|
||||
|
|
|
@ -686,6 +686,11 @@ object CheckCommand "vmware-esx-soap-host-runtime" {
|
|||
|
||||
arguments += {
|
||||
"--select" = "runtime"
|
||||
"--exclude" = "$vmware_exclude$"
|
||||
"--include" = "$vmware_include$"
|
||||
"--isregexp" = {
|
||||
set_if = "$vmware_isregexp$"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue