@cryptotaxi247 / netdata / commits / 0692e2267

Add 'nfds' Monitoring and Fix FD Bug in apps.plugin (#22447)

Yunus ÇETİN committed May 8, 2026 at 08:11 UTC 0692e2267306b575ae79d1fd307b4603cf0c42f3
1 file changed +1 -1
src/collectors/apps.plugin/apps_output.c
+1 -1
@@ -233,7 +233,7 @@ void send_collected_data_to_netdata(struct target *root, const char *type, usec_
233 #if (PROCESSES_HAVE_FDS == 1)
234 send_SET("files", w->openfds.files);
235 send_SET("sockets", w->openfds.sockets);
236 - send_SET("pipes", w->openfds.sockets);
236 + send_SET("pipes", w->openfds.pipes);
237 send_SET("inotifies", w->openfds.inotifies);
238 send_SET("event", w->openfds.eventfds);
239 send_SET("timer", w->openfds.timerfds);