NetDev returns kernel/system statistics read from /proc/net/dev.
()
| 49 | |
| 50 | // NetDev returns kernel/system statistics read from /proc/net/dev. |
| 51 | func (fs FS) NetDev() (NetDev, error) { |
| 52 | return newNetDev(fs.proc.Path("net/dev")) |
| 53 | } |
| 54 | |
| 55 | // NetDev returns kernel/system statistics read from /proc/[pid]/net/dev. |
| 56 | func (p Proc) NetDev() (NetDev, error) { |