blob: 026985c8d213d63de2ac2dc9ab5a908eb3f73ee8 (
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
41
42
43
44
|
// SPDX-License-Identifier: GPL-3.0-or-later
#ifndef NETDATA_ACLK_QUERY_H
#define NETDATA_ACLK_QUERY_H
#include "libnetdata/libnetdata.h"
#include "web/server/web_client.h"
#define ACLK_STABLE_TIMEOUT 3 // Minimum delay to mark AGENT as stable
#define MAX_GETRUSAGE_CALLS_PER_TICK 5 // Maximum number of times getrusage can be called per tick, per thread.
extern pthread_cond_t query_cond_wait;
extern pthread_mutex_t query_lock_wait;
extern uint8_t *getrusage_called_this_tick;
#define QUERY_THREAD_WAKEUP pthread_cond_signal(&query_cond_wait)
#define QUERY_THREAD_WAKEUP_ALL pthread_cond_broadcast(&query_cond_wait)
extern volatile int aclk_connected;
struct aclk_query_thread {
netdata_thread_t thread;
int idx;
};
struct aclk_query_threads {
struct aclk_query_thread *thread_list;
int count;
};
struct aclk_cloud_req_v2 {
char *data;
RRDHOST *host;
char *query_endpoint;
};
void *aclk_query_main_thread(void *ptr);
int aclk_queue_query(char *token, void *data, char *msg_type, char *query, int run_after, int internal, ACLK_CMD cmd);
void aclk_query_threads_start(struct aclk_query_threads *query_threads);
void aclk_query_threads_cleanup(struct aclk_query_threads *query_threads);
unsigned int aclk_query_size();
#endif //NETDATA_AGENT_CLOUD_LINK_H
|