summaryrefslogtreecommitdiffstats
path: root/streaming/replication.h
diff options
context:
space:
mode:
authorCosta Tsaousis <costa@netdata.cloud>2022-11-25 20:37:15 +0200
committerGitHub <noreply@github.com>2022-11-25 20:37:15 +0200
commit2e874e79163771856e4e756b176b729f7d8b0f0f (patch)
treeeeb1ea10af039001e3290090d5a2d365f99f63c7 /streaming/replication.h
parent870acd61123ece7c074242e1b02d47cb7c667e38 (diff)
replication fixes #6 (#14046)
use the faster monotonic clock in workers and replication; avoid unecessary statistics function on every request on replication - gather them all together once every second; check the chart flags on all mirrored hosts, not only the ones that have a sender; cleanup and unify replication logs; added child world time to REND; fix first BEGIN been transmitted when replication starts;
Diffstat (limited to 'streaming/replication.h')
-rw-r--r--streaming/replication.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/streaming/replication.h b/streaming/replication.h
index dde3cc1a96..9bd2c87da1 100644
--- a/streaming/replication.h
+++ b/streaming/replication.h
@@ -11,7 +11,7 @@ typedef int (*send_command)(const char *txt, void *data);
bool replicate_chart_request(send_command callback, void *callback_data,
RRDHOST *rh, RRDSET *rs,
- time_t first_entry_child, time_t last_entry_child,
+ time_t first_entry_child, time_t last_entry_child, time_t child_world_time,
time_t response_first_start_time, time_t response_last_end_time);
void replication_init_sender(struct sender_state *sender);