diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-11 16:02:24 +0100 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-11 16:02:24 +0100 |
commit | 69c61625e4f8977cb06a2514a26fc5805f29c531 (patch) | |
tree | ad48fb7bc725c2d50aface6454c60a4c52a8a1e0 /plugins/check_mrtgraf.d | |
parent | f22756ba44fd258f486c88fa32dd0bcc954bf09d (diff) | |
download | monitoring-plugins-69c61625e4f8977cb06a2514a26fc5805f29c531.tar.gz |
typo: mrtgraf -> mrtgtraf
Diffstat (limited to 'plugins/check_mrtgraf.d')
-rw-r--r-- | plugins/check_mrtgraf.d/config.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/plugins/check_mrtgraf.d/config.h b/plugins/check_mrtgraf.d/config.h deleted file mode 100644 index 6d949b50..00000000 --- a/plugins/check_mrtgraf.d/config.h +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
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_mrtgraf_config; | ||
17 | |||
18 | check_mrtgraf_config check_mrtgraf_config_init() { | ||
19 | check_mrtgraf_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 | } | ||