gitextract_q6j6w0jl/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── SECURITY.md │ ├── dependabot.yml │ ├── labeler.yml │ ├── release.yml │ └── workflows/ │ ├── build_test.yml │ ├── labeler.yml │ ├── lint.yml │ ├── release.yml │ ├── sbom_generator.yml │ ├── shellcheck.yml │ └── test.yml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── Makefile ├── README.md ├── common/ │ └── env.go ├── cpu/ │ ├── cpu.go │ ├── cpu_aix.go │ ├── cpu_aix_cgo.go │ ├── cpu_aix_nocgo.go │ ├── cpu_darwin.go │ ├── cpu_darwin_arm64.go │ ├── cpu_darwin_fallback.go │ ├── cpu_darwin_test.go │ ├── cpu_dragonfly.go │ ├── cpu_dragonfly_amd64.go │ ├── cpu_fallback.go │ ├── cpu_freebsd.go │ ├── cpu_freebsd_386.go │ ├── cpu_freebsd_amd64.go │ ├── cpu_freebsd_arm.go │ ├── cpu_freebsd_arm64.go │ ├── cpu_freebsd_test.go │ ├── cpu_linux.go │ ├── cpu_linux_test.go │ ├── cpu_netbsd.go │ ├── cpu_netbsd_amd64.go │ ├── cpu_netbsd_arm.go │ ├── cpu_netbsd_arm64.go │ ├── cpu_openbsd.go │ ├── cpu_openbsd_386.go │ ├── cpu_openbsd_amd64.go │ ├── cpu_openbsd_arm.go │ ├── cpu_openbsd_arm64.go │ ├── cpu_openbsd_riscv64.go │ ├── cpu_plan9.go │ ├── cpu_plan9_test.go │ ├── cpu_solaris.go │ ├── cpu_solaris_test.go │ ├── cpu_test.go │ ├── cpu_windows.go │ └── testdata/ │ ├── aix/ │ │ ├── prtconf │ │ ├── sar-u-PALL101 │ │ └── sar-u101 │ ├── freebsd/ │ │ ├── 1cpu_2core.txt │ │ ├── 1cpu_4core.txt │ │ └── 2cpu_4core.txt │ ├── linux/ │ │ ├── 1037/ │ │ │ └── proc/ │ │ │ └── cpuinfo │ │ ├── 1958/ │ │ │ └── proc/ │ │ │ └── cpuinfo │ │ ├── 424/ │ │ │ └── proc/ │ │ │ └── stat │ │ └── times_empty/ │ │ └── proc/ │ │ └── stat │ ├── plan9/ │ │ └── 2cores/ │ │ ├── dev/ │ │ │ ├── cputype │ │ │ ├── sysstat │ │ │ └── time │ │ └── proc/ │ │ ├── 1/ │ │ │ └── status │ │ ├── 331/ │ │ │ └── .gitkeep │ │ ├── 54384/ │ │ │ └── status │ │ ├── 54412/ │ │ │ └── status │ │ └── 72/ │ │ └── status │ └── solaris/ │ ├── 1cpu_1core_isainfo.txt │ ├── 1cpu_1core_psrinfo.txt │ ├── 2cpu_12core_isainfo.txt │ ├── 2cpu_12core_psrinfo.txt │ ├── 2cpu_1core_isainfo.txt │ ├── 2cpu_1core_psrinfo.txt │ ├── 2cpu_8core_isainfo.txt │ └── 2cpu_8core_psrinfo.txt ├── disk/ │ ├── disk.go │ ├── disk_aix.go │ ├── disk_aix_cgo.go │ ├── disk_aix_nocgo.go │ ├── disk_darwin.go │ ├── disk_fallback.go │ ├── disk_freebsd.go │ ├── disk_freebsd_386.go │ ├── disk_freebsd_amd64.go │ ├── disk_freebsd_arm.go │ ├── disk_freebsd_arm64.go │ ├── disk_linux.go │ ├── disk_linux_test.go │ ├── disk_netbsd.go │ ├── disk_netbsd_amd64.go │ ├── disk_netbsd_arm.go │ ├── disk_netbsd_arm64.go │ ├── disk_openbsd.go │ ├── disk_openbsd_386.go │ ├── disk_openbsd_amd64.go │ ├── disk_openbsd_arm.go │ ├── disk_openbsd_arm64.go │ ├── disk_openbsd_riscv64.go │ ├── disk_solaris.go │ ├── disk_test.go │ ├── disk_unix.go │ ├── disk_windows.go │ ├── disk_windows_test.go │ ├── types_freebsd.go │ ├── types_netbsd.go │ └── types_openbsd.go ├── doc.go ├── docker/ │ ├── docker.go │ ├── docker_linux.go │ ├── docker_linux_test.go │ ├── docker_notlinux.go │ └── main_test.go ├── go.mod ├── go.sum ├── host/ │ ├── freebsd_headers/ │ │ └── utxdb.h │ ├── host.go │ ├── host_aix.go │ ├── host_aix_cgo.go │ ├── host_aix_nocgo.go │ ├── host_aix_ppc64.go │ ├── host_aix_test.go │ ├── host_bsd.go │ ├── host_darwin.go │ ├── host_darwin_amd64.go │ ├── host_darwin_arm64.go │ ├── host_fallback.go │ ├── host_freebsd.go │ ├── host_freebsd_386.go │ ├── host_freebsd_amd64.go │ ├── host_freebsd_arm.go │ ├── host_freebsd_arm64.go │ ├── host_linux.go │ ├── host_linux_386.go │ ├── host_linux_amd64.go │ ├── host_linux_arm.go │ ├── host_linux_arm64.go │ ├── host_linux_loong64.go │ ├── host_linux_mips.go │ ├── host_linux_mips64.go │ ├── host_linux_mips64le.go │ ├── host_linux_mipsle.go │ ├── host_linux_ppc64.go │ ├── host_linux_ppc64le.go │ ├── host_linux_riscv64.go │ ├── host_linux_s390x.go │ ├── host_linux_test.go │ ├── host_netbsd.go │ ├── host_openbsd.go │ ├── host_openbsd_386.go │ ├── host_openbsd_amd64.go │ ├── host_openbsd_arm.go │ ├── host_openbsd_arm64.go │ ├── host_openbsd_riscv64.go │ ├── host_posix.go │ ├── host_solaris.go │ ├── host_test.go │ ├── host_windows.go │ ├── testdata/ │ │ └── linux/ │ │ └── lsbStruct/ │ │ ├── arch/ │ │ │ └── lsb-release │ │ └── ubuntu_22_04/ │ │ └── lsb-release │ ├── types_darwin.go │ ├── types_freebsd.go │ ├── types_linux.go │ └── types_openbsd.go ├── internal/ │ └── common/ │ ├── common.go │ ├── common_aix.go │ ├── common_aix_test.go │ ├── common_darwin.go │ ├── common_freebsd.go │ ├── common_linux.go │ ├── common_netbsd.go │ ├── common_openbsd.go │ ├── common_test.go │ ├── common_unix.go │ ├── common_windows.go │ ├── endian.go │ ├── readlink_linux.go │ ├── sleep.go │ ├── sleep_test.go │ ├── warnings.go │ └── warnings_test.go ├── load/ │ ├── load.go │ ├── load_aix.go │ ├── load_aix_cgo.go │ ├── load_aix_nocgo.go │ ├── load_bsd.go │ ├── load_darwin.go │ ├── load_fallback.go │ ├── load_freebsd.go │ ├── load_linux.go │ ├── load_openbsd.go │ ├── load_solaris.go │ ├── load_test.go │ └── load_windows.go ├── mem/ │ ├── ex_linux.go │ ├── ex_windows.go │ ├── mem.go │ ├── mem_aix.go │ ├── mem_aix_cgo.go │ ├── mem_aix_nocgo.go │ ├── mem_bsd.go │ ├── mem_bsd_test.go │ ├── mem_darwin.go │ ├── mem_darwin_test.go │ ├── mem_fallback.go │ ├── mem_freebsd.go │ ├── mem_linux.go │ ├── mem_linux_test.go │ ├── mem_netbsd.go │ ├── mem_openbsd.go │ ├── mem_openbsd_386.go │ ├── mem_openbsd_amd64.go │ ├── mem_openbsd_arm.go │ ├── mem_openbsd_arm64.go │ ├── mem_openbsd_riscv64.go │ ├── mem_plan9.go │ ├── mem_plan9_test.go │ ├── mem_solaris.go │ ├── mem_solaris_test.go │ ├── mem_test.go │ ├── mem_windows.go │ ├── testdata/ │ │ ├── linux/ │ │ │ └── virtualmemory/ │ │ │ ├── anonhugepages/ │ │ │ │ └── proc/ │ │ │ │ └── meminfo │ │ │ ├── intelcorei5/ │ │ │ │ └── proc/ │ │ │ │ └── meminfo │ │ │ └── issue1002/ │ │ │ └── proc/ │ │ │ └── meminfo │ │ └── plan9/ │ │ └── virtualmemory/ │ │ └── dev/ │ │ └── swap │ └── types_openbsd.go ├── mktypes.sh ├── net/ │ ├── net.go │ ├── net_aix.go │ ├── net_aix_cgo.go │ ├── net_aix_nocgo.go │ ├── net_darwin.go │ ├── net_darwin_test.go │ ├── net_fallback.go │ ├── net_freebsd.go │ ├── net_linux.go │ ├── net_linux_test.go │ ├── net_openbsd.go │ ├── net_solaris.go │ ├── net_test.go │ ├── net_unix.go │ ├── net_windows.go │ └── types_darwin.go ├── process/ │ ├── process.go │ ├── process_bsd.go │ ├── process_darwin.go │ ├── process_darwin_amd64.go │ ├── process_darwin_arm64.go │ ├── process_darwin_test.go │ ├── process_fallback.go │ ├── process_freebsd.go │ ├── process_freebsd_386.go │ ├── process_freebsd_amd64.go │ ├── process_freebsd_arm.go │ ├── process_freebsd_arm64.go │ ├── process_linux.go │ ├── process_linux_test.go │ ├── process_openbsd.go │ ├── process_openbsd_386.go │ ├── process_openbsd_amd64.go │ ├── process_openbsd_arm.go │ ├── process_openbsd_arm64.go │ ├── process_openbsd_riscv64.go │ ├── process_plan9.go │ ├── process_posix.go │ ├── process_posix_test.go │ ├── process_race_test.go │ ├── process_solaris.go │ ├── process_test.go │ ├── process_windows.go │ ├── process_windows_32bit.go │ ├── process_windows_64bit.go │ ├── testdata/ │ │ ├── linux/ │ │ │ ├── 1/ │ │ │ │ ├── comm │ │ │ │ ├── smaps │ │ │ │ └── status │ │ │ ├── 1060/ │ │ │ │ ├── comm │ │ │ │ └── status │ │ │ ├── 23819/ │ │ │ │ ├── comm │ │ │ │ └── status │ │ │ └── 68927/ │ │ │ ├── comm │ │ │ └── stat │ │ └── lx_brandz/ │ │ └── 1/ │ │ └── stat │ ├── types_darwin.go │ ├── types_freebsd.go │ └── types_openbsd.go ├── sensors/ │ ├── ex_linux.go │ ├── sensors.go │ ├── sensors_aix.go │ ├── sensors_darwin.go │ ├── sensors_darwin_arm64.go │ ├── sensors_fallback.go │ ├── sensors_freebsd.go │ ├── sensors_linux.go │ ├── sensors_netbsd.go │ ├── sensors_openbsd.go │ ├── sensors_solaris.go │ ├── sensors_test.go │ └── sensors_windows.go ├── windows_memo.rst └── winservices/ ├── manager.go └── winservices.go