Exit slabinfo.plugin on EPIPE (#18448)
Tadeusz Dudkiewicz committed
Aug 31, 2024 at 00:42 UTC
ca94a72d584de38291b64f882c191d700c363beb
1 file changed
+6
src/collectors/slabinfo.plugin/slabinfo.c
+6
@@ -318,6 +318,12 @@ unsigned int do_slab_stats(int update_every) {
318
}
319
printf("END\n");
320
321
+ fprintf(stdout, "\n");
322
+ fflush(stdout);
323
+ if (ferror(stdout) && errno == EPIPE) {
324
+ netdata_log_error("error writing to stdout: EPIPE. Exiting...");
325
+ return loops;
326
+ }
327
328
loops++;
329