progress.h 958 B

12345678910111213141516171819
  1. // SPDX-License-Identifier: GPL-3.0-or-later
  2. #ifndef NETDATA_QUERY_PROGRESS_H
  3. #define NETDATA_QUERY_PROGRESS_H 1
  4. #include "../libnetdata.h"
  5. void query_progress_start_or_update(uuid_t *transaction, usec_t started_ut, HTTP_REQUEST_MODE mode, HTTP_ACL acl, const char *query, BUFFER *payload, const char *client);
  6. void query_progress_done_step(uuid_t *transaction, size_t done);
  7. void query_progress_set_finish_line(uuid_t *transaction, size_t all);
  8. void query_progress_finished(uuid_t *transaction, usec_t finished_ut, short int response_code, usec_t duration_ut, size_t response_size, size_t sent_size);
  9. void query_progress_functions_update(uuid_t *transaction, size_t done, size_t all);
  10. int web_api_v2_report_progress(uuid_t *transaction, BUFFER *wb);
  11. #define RRDFUNCTIONS_PROGRESS_HELP "View the progress on the running and latest Netdata API Requests"
  12. int progress_function_result(BUFFER *wb, const char *hostname);
  13. #endif // NETDATA_QUERY_PROGRESS_H