| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | #ifndef NETDATA_DEBUGFS_PLUGIN_H |
| 4 | #define NETDATA_DEBUGFS_PLUGIN_H 1 |
| 5 | |
| 6 | #include "libnetdata/libnetdata.h" |
| 7 | #include "collectors/all.h" |
| 8 | #include "database/rrd.h" |
| 9 | |
| 10 | extern netdata_mutex_t stdout_mutex; |
| 11 | |
| 12 | void libsensors_thread(void *ptr); |
| 13 | |
| 14 | int do_module_numa_extfrag(int update_every, const char *name); |
| 15 | int do_module_zswap(int update_every, const char *name); |
| 16 | int do_module_devices_powercap(int update_every, const char *name); |
| 17 | int do_module_libsensors(int update_every, const char *name); |
| 18 | int do_module_audit(int update_every, const char *name); |
| 19 | |
| 20 | void module_libsensors_cleanup(void); |
| 21 | |
| 22 | void debugfs2lower(char *name); |
| 23 | const char *debugfs_rrdset_type_name(RRDSET_TYPE chart_type); |
| 24 | const char *debugfs_rrd_algorithm_name(RRD_ALGORITHM algorithm); |
| 25 | |
| 26 | #endif // NETDATA_DEBUGFS_PLUGIN_H |