summaryrefslogtreecommitdiffstats
path: root/plugins/check_nagios.d/config.h
blob: efe139f953c0dcfc12d0b334b008b1096917953f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include "../../config.h"
#include <stddef.h>

typedef struct {
	char *status_log;
	char *process_string;
	int expire_minutes;
} check_nagios_config;

check_nagios_config check_nagios_config_init() {
	check_nagios_config tmp = {
		.status_log = NULL,
		.process_string = NULL,
		.expire_minutes = 0,
	};
	return tmp;
}