go.mondoo.com/cnquery@v0.0.0-20231005093811-59568235f6ea/providers/os/resources/procfs/README.md (about) 1 # Proc Filesystem for Linux 2 3 This package provides various helper to parse information for the proc filesystem. The best description is its [specification](https://www.kernel.org/doc/Documentation/filesystems/proc.txt). This guided the implementation of the parser. 4 5 ## Why are you reinventing the wheel? There is a sysctl, top etc already available 6 7 The aim of this implementation is not to replace those tools, instead its main focus is to provided structured information for uses. Therefore this implementation is mainly targeted to machine readers instead of human readers. 8 9 The main difference compared to other versions is that this implementation does not expect to have access to the system directly. It is intended to work via a remote connection, too. 10 11 ## Notable other implementations 12 13 - https://github.com/shirou/gopsutil 14 - https://github.com/c9s/goprocinfo 15 - https://github.com/prometheus/procfs 16 - https://github.com/bcicen/ctop