graphite.h 659 B

123456789101112131415161718
  1. // SPDX-License-Identifier: GPL-3.0-or-later
  2. #ifndef NETDATA_EXPORTING_GRAPHITE_H
  3. #define NETDATA_EXPORTING_GRAPHITE_H
  4. #include "exporting/exporting_engine.h"
  5. int init_graphite_instance(struct instance *instance);
  6. void sanitize_graphite_label_value(char *dst, const char *src, size_t len);
  7. int format_host_labels_graphite_plaintext(struct instance *instance, RRDHOST *host);
  8. int format_dimension_collected_graphite_plaintext(struct instance *instance, RRDDIM *rd);
  9. int format_dimension_stored_graphite_plaintext(struct instance *instance, RRDDIM *rd);
  10. void graphite_http_prepare_header(struct instance *instance);
  11. #endif //NETDATA_EXPORTING_GRAPHITE_H