summaryrefslogtreecommitdiffstats
path: root/ml/ml-dummy.c
diff options
context:
space:
mode:
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