rrdfunctions-exporters.h 743 B

1234567891011121314151617
  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,
  10. HTTP_ACCESS *access, int *priority);
  11. void host_functions2json(RRDHOST *host, BUFFER *wb);
  12. #endif //NETDATA_RRDFUNCTIONS_EXPORTERS_H