@cryptotaxi247 / netdata-1 / commits / f38520b42

Enable streaming of anomaly_detection.* charts (#12606)

vkalintiris committed Apr 5, 2022 at 11:03 UTC f38520b428ae367cdd52f5e443121d2c70f4ffee
1 file changed +1 -1
ml/Config.cc
+1 -1
@@ -134,5 +134,5 @@ void Config::readMLConfig(void) {
134 Cfg.ChartsToSkip += config_get(ConfigSectionML, "charts to skip from training", "netdata.*");
135 Cfg.SP_ChartsToSkip = simple_pattern_create(ChartsToSkip.c_str(), NULL, SIMPLE_PATTERN_EXACT);
136
137 - Cfg.StreamADCharts = config_get_boolean(ConfigSectionML, "stream anomaly detection charts", false);
137 + Cfg.StreamADCharts = config_get_boolean(ConfigSectionML, "stream anomaly detection charts", true);
138 }