summaryrefslogtreecommitdiffstats
path: root/collectors/nfacct.plugin/plugin_nfacct.h
blob: 4311ccecf7757b16cfb1677261c4b54f7135492f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// SPDX-License-Identifier: GPL-3.0-or-later

#ifndef NETDATA_NFACCT_H
#define NETDATA_NFACCT_H 1

#include "../../daemon/common.h"

#if defined(INTERNAL_PLUGIN_NFACCT)

#define NETDATA_PLUGIN_HOOK_LINUX_NFACCT \
    { \
        .name = "PLUGIN[nfacct]", \
        .config_section = CONFIG_SECTION_PLUGINS, \
        .config_name = "nfacct", \
        .enabled = 1, \
        .thread = NULL, \
        .init_routine = NULL, \
        .start_routine = nfacct_main \
    },

extern void *nfacct_main(void *ptr);

#else // !defined(INTERNAL_PLUGIN_NFACCT)

#define NETDATA_PLUGIN_HOOK_LINUX_NFACCT

#endif // defined(INTERNAL_PLUGIN_NFACCT)

#endif /* NETDATA_NFACCT_H */