diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-08-11 21:54:05 +0200 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-08-11 21:54:05 +0200 |
commit | 7382fa90f84d38cd2ae08c880e9ed6a4ad644d35 (patch) | |
tree | e367f424cfb94bd6730e196916a96a9725e61c27 /plugins/check_load.d | |
parent | fb39f96ac6f72bb56d17f3e8694134dfea9186e9 (diff) | |
parent | 1dfb5a0c10881b43cb60cf93bab63648c61201b5 (diff) | |
download | monitoring-plugins-7382fa90f84d38cd2ae08c880e9ed6a4ad644d35.tar.gz |
Merge branch 'master' into refactor/check_users
Diffstat (limited to 'plugins/check_load.d')
-rw-r--r-- | plugins/check_load.d/config.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/plugins/check_load.d/config.h b/plugins/check_load.d/config.h new file mode 100644 index 00000000..fd735455 --- /dev/null +++ b/plugins/check_load.d/config.h | |||
@@ -0,0 +1,30 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include "output.h" | ||
4 | #include "thresholds.h" | ||
5 | typedef struct { | ||
6 | mp_thresholds th_load[3]; | ||
7 | |||
8 | bool take_into_account_cpus; | ||
9 | unsigned long n_procs_to_show; | ||
10 | |||
11 | mp_output_format output_format; | ||
12 | bool output_format_set; | ||
13 | } check_load_config; | ||
14 | |||
15 | check_load_config check_load_config_init() { | ||
16 | check_load_config tmp = { | ||
17 | .th_load = | ||
18 | { | ||
19 | mp_thresholds_init(), | ||
20 | mp_thresholds_init(), | ||
21 | mp_thresholds_init(), | ||
22 | }, | ||
23 | |||
24 | .take_into_account_cpus = false, | ||
25 | .n_procs_to_show = 0, | ||
26 | |||
27 | .output_format_set = false, | ||
28 | }; | ||
29 | return tmp; | ||
30 | } | ||