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.c24
1 files changed, 10 insertions, 14 deletions
diff --git a/ml/ml-dummy.c b/ml/ml-dummy.c
index fad480f4b8..6c0dce6011 100644
--- a/ml/ml-dummy.c
+++ b/ml/ml-dummy.c
@@ -24,6 +24,16 @@ char *ml_get_host_info(RRDHOST *RH) {
return NULL;
}
+char *ml_get_host_runtime_info(RRDHOST *RH) {
+ (void) RH;
+ return NULL;
+}
+
+char *ml_get_host_models(RRDHOST *RH) {
+ (void) RH;
+ return NULL;
+}
+
void ml_new_dimension(RRDDIM *RD) { (void) RD; }
void ml_delete_dimension(RRDDIM *RD) { (void) RD; }
@@ -33,20 +43,6 @@ bool ml_is_anomalous(RRDDIM *RD, double Value, bool Exists) {
return false;
}
-char *ml_get_anomaly_events(RRDHOST *RH, const char *AnomalyDetectorName,
- int AnomalyDetectorVersion, time_t After, time_t Before) {
- (void) RH; (void) AnomalyDetectorName;
- (void) AnomalyDetectorVersion; (void) After; (void) Before;
- return NULL;
-}
-
-char *ml_get_anomaly_event_info(RRDHOST *RH, const char *AnomalyDetectorName,
- int AnomalyDetectorVersion, time_t After, time_t Before) {
- (void) RH; (void) AnomalyDetectorName;
- (void) AnomalyDetectorVersion; (void) After; (void) Before;
- return NULL;
-}
-
void ml_process_rrdr(RRDR *R, int MaxAnomalyRates) {
(void) R;
(void) MaxAnomalyRates;