在Golang中计算Linux上的进程
I am working on a plugin that can count the processes running on a Linux system. I have searched around and it seems that I need to access /proc and gather information from there. I also tried using the os, os/exec, and syscall packages to run the external command ps -A --no-headers | wc -l but this isn't working either. I am coding this in golang as well. Any help or suggestions are welcome.