I know that topbet (gosigar) gets the process name from /proc/:pid/stat in Linux.
I have different nodejs processes in the same box:
$ ps -ef | grep node
myuser 29334 29332 0 12:43 ? 00:00:00 /usr/bin/node /opt/myapp/process1
myuser 29340 29337 0 12:45 ? 00:00:00 /usr/bin/node /opt/myapp/process2
and all of them are "node" for topbeat. Is there any way to get the arguments (opt/myapp/process1 in the example) to differenciate the processes with a human-readable identifier? The pid is not very user friendly.
Thanks