| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | #ifndef NETDATA_PLUGINSD_REPLICATION_H |
| 4 | #define NETDATA_PLUGINSD_REPLICATION_H |
| 5 | |
| 6 | #include "pluginsd_internals.h" |
| 7 | |
| 8 | PARSER_RC pluginsd_replay_begin(char **words, size_t num_words, PARSER *parser); |
| 9 | PARSER_RC pluginsd_replay_set(char **words, size_t num_words, PARSER *parser); |
| 10 | PARSER_RC pluginsd_replay_rrddim_collection_state(char **words, size_t num_words, PARSER *parser); |
| 11 | PARSER_RC pluginsd_replay_rrdset_collection_state(char **words, size_t num_words, PARSER *parser); |
| 12 | PARSER_RC pluginsd_replay_end(char **words, size_t num_words, PARSER *parser); |
| 13 | PARSER_RC pluginsd_chart_definition_end(char **words, size_t num_words, PARSER *parser); |
| 14 | |
| 15 | #endif //NETDATA_PLUGINSD_REPLICATION_H |