Merge pull request #6491 from chrostek/feature/itl-vmware-health

Feature/itl vmware health
This commit is contained in:
Michael Friedrich 2018-07-27 11:50:18 +02:00 committed by GitHub
commit a1f81b9f53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -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**

View File

@ -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$"
}
}
}