summaryrefslogtreecommitdiffstats
path: root/lib/thresholds.c
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-06-28 09:53:59 +0200
committerLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-06-28 09:53:59 +0200
commit882ef5015f43856994be5a3766ca3fe2005908b0 (patch)
tree3ed241a4f9ac3d1e01acd70a5df81b62a807a034 /lib/thresholds.c
parenta746576b8cb72a3233caf5ac852b2679cc98d80c (diff)
parentf43c52194ce60b7a7fec463be0df7025705b8924 (diff)
downloadmonitoring-plugins-882ef5015f43856994be5a3766ca3fe2005908b0.tar.gz
Merge branch 'master' into refactor/check_procs
Diffstat (limited to 'lib/thresholds.c')
-rw-r--r--lib/thresholds.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/thresholds.c b/lib/thresholds.c
index ddefae37..de2b9315 100644
--- a/lib/thresholds.c
+++ b/lib/thresholds.c
@@ -51,9 +51,21 @@ mp_state_enum mp_get_pd_status(mp_perfdata perfdata) {
51 } 51 }
52 if (perfdata.warn_present) { 52 if (perfdata.warn_present) {
53 if (mp_check_range(perfdata.value, perfdata.warn)) { 53 if (mp_check_range(perfdata.value, perfdata.warn)) {
54 return STATE_CRITICAL; 54 return STATE_WARNING;
55 } 55 }
56 } 56 }
57 57
58 return STATE_OK; 58 return STATE_OK;
59} 59}
60
61mp_thresholds mp_thresholds_set_warn(mp_thresholds thlds, mp_range warn) {
62 thlds.warning = warn;
63 thlds.warning_is_set = true;
64 return thlds;
65}
66
67mp_thresholds mp_thresholds_set_crit(mp_thresholds thlds, mp_range crit) {
68 thlds.critical = crit;
69 thlds.critical_is_set = true;
70 return thlds;
71}