mirror of https://github.com/Icinga/icinga2.git
Indentation: space to tab
This commit is contained in:
parent
4afbf2f987
commit
4944800d09
|
@ -104,33 +104,33 @@ object CheckCommand "ceph" {
|
|||
}
|
||||
|
||||
object CheckCommand "btrfs" {
|
||||
import "plugin-check-command"
|
||||
command = [ "sudo", PluginDir + "/check_btrfs" ]
|
||||
import "plugin-check-command"
|
||||
command = [ "sudo", PluginDir + "/check_btrfs" ]
|
||||
|
||||
arguments = {
|
||||
"--allocated-warning-gib" = {
|
||||
value = "$btrfs_awg$"
|
||||
description = "Exit with WARNING status if less than the specified amount of disk space (in GiB) is unallocated"
|
||||
}
|
||||
"--allocated-critical-gib" = {
|
||||
value = "$btrfs_acg$"
|
||||
description = "Exit with CRITICAL status if less than the specified amount of disk space (in GiB) is unallocated"
|
||||
}
|
||||
"--allocated-warning-percent" = {
|
||||
value = "$btrfs_awp$"
|
||||
description = "Exit with WARNING status if more than the specified percent of disk space is allocated"
|
||||
}
|
||||
"--allocated-critical-percent" = {
|
||||
value = "$btrfs_acp$"
|
||||
description = "Exit with CRITICAL status if more than the specified percent of disk space is allocated"
|
||||
}
|
||||
"--mountpoint" = {
|
||||
value = "$btrfs_mountpoint$"
|
||||
description = "Path to the BTRFS mountpoint"
|
||||
required = true
|
||||
}
|
||||
}
|
||||
vars.btrfs_awp = 80
|
||||
vars.btrfs_acp = 90
|
||||
arguments = {
|
||||
"--allocated-warning-gib" = {
|
||||
value = "$btrfs_awg$"
|
||||
description = "Exit with WARNING status if less than the specified amount of disk space (in GiB) is unallocated"
|
||||
}
|
||||
"--allocated-critical-gib" = {
|
||||
value = "$btrfs_acg$"
|
||||
description = "Exit with CRITICAL status if less than the specified amount of disk space (in GiB) is unallocated"
|
||||
}
|
||||
"--allocated-warning-percent" = {
|
||||
value = "$btrfs_awp$"
|
||||
description = "Exit with WARNING status if more than the specified percent of disk space is allocated"
|
||||
}
|
||||
"--allocated-critical-percent" = {
|
||||
value = "$btrfs_acp$"
|
||||
description = "Exit with CRITICAL status if more than the specified percent of disk space is allocated"
|
||||
}
|
||||
"--mountpoint" = {
|
||||
value = "$btrfs_mountpoint$"
|
||||
description = "Path to the BTRFS mountpoint"
|
||||
required = true
|
||||
}
|
||||
}
|
||||
vars.btrfs_awp = 80
|
||||
vars.btrfs_acp = 90
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue