summaryrefslogtreecommitdiffstats
path: root/ml/ml-dummy.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-07-20 04:50:01 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-07-20 04:50:01 +0000
commitcd4377fab21e0f500bef7f06543fa848a039c1e0 (patch)
treeba00a55e430c052d6bed0b61c0f8bbe8ebedd313 /ml/ml-dummy.c
parentReleasing debian version 1.40.1-1. (diff)
downloadnetdata-cd4377fab21e0f500bef7f06543fa848a039c1e0.tar.xz
netdata-cd4377fab21e0f500bef7f06543fa848a039c1e0.zip
Merging upstream version 1.41.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ml/ml-dummy.c')
-rw-r--r--ml/ml-dummy.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/ml/ml-dummy.c b/ml/ml-dummy.c
index 708ab68ea..2ad6cc726 100644
--- a/ml/ml-dummy.c
+++ b/ml/ml-dummy.c
@@ -33,6 +33,14 @@ 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);
}
@@ -101,4 +109,13 @@ void ml_update_global_statistics_charts(uint64_t models_consulted) {
UNUSED(models_consulted);
}
+bool ml_host_get_host_status(RRDHOST *rh, struct ml_metrics_statistics *mlm) {
+ memset(mlm, 0, sizeof(*mlm));
+ return false;
+}
+
+bool ml_host_running(RRDHOST *rh) {
+ return false;
+}
+
#endif