update journal sources once per minute (#16298)
Costa Tsaousis committed
Oct 29, 2023 at 10:46 UTC
2b5aadf41d4a606b530dd4726f2272a931b864c3
1 file changed
+3
collectors/systemd-journal.plugin/systemd-journal.c
+3
@@ -2822,6 +2822,9 @@ int main(int argc __maybe_unused, char **argv __maybe_unused) {
2822
if(!tty)
2823
fprintf(stdout, "\n");
2824
2825
+ if(iteration % 60 == 0)
2826
+ journal_files_registry_update();
2827
+
2828
fflush(stdout);
2829
2830
time_t now = now_monotonic_sec();