| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | #ifndef NETDATA_PULSE_ARAL_H |
| 4 | #define NETDATA_PULSE_ARAL_H |
| 5 | |
| 6 | #include "daemon/common.h" |
| 7 | |
| 8 | void pulse_aral_register_statistics(struct aral_statistics *stats, const char *name); |
| 9 | void pulse_aral_unregister_statistics(struct aral_statistics *stats); |
| 10 | |
| 11 | void pulse_aral_register(ARAL *ar, const char *name); |
| 12 | void pulse_aral_unregister(ARAL *ar); |
| 13 | |
| 14 | #if defined(PULSE_INTERNALS) |
| 15 | void pulse_aral_init(void); |
| 16 | void pulse_aral_do(bool extended); |
| 17 | #endif |
| 18 | |
| 19 | #endif //NETDATA_PULSE_ARAL_H |