Basically I type lsof and I have a bunch of file descriptors that have something like:
COMMAND PID FD TYPE NODE NAME
java 564 487u IPv4 TCP vm3:8003->website.com:5646 (CLOSE_WAIT)
java 564 492u IPv4 TCP vm3:8003->website.com:5646 (CLOSE_WAIT)
And I can't figure out where the file descriptor leak is coming from. Is there anyway that I can use the FD like 487u
to further inspect where the leak is coming from within the program? Anything about the FD would be helpful. If you need any more information let me know.