procfs icon indicating copy to clipboard operation
procfs copied to clipboard

Rust library for reading the Linux procfs filesystem

Results 46 procfs issues
Sort by recently updated
recently updated
newest added

Seems like it should be an easy change to extend reading from /net/dev to specific processes https://github.com/eminence/procfs/blob/d8f16ddc97413ab2fb38d23149be188ad0b750a7/src/net.rs#L619 eg. `/proc/self/net/dev` `/proc//net/dev`

In a decently large project with 255 dependencies, this crate ranks 6th by compile time in a debug build: | crate | build time | | ------- | --------------| |...

This issue is collecting some ideas for breaking API changes that we might want to make in the future * Convert some fields from `Option` to `T` if they were...

I have a system where CPUs have been hot unplugged: ``` cpu 2074740 293711 234994 2597681757 257 22230 26383 0 0 0 cpu0 14996 1543 5186 5195036 1 63 1986...

As you known, the `procfs` has hundreds of setting files, we hard to list all of them in the root namespace. I propose to use a layered modules base on...

The docs say that this library intends to support Linux versions greater than 2.6. Would it make sense to only make fields optional if they were added after 2.6? Anything...

Some good info here https://ops.tips/blog/using-procfs-to-get-process-stack-trace/

I don't think enough information is currently exposed to tell whether a `Err` from `Process::stat` represents `ESRCH` or not. I end up with an object like this: ``` Io(Custom {...

```x commit 4ce9df3f1eef057dca04233fd2453e5da83bccd5 (HEAD -> thread-self, github/thread-self) Author: James Gowans Date: Sat Sep 24 19:19:07 2022 +0200 process: support getting Process for current thread Getting info about the current thread...

`procfs::process::Process::myself().unwrap().fd().unwrap().next()` fails with `signal: 31, SIGSYS: bad system call` in Android

help wanted