Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement checks for everything useful in /proc/ #59

Open
8 tasks
langston-barrett opened this issue Jul 14, 2015 · 0 comments
Open
8 tasks

Implement checks for everything useful in /proc/ #59

langston-barrett opened this issue Jul 14, 2015 · 0 comments

Comments

@langston-barrett
Copy link
Contributor

/proc has a lot of information about the system. It is also incredibly easy to parse, in light of tabular. We can implement read some of these files for useful information. Preliminary ideas:

  • /proc/filesystems – File systems supported by the kernel.
  • /proc/meminfo – Current utilization of primary memory on the system
  • /proc/partitions – Very detailed information on the various partitions currently available to the system
  • /proc/loadavg – Contains load average of the system
    The first three columns measure CPU utilization of the last 1, 5, and 10 minute periods.
    The fourth column shows the number of currently running processes and the total number of processes.
  • /proc/swaps – Measures swap space and its utilization
  • /proc/modules – Displays a list of all modules that have been loaded by the system
  • /proc/mounts – This file provides a quick list of all mounts in use by the system
  • /proc/version – Version of the Linux kernel, gcc, name of the Linux flavor installed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant