mirror of https://github.com/Icinga/icinga2.git
Fix value attributes for ceph plugin
This commit is contained in:
parent
a4ad3c364f
commit
31e72df9b0
|
@ -62,42 +62,42 @@ object CheckCommand "ceph" {
|
|||
|
||||
arguments = {
|
||||
"-e" = {
|
||||
value = "$service.vars.ceph_exec_dir$"
|
||||
value = "$ceph_exec_dir$"
|
||||
required = false
|
||||
description = "ceph executable [/usr/bin/ceph]"
|
||||
}
|
||||
"-c" = {
|
||||
value = "$service.vars.ceph_conf_file$"
|
||||
value = "$ceph_conf_file$"
|
||||
required = false
|
||||
description = "alternative ceph conf file"
|
||||
}
|
||||
"-m" = {
|
||||
value = "$service.vars.ceph_mon_address$"
|
||||
value = "$ceph_mon_address$"
|
||||
required = false
|
||||
description = "ceph monitor address[:port]"
|
||||
}
|
||||
"-i" = {
|
||||
value = "$service.vars.ceph_client_id$"
|
||||
value = "$ceph_client_id$"
|
||||
required = false
|
||||
description = "ceph client id"
|
||||
}
|
||||
"-n" = {
|
||||
value = "$service.vars.ceph_client_name$"
|
||||
value = "$ceph_client_name$"
|
||||
required = false
|
||||
description = "ceph client name"
|
||||
}
|
||||
"-k" = {
|
||||
value = "$service.vars.ceph_client_key$"
|
||||
value = "$ceph_client_key$"
|
||||
required = false
|
||||
description = "ceph client keyring file"
|
||||
}
|
||||
"-w" = {
|
||||
value = "$service.vars.ceph_whitelist$"
|
||||
value = "$ceph_whitelist$"
|
||||
required = false
|
||||
description = "whitelist regexp for ceph health warnings"
|
||||
}
|
||||
"-d" = {
|
||||
set_if = "$service.vars.ceph_details$"
|
||||
set_if = "$ceph_details$"
|
||||
description = "exec 'ceph health detail'"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue