summaryrefslogtreecommitdiffstats
path: root/collectors/idlejitter.plugin/plugin_idlejitter.h
blob: 62fabea1682a14747682420a8bae72bd4221c3e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// SPDX-License-Identifier: GPL-3.0-or-later

#ifndef NETDATA_PLUGIN_IDLEJITTER_H
#define NETDATA_PLUGIN_IDLEJITTER_H 1

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

#define NETDATA_PLUGIN_HOOK_IDLEJITTER \
    { \
        .name = "PLUGIN[idlejitter]", \
        .config_section = CONFIG_SECTION_PLUGINS, \
        .config_name = "idlejitter", \
        .enabled = 1, \
        .thread = NULL, \
        .init_routine = NULL, \
        .start_routine = cpuidlejitter_main \
    },

extern void *cpuidlejitter_main(void *ptr);

#endif /* NETDATA_PLUGIN_IDLEJITTER_H */