diff --git a/cmd/filesystem.go b/cmd/filesystem.go index 43a6298..7ff0259 100644 --- a/cmd/filesystem.go +++ b/cmd/filesystem.go @@ -564,7 +564,7 @@ func init() { IsSet: true, Th: check.Threshold{ Lower: 2, - Upper: 100, + Upper: check.PosInf, }, }, }, @@ -576,7 +576,7 @@ func init() { IsSet: true, Th: check.Threshold{ Lower: 5, - Upper: 100, + Upper: check.PosInf, }, }, }, diff --git a/cmd/memory.go b/cmd/memory.go index 04fb251..5f0846d 100644 --- a/cmd/memory.go +++ b/cmd/memory.go @@ -328,7 +328,7 @@ func init() { IsSet: true, Th: check.Threshold{ Lower: 15, - Upper: 100, + Upper: check.PosInf, }, }, }, @@ -340,7 +340,7 @@ func init() { IsSet: true, Th: check.Threshold{ Lower: 5, - Upper: 100, + Upper: check.PosInf, }, }, },