summaryrefslogtreecommitdiffstats
path: root/plugins/check_cluster.d
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-03-11 10:43:31 +0100
committerLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-03-11 10:43:31 +0100
commit7acfac740975f633ae83883535590dffb2650c88 (patch)
tree3d05b28f6d900ebe116f0a3b5d7e8afdea230e65 /plugins/check_cluster.d
parentcf48162487d6f042af084ee436acdd7a2db0cbfd (diff)
parentdf0d6ee5e0c870d50934eb095a88587547697953 (diff)
downloadmonitoring-plugins-7acfac740975f633ae83883535590dffb2650c88.tar.gz
Merge branch 'master' into refactor/check_fping
Diffstat (limited to 'plugins/check_cluster.d')
-rw-r--r--plugins/check_cluster.d/config.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/plugins/check_cluster.d/config.h b/plugins/check_cluster.d/config.h
new file mode 100644
index 00000000..fc386415
--- /dev/null
+++ b/plugins/check_cluster.d/config.h
@@ -0,0 +1,27 @@
1#pragma once
2
3#include "../../config.h"
4#include "../../lib/thresholds.h"
5#include <stddef.h>
6
7enum {
8 CHECK_SERVICES = 1,
9 CHECK_HOSTS = 2
10};
11
12typedef struct {
13 char *data_vals;
14 thresholds *thresholds;
15 int check_type;
16 char *label;
17} check_cluster_config;
18
19check_cluster_config check_cluster_config_init() {
20 check_cluster_config tmp = {
21 .data_vals = NULL,
22 .thresholds = NULL,
23 .check_type = CHECK_SERVICES,
24 .label = NULL,
25 };
26 return tmp;
27}