summaryrefslogtreecommitdiffstats
path: root/daemon/static_threads.c
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/static_threads.c')
-rw-r--r--daemon/static_threads.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/daemon/static_threads.c b/daemon/static_threads.c
index 830b854e6..b70373d74 100644
--- a/daemon/static_threads.c
+++ b/daemon/static_threads.c
@@ -61,7 +61,7 @@ const struct netdata_static_thread static_threads_common[] = {
.config_name = "netdata monitoring",
.env_name = "NETDATA_INTERNALS_MONITORING",
.global_variable = &global_statistics_enabled,
- .enabled = 1,
+ .enabled = 0,
.thread = NULL,
.init_routine = NULL,
.start_routine = global_statistics_main
@@ -69,10 +69,10 @@ const struct netdata_static_thread static_threads_common[] = {
{
.name = "STATS_WORKERS",
.config_section = CONFIG_SECTION_PLUGINS,
- .config_name = "netdata monitoring",
+ .config_name = "netdata monitoring extended",
.env_name = "NETDATA_INTERNALS_MONITORING",
.global_variable = &global_statistics_enabled,
- .enabled = 1,
+ .enabled = 0, // this is ignored - check main() for "netdata monitoring extended"
.thread = NULL,
.init_routine = NULL,
.start_routine = global_statistics_workers_main
@@ -80,10 +80,10 @@ const struct netdata_static_thread static_threads_common[] = {
{
.name = "STATS_SQLITE3",
.config_section = CONFIG_SECTION_PLUGINS,
- .config_name = "netdata monitoring",
+ .config_name = "netdata monitoring extended",
.env_name = "NETDATA_INTERNALS_MONITORING",
.global_variable = &global_statistics_enabled,
- .enabled = 1,
+ .enabled = 0, // this is ignored - check main() for "netdata monitoring extended"
.thread = NULL,
.init_routine = NULL,
.start_routine = global_statistics_sqlite3_main