rrdfunctions-exporters.h 715 B

12345678910111213141516
  1. // SPDX-License-Identifier: GPL-3.0-or-later
  2. #ifndef NETDATA_RRDFUNCTIONS_EXPORTERS_H
  3. #define NETDATA_RRDFUNCTIONS_EXPORTERS_H
  4. #include "rrd.h"
  5. void rrd_chart_functions_expose_rrdpush(RRDSET *st, BUFFER *wb);
  6. void rrd_global_functions_expose_rrdpush(RRDHOST *host, BUFFER *wb, bool dyncfg);
  7. void chart_functions2json(RRDSET *st, BUFFER *wb);
  8. void chart_functions_to_dict(DICTIONARY *rrdset_functions_view, DICTIONARY *dst, void *value, size_t value_size);
  9. void host_functions_to_dict(RRDHOST *host, DICTIONARY *dst, void *value, size_t value_size, STRING **help, STRING **tags, HTTP_ACCESS *access, int *priority);
  10. void host_functions2json(RRDHOST *host, BUFFER *wb);
  11. #endif //NETDATA_RRDFUNCTIONS_EXPORTERS_H