diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-24 09:54:23 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-24 09:54:44 +0000 |
commit | 836b47cb7e99a977c5a23b059ca1d0b5065d310e (patch) | |
tree | 1604da8f482d02effa033c94a84be42bc0c848c3 /src/ml/ml.h | |
parent | Releasing debian version 1.44.3-2. (diff) | |
download | netdata-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.h')
-rw-r--r-- | src/ml/ml.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/ml/ml.h b/src/ml/ml.h new file mode 100644 index 000000000..5fe333bf7 --- /dev/null +++ b/src/ml/ml.h @@ -0,0 +1,55 @@ +// SPDX-License-Identifier: GPL-3.0-or-later + +#ifndef NETDATA_ML_H +#define NETDATA_ML_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include "daemon/common.h" +#include "web/api/queries/rrdr.h" +#include "database/sqlite/sqlite_db_migration.h" + +bool ml_capable(); +bool ml_enabled(RRDHOST *rh); +bool ml_streaming_enabled(); + +void ml_init(void); +void ml_fini(void); + +void ml_start_threads(void); +void ml_stop_threads(void); + +void ml_host_new(RRDHOST *rh); +void ml_host_delete(RRDHOST *rh); + +void ml_host_start(RRDHOST *RH); +void ml_host_stop(RRDHOST *RH); + +void ml_host_get_info(RRDHOST *RH, BUFFER *wb); +void ml_host_get_detection_info(RRDHOST *RH, BUFFER *wb); +void ml_host_get_models(RRDHOST *RH, BUFFER *wb); + +void ml_chart_new(RRDSET *rs); +void ml_chart_delete(RRDSET *rs); +bool ml_chart_update_begin(RRDSET *rs); +void ml_chart_update_end(RRDSET *rs); + +void ml_dimension_new(RRDDIM *rd); +void ml_dimension_delete(RRDDIM *rd); +bool ml_dimension_is_anomalous(RRDDIM *rd, time_t curr_time, double value, bool exists); + +int ml_dimension_load_models(RRDDIM *rd, sqlite3_stmt **stmt); + +void ml_update_global_statistics_charts(uint64_t models_consulted); + +bool ml_host_get_host_status(RRDHOST *rh, struct ml_metrics_statistics *mlm); +bool ml_host_running(RRDHOST *rh); +uint64_t sqlite_get_ml_space(void); + +#ifdef __cplusplus +}; +#endif + +#endif /* NETDATA_ML_H */ |