diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-13 00:48:00 +0100 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-13 00:48:00 +0100 |
commit | 54a099ed6d4ae57835095083aa825462eb03f369 (patch) | |
tree | cf7af5c49f0c8ebc5574b0efc1af3871f1717357 /plugins/check_mrtgtraf.d/config.h | |
parent | 89df16e7503539c2b0da7e95375b470559bb94ec (diff) | |
parent | 02acc76edc5c646af90a6168df61c711aa3d11d6 (diff) | |
download | monitoring-plugins-54a099ed6d4ae57835095083aa825462eb03f369.tar.gz |
Merge branch 'master' into refactor/check_tcp
Diffstat (limited to 'plugins/check_mrtgtraf.d/config.h')
-rw-r--r-- | plugins/check_mrtgtraf.d/config.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/plugins/check_mrtgtraf.d/config.h b/plugins/check_mrtgtraf.d/config.h new file mode 100644 index 00000000..94929ff7 --- /dev/null +++ b/plugins/check_mrtgtraf.d/config.h | |||
@@ -0,0 +1,30 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include "../../config.h" | ||
4 | #include <stddef.h> | ||
5 | #include <stdlib.h> | ||
6 | |||
7 | typedef struct { | ||
8 | char *log_file; | ||
9 | int expire_minutes; | ||
10 | bool use_average; | ||
11 | unsigned long incoming_warning_threshold; | ||
12 | unsigned long incoming_critical_threshold; | ||
13 | unsigned long outgoing_warning_threshold; | ||
14 | unsigned long outgoing_critical_threshold; | ||
15 | |||
16 | } check_mrtgtraf_config; | ||
17 | |||
18 | check_mrtgtraf_config check_mrtgtraf_config_init() { | ||
19 | check_mrtgtraf_config tmp = { | ||
20 | .log_file = NULL, | ||
21 | .expire_minutes = -1, | ||
22 | .use_average = true, | ||
23 | |||
24 | .incoming_warning_threshold = 0, | ||
25 | .incoming_critical_threshold = 0, | ||
26 | .outgoing_warning_threshold = 0, | ||
27 | .outgoing_critical_threshold = 0, | ||
28 | }; | ||
29 | return tmp; | ||
30 | } | ||