mirror of https://github.com/Icinga/icinga2.git
Add report mode to mssql_health
This commit is contained in:
parent
35f6f60390
commit
6bf81eb979
|
@ -2051,6 +2051,7 @@ mssql_health_commit | **Optional.** Set this to true to turn on aut
|
|||
mssql_health_notemp | **Optional.** Set this to true to ignore temporary databases/tablespaces. Defaults to false.
|
||||
mssql_health_nooffline | **Optional.** Set this to true to ignore offline databases. Defaults to false.
|
||||
mssql_health_lookback | **Optional.** The amount of time you want to look back when calculating average rates.
|
||||
mssql_health_report | **Optional.** Report can be used to output only the bad news. Possible values are "short", "long", "html". Defaults to `short`.
|
||||
|
||||
#### <a id="plugin-contrib-command-mysql_health"></a> mysql_health
|
||||
|
||||
|
|
|
@ -97,6 +97,10 @@ object CheckCommand "mssql_health" {
|
|||
value = "$mssql_health_lookback$"
|
||||
description = "The amount of time you want to look back when calculating average rates"
|
||||
}
|
||||
"--report" = {
|
||||
value = "$mssql_health_report$"
|
||||
description = "Report can be used to output only the bad news (short,long,html)"
|
||||
}
|
||||
}
|
||||
|
||||
vars.mssql_health_regexp = false
|
||||
|
@ -104,6 +108,7 @@ object CheckCommand "mssql_health" {
|
|||
vars.mssql_health_commit = false
|
||||
vars.mssql_health_notemp = false
|
||||
vars.mssql_health_nooffline = false
|
||||
vars.mssql_health_report = "short"
|
||||
}
|
||||
|
||||
object CheckCommand "mysql_health" {
|
||||
|
|
Loading…
Reference in New Issue