debugfs_plugin.h 518 B

12345678910111213141516
  1. // SPDX-License-Identifier: GPL-3.0-or-later
  2. #ifndef NETDATA_DEBUGFS_PLUGIN_H
  3. #define NETDATA_DEBUGFS_PLUGIN_H 1
  4. #include "libnetdata/libnetdata.h"
  5. #include "collectors/all.h"
  6. #include "database/rrd.h"
  7. int do_debugfs_extfrag(int update_every, const char *name);
  8. int do_debugfs_zswap(int update_every, const char *name);
  9. void debugfs2lower(char *name);
  10. const char *debugfs_rrdset_type_name(RRDSET_TYPE chart_type);
  11. const char *debugfs_rrd_algorithm_name(RRD_ALGORITHM algorithm);
  12. #endif // NETDATA_DEBUGFS_PLUGIN_H