blob: 5065ac2bfca8dea5c6568d252ca8db4d4f244b3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// SPDX-License-Identifier: GPL-3.0-or-later
#ifndef ACLK_H
#define ACLK_H
#include "daemon/common.h"
#include "aclk_util.h"
#include "aclk_rrdhost_state.h"
// How many MQTT PUBACKs we need to get to consider connection
// stable for the purposes of TBEB (truncated binary exponential backoff)
#define ACLK_PUBACKS_CONN_STABLE 3
extern time_t aclk_block_until;
extern int disconnect_req;
void *aclk_main(void *ptr);
extern netdata_mutex_t aclk_shared_state_mutex;
#define ACLK_SHARED_STATE_LOCK netdata_mutex_lock(&aclk_shared_state_mutex)
#define ACLK_SHARED_STATE_UNLOCK netdata_mutex_unlock(&aclk_shared_state_mutex)
extern struct aclk_shared_state {
// To wait for `disconnect` message PUBACK
// when shutting down
// at the same time if > 0 we know link is
// shutting down
int mqtt_shutdown_msg_id;
int mqtt_shutdown_msg_rcvd;
} aclk_shared_state;
void aclk_host_state_update(RRDHOST *host, int cmd);
void aclk_send_node_instances(void);
void aclk_send_bin_msg(char *msg, size_t msg_len, enum aclk_topics subtopic, const char *msgname);
char *ng_aclk_state(void);
char *ng_aclk_state_json(void);
#endif /* ACLK_H */
|