aboutsummaryrefslogtreecommitdiff
path: root/plugins/utils.h
diff options
context:
space:
mode:
authorGravatar Ton Voon <tonvoon@users.sourceforge.net> 2006-01-30 22:24:31 +0000
committerGravatar Ton Voon <tonvoon@users.sourceforge.net> 2006-01-30 22:24:31 +0000
commite0688a69114c95efaa0fbee8f8e91f6dcc21a1ee (patch)
treef3f3c0a2ab5a142499e650cc4cc56123649b998f /plugins/utils.h
parent795100ae5124915bb647a304d5dfe2ada2f44ab0 (diff)
downloadmonitoring-plugins-e0688a69114c95efaa0fbee8f8e91f6dcc21a1ee.tar.gz
Clearly defined thresholds & ranges in docs. Added get_status routine. Added
set_thresholds routine. Tests enhanced to check new routines git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1304 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/utils.h')
-rw-r--r--plugins/utils.h17
1 files changed, 13 insertions, 4 deletions
diff --git a/plugins/utils.h b/plugins/utils.h
index f47d0533..ffcb39da 100644
--- a/plugins/utils.h
+++ b/plugins/utils.h
@@ -61,15 +61,24 @@ struct timeval {
#define OUTSIDE 0
#define INSIDE 1
-typedef struct threshold_struct {
+typedef struct range_struct {
double start;
int start_infinity; /* FALSE (default) or TRUE */
double end;
int end_infinity;
int alert_on; /* OUTSIDE (default) or INSIDE */
- } threshold;
-
-threshold *parse_threshold (char *);
+ } range;
+
+typedef struct thresholds_struct {
+ range *warning;
+ range *critical;
+ } thresholds;
+
+range *parse_range_string (char *);
+int _set_thresholds(thresholds **, char *, char *);
+void set_thresholds(thresholds **, char *, char *);
+int check_range(double, range *);
+int get_status(double, thresholds *);
#ifndef HAVE_GETTIMEOFDAY
int gettimeofday(struct timeval *, struct timezone *);