diff options
Diffstat (limited to 'lib/thresholds.c')
-rw-r--r-- | lib/thresholds.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/thresholds.c b/lib/thresholds.c index 171f5093..de2b9315 100644 --- a/lib/thresholds.c +++ b/lib/thresholds.c | |||
@@ -57,3 +57,15 @@ mp_state_enum mp_get_pd_status(mp_perfdata perfdata) { | |||
57 | 57 | ||
58 | return STATE_OK; | 58 | return STATE_OK; |
59 | } | 59 | } |
60 | |||
61 | mp_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 | |||
67 | mp_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 | } | ||