| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | #ifndef NETDATA_EXPORTING_PUBSUB_H |
| 4 | #define NETDATA_EXPORTING_PUBSUB_H |
| 5 | |
| 6 | #include "exporting/exporting_engine.h" |
| 7 | #include "exporting/json/json.h" |
| 8 | #include "pubsub_publish.h" |
| 9 | |
| 10 | int init_pubsub_instance(struct instance *instance); |
| 11 | void clean_pubsub_instance(struct instance *instance); |
| 12 | void *pubsub_connector_worker(void *instance_p); |
| 13 | |
| 14 | #endif //NETDATA_EXPORTING_PUBSUB_H |