summaryrefslogtreecommitdiffstats
path: root/src/ml/ml-dummy.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-24 09:54:23 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-24 09:54:44 +0000
commit836b47cb7e99a977c5a23b059ca1d0b5065d310e (patch)
tree1604da8f482d02effa033c94a84be42bc0c848c3 /src/ml/ml-dummy.c
parentReleasing debian version 1.44.3-2. (diff)
downloadnetdata-836b47cb7e99a977c5a23b059ca1d0b5065d310e.tar.xz
netdata-836b47cb7e99a977c5a23b059ca1d0b5065d310e.zip
Merging upstream version 1.46.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/ml/ml-dummy.c')
-rw-r--r--src/ml/ml-dummy.c121
1 files changed, 121 insertions, 0 deletions
diff --git a/src/ml/ml-dummy.c b/src/ml/ml-dummy.c
new file mode 100644
index 000000000..64a1a6b09
--- /dev/null
+++ b/src/ml/ml-dummy.c
@@ -0,0 +1,121 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+#include "ml.h"
+
+#if !defined(ENABLE_ML)
+
+bool ml_capable() {
+ return false;
+}
+
+bool ml_enabled(RRDHOST *rh) {
+ UNUSED(rh);
+ return false;
+}
+
+bool ml_streaming_enabled() {
+ return false;
+}
+
+void ml_init(void) {}
+
+void ml_fini(void) {}
+
+void ml_start_threads(void) {}
+
+void ml_stop_threads(void) {}
+
+void ml_host_new(RRDHOST *rh) {
+ UNUSED(rh);
+}
+
+void ml_host_delete(RRDHOST *rh) {
+ UNUSED(rh);
+}
+
+void ml_host_start(RRDHOST *rh) {
+ UNUSED(rh);
+}
+
+void ml_host_stop(RRDHOST *rh) {
+ UNUSED(rh);
+}
+
+void ml_host_start_training_thread(RRDHOST *rh) {
+ UNUSED(rh);
+}
+
+void ml_host_stop_training_thread(RRDHOST *rh) {
+ UNUSED(rh);
+}
+
+void ml_host_cancel_training_thread(RRDHOST *rh) {
+ UNUSED(rh);
+}
+
+void ml_host_get_info(RRDHOST *rh, BUFFER *wb) {
+ UNUSED(rh);
+ UNUSED(wb);
+}
+
+void ml_host_get_models(RRDHOST *rh, BUFFER *wb) {
+ UNUSED(rh);
+ UNUSED(wb);
+}
+
+void ml_host_get_runtime_info(RRDHOST *rh) {
+ UNUSED(rh);
+}
+
+void ml_chart_new(RRDSET *rs) {
+ UNUSED(rs);
+}
+
+void ml_chart_delete(RRDSET *rs) {
+ UNUSED(rs);
+}
+
+bool ml_chart_update_begin(RRDSET *rs) {
+ UNUSED(rs);
+ return false;
+}
+
+void ml_chart_update_end(RRDSET *rs) {
+ UNUSED(rs);
+}
+
+void ml_dimension_new(RRDDIM *rd) {
+ UNUSED(rd);
+}
+
+void ml_dimension_delete(RRDDIM *rd) {
+ UNUSED(rd);
+}
+
+bool ml_dimension_is_anomalous(RRDDIM *rd, time_t curr_time, double value, bool exists) {
+ UNUSED(rd);
+ UNUSED(curr_time);
+ UNUSED(value);
+ UNUSED(exists);
+ return false;
+}
+
+int ml_dimension_load_models(RRDDIM *rd, sqlite3_stmt **stmp __maybe_unused) {
+ UNUSED(rd);
+ return 0;
+}
+
+void ml_update_global_statistics_charts(uint64_t models_consulted) {
+ UNUSED(models_consulted);
+}
+
+bool ml_host_get_host_status(RRDHOST *rh __maybe_unused, struct ml_metrics_statistics *mlm) {
+ memset(mlm, 0, sizeof(*mlm));
+ return false;
+}
+
+bool ml_host_running(RRDHOST *rh __maybe_unused) {
+ return false;
+}
+
+#endif