diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-11 16:18:03 +0100 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-11 16:18:03 +0100 |
commit | b16360eede8d370698ba8836808a3b1dbd805edf (patch) | |
tree | 18e3561bb6d38616945adf8e5ddf85357d746cd0 /plugins/check_nagios.d/config.h | |
parent | bc003d5e2ea837f7c49ce17d3be62b6a3ef24f85 (diff) | |
download | monitoring-plugins-b16360eede8d370698ba8836808a3b1dbd805edf.tar.gz |
Refactor check_nagios
Diffstat (limited to 'plugins/check_nagios.d/config.h')
-rw-r--r-- | plugins/check_nagios.d/config.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/check_nagios.d/config.h b/plugins/check_nagios.d/config.h new file mode 100644 index 00000000..efe139f9 --- /dev/null +++ b/plugins/check_nagios.d/config.h | |||
@@ -0,0 +1,19 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include "../../config.h" | ||
4 | #include <stddef.h> | ||
5 | |||
6 | typedef struct { | ||
7 | char *status_log; | ||
8 | char *process_string; | ||
9 | int expire_minutes; | ||
10 | } check_nagios_config; | ||
11 | |||
12 | check_nagios_config check_nagios_config_init() { | ||
13 | check_nagios_config tmp = { | ||
14 | .status_log = NULL, | ||
15 | .process_string = NULL, | ||
16 | .expire_minutes = 0, | ||
17 | }; | ||
18 | return tmp; | ||
19 | } | ||