diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-04-14 18:12:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-04-14 18:12:14 +0000 |
commit | bb50acdcb8073654ea667b8c0272e335bd43f844 (patch) | |
tree | 1e00c8a29871426f8182658928dcb62e42d57ce8 /daemon/static_threads.c | |
parent | Releasing debian version 1.33.1-1. (diff) | |
download | netdata-bb50acdcb8073654ea667b8c0272e335bd43f844.tar.xz netdata-bb50acdcb8073654ea667b8c0272e335bd43f844.zip |
Merging upstream version 1.34.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'daemon/static_threads.c')
-rw-r--r-- | daemon/static_threads.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/daemon/static_threads.c b/daemon/static_threads.c index 534b3c3d..c07473bd 100644 --- a/daemon/static_threads.c +++ b/daemon/static_threads.c @@ -11,9 +11,19 @@ extern void *health_main(void *ptr); extern void *pluginsd_main(void *ptr); extern void *service_main(void *ptr); extern void *statsd_main(void *ptr); +extern void *timex_main(void *ptr); const struct netdata_static_thread static_threads_common[] = { { + .name = "PLUGIN[timex]", + .config_section = CONFIG_SECTION_PLUGINS, + .config_name = "timex", + .enabled = 1, + .thread = NULL, + .init_routine = NULL, + .start_routine = timex_main + }, + { .name = "PLUGIN[check]", .config_section = CONFIG_SECTION_PLUGINS, .config_name = "checks", @@ -86,15 +96,6 @@ const struct netdata_static_thread static_threads_common[] = { .start_routine = statsd_main }, { - .name = "BACKENDS", - .config_section = NULL, - .config_name = NULL, - .enabled = 1, - .thread = NULL, - .init_routine = NULL, - .start_routine = backends_main - }, - { .name = "EXPORTING", .config_section = NULL, .config_name = NULL, |