master
h 21 lines 627 Bytes
Raw
1 // SPDX-License-Identifier: GPL-3.0-or-later
2
3 #ifndef NETDATA_PULSE_HTTP_API_H
4 #define NETDATA_PULSE_HTTP_API_H
5
6 #include "daemon/common.h"
7
8 void pulse_web_client_connected(void);
9 void pulse_web_client_disconnected(void);
10
11 void pulse_web_request_completed(uint64_t dt,
12 uint64_t bytes_received,
13 uint64_t bytes_sent,
14 uint64_t content_size,
15 uint64_t compressed_content_size);
16
17 #if defined(PULSE_INTERNALS)
18 void pulse_web_do(bool extended);
19 #endif
20
21 #endif //NETDATA_PULSE_HTTP_API_H