Merge pull request #5372 from ruzickap/fix/itl_check_command_description

Update ITL CheckCommand description attribute, part 2
This commit is contained in:
Michael Friedrich 2017-06-21 12:20:36 +02:00 committed by GitHub
commit 178e5ccfa6
2 changed files with 67 additions and 56 deletions

View File

@ -25,8 +25,14 @@ object CheckCommand "nscp-local" {
command = [ NscpPath + "\\nscp.exe", "client" ] command = [ NscpPath + "\\nscp.exe", "client" ]
arguments = { arguments = {
"--log" = "$nscp_log_level$" "--log" = {
"--load-all" = { set_if ="$nscp_load_all$" } value = "$nscp_log_level$"
description = "The log level to use"
}
"--load-all" = {
set_if ="$nscp_load_all$"
description = "Load all plugins (currently only used with generate)"
}
"--module" = { "--module" = {
value = "$nscp_modules$" value = "$nscp_modules$"
description = "Specify which NSClient++ modules are required. 'nscp client' just needs 'CheckSystem' by default." description = "Specify which NSClient++ modules are required. 'nscp client' just needs 'CheckSystem' by default."
@ -34,19 +40,22 @@ object CheckCommand "nscp-local" {
} }
"-q" = { "-q" = {
value = "$nscp_query$" value = "$nscp_query$"
description = "Run a query with a given name"
required = true required = true
} }
"-b" = { "-b" = {
set_if = "$nscp_boot$" set_if = "$nscp_boot$"
description = "Boot the client before executing command (similar as running the command from test mode)"
} }
"-a" = { "-a" = {
value = "$nscp_arguments$" value = "$nscp_arguments$"
repeat_key = true repeat_key = true
description = "List of arguments (arguments gets -- prefixed automatically (--argument foo=bar is the same as setting '--foo bar')"
} }
"--show-all" = { "--show-all" = {
set_if = "$nscp_showall$" set_if = "$nscp_showall$"
description = ""
} }
} }
vars.nscp_log_level = "critical" vars.nscp_log_level = "critical"
@ -63,6 +72,7 @@ object CheckCommand "nscp-local-cpu" {
"--time" = { "--time" = {
value = "$nscp_cpu_time$" value = "$nscp_cpu_time$"
repeat_key = true repeat_key = true
description = "The time to check"
} }
"--warning" = { "--warning" = {
value = "load>$nscp_cpu_warning$" value = "load>$nscp_cpu_warning$"
@ -91,9 +101,11 @@ object CheckCommand "nscp-local-memory" {
arguments += { arguments += {
"--type=committed" = { "--type=committed" = {
set_if = "$nscp_memory_committed$" set_if = "$nscp_memory_committed$"
description = "Total memory (RAM+PAGE)"
} }
"--type=physical" = { "--type=physical" = {
set_if = "$nscp_memory_physical$" set_if = "$nscp_memory_physical$"
description = "Physical memory (RAM)"
} }
"--warning" = { "--warning" = {
value = "$nscp_memory_op$ $nscp_memory_warning$" value = "$nscp_memory_op$ $nscp_memory_warning$"

View File

@ -561,4 +561,3 @@ object CheckCommand "ssl_cert" {
vars.ssl_cert_address = "$check_address$" vars.ssl_cert_address = "$check_address$"
vars.ssl_cert_port = 443 vars.ssl_cert_port = 443
} }