| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | #ifndef NETDATA_ML_CHART_H |
| 4 | #define NETDATA_ML_CHART_H |
| 5 | |
| 6 | #include "ml_host.h" |
| 7 | |
| 8 | struct ml_dimension_t; |
| 9 | |
| 10 | struct ml_chart_t { |
| 11 | RRDSET *rs; |
| 12 | ml_machine_learning_stats_t mls; |
| 13 | }; |
| 14 | |
| 15 | void ml_chart_update_dimension(ml_chart_t *chart, ml_dimension_t *dim, bool is_anomalous); |
| 16 | |
| 17 | #endif /* NETDATA_ML_CHART_H */ |