├── .changelog ├── 172.txt ├── 175.txt ├── 180.txt ├── 183.txt ├── 184.txt ├── 185.txt ├── 186.txt ├── 188.txt ├── 195.txt ├── 199.txt ├── 200.txt ├── 201.txt ├── 214.txt ├── 215.txt ├── 217.txt ├── 220.txt ├── 223.txt ├── 226.txt ├── 231.txt ├── 234.txt ├── 246.txt ├── 248.txt ├── 252.txt ├── 255.txt ├── 258.txt ├── 259.txt ├── 267.txt └── 269.txt ├── .ci ├── release │ ├── changelog.gotmpl │ └── release-note.gotmpl └── scripts │ ├── check-changelog.sh │ ├── check-cross-compile.sh │ ├── test.bat │ └── test.sh ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── changelog.yml │ ├── go.yml │ └── release.yml ├── .gitignore ├── .golangci.yml ├── CONTRIBUTING.md ├── LICENSE.txt ├── Makefile ├── NOTICE.txt ├── README.md ├── go.mod ├── go.sum ├── internal └── registry │ └── registry.go ├── providers ├── aix │ ├── boottime_aix_ppc64.go │ ├── boottime_aix_ppc64_test.go │ ├── defs_aix.go │ ├── doc.go │ ├── host_aix_ppc64.go │ ├── kernel_aix_ppc64.go │ ├── machineid_aix_ppc64.go │ ├── os_aix_ppc64.go │ ├── process_aix_ppc64.go │ ├── testdata │ │ └── utmp │ └── ztypes_aix_ppc64.go ├── darwin │ ├── arch_darwin.go │ ├── arch_darwin_test.go │ ├── boottime_darwin.go │ ├── boottime_darwin_test.go │ ├── defs_darwin.go │ ├── doc.go │ ├── host_darwin.go │ ├── host_darwin_test.go │ ├── kernel_darwin.go │ ├── load_average_darwin.go │ ├── load_average_darwin_test.go │ ├── machineid_darwin.go │ ├── machineid_nocgo_darwin.go │ ├── memory_darwin.go │ ├── memory_darwin_test.go │ ├── os_darwin.go │ ├── os_darwin_test.go │ ├── process_cgo_darwin.go │ ├── process_darwin.go │ ├── process_darwin_test.go │ ├── process_nocgo_darwin.go │ ├── syscall_cgo_darwin.go │ ├── syscall_darwin.go │ ├── syscall_nocgo_darwin.go │ └── ztypes_darwin.go ├── linux │ ├── arch_linux.go │ ├── arch_linux_test.go │ ├── boottime_linux.go │ ├── capabilities_linux.go │ ├── container.go │ ├── container_test.go │ ├── doc.go │ ├── host_fqdn_integration_docker_linux_test.go │ ├── host_fqdn_integration_linux_test.go │ ├── host_linux.go │ ├── host_linux_test.go │ ├── kernel_linux.go │ ├── machineid.go │ ├── machineid_test.go │ ├── memory_linux.go │ ├── os.go │ ├── os_test.go │ ├── process_linux.go │ ├── process_linux_test.go │ ├── procnet.go │ ├── procnet_test.go │ ├── seccomp_linux.go │ ├── testdata │ │ ├── almalinux10 │ │ │ ├── etc │ │ │ │ ├── almalinux-release │ │ │ │ ├── os-release │ │ │ │ ├── redhat-release │ │ │ │ └── system-release │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── os-release │ │ ├── almalinux9 │ │ │ ├── etc │ │ │ │ ├── almalinux-release │ │ │ │ ├── os-release │ │ │ │ ├── redhat-release │ │ │ │ └── system-release │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── os-release │ │ ├── alpine3.17 │ │ │ └── etc │ │ │ │ ├── alpine-release │ │ │ │ └── os-release │ │ ├── amazon2017.03 │ │ │ └── etc │ │ │ │ ├── os-release │ │ │ │ └── system-release │ │ ├── archlinux │ │ │ ├── etc │ │ │ │ ├── arch-release │ │ │ │ └── os-release │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── os-release │ │ ├── centos6 │ │ │ └── etc │ │ │ │ ├── centos-release │ │ │ │ ├── redhat-release │ │ │ │ └── system-release │ │ ├── centos7.8 │ │ │ ├── etc │ │ │ │ ├── centos-release │ │ │ │ ├── os-release │ │ │ │ ├── redhat-release │ │ │ │ └── system-release │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── os-release │ │ ├── centos7 │ │ │ └── etc │ │ │ │ ├── centos-release │ │ │ │ ├── os-release │ │ │ │ ├── redhat-release │ │ │ │ └── system-release │ │ ├── debian6 │ │ │ └── etc │ │ │ │ └── debian_version │ │ ├── debian9 │ │ │ ├── etc │ │ │ │ ├── debian_version │ │ │ │ └── os-release │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── os-release │ │ ├── dir_release │ │ │ └── etc │ │ │ │ ├── aaa-release │ │ │ │ └── .dir │ │ │ │ ├── centos-release │ │ │ │ ├── os-release │ │ │ │ ├── redhat-release │ │ │ │ └── system-release │ │ ├── fedora30 │ │ │ ├── etc │ │ │ │ ├── fedora-release │ │ │ │ ├── machine-id │ │ │ │ ├── os-release │ │ │ │ ├── redhat-release │ │ │ │ └── system-release │ │ │ ├── proc │ │ │ │ ├── net │ │ │ │ │ ├── netstat │ │ │ │ │ └── snmp │ │ │ │ └── stat │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ ├── fedora-release │ │ │ │ ├── os-release │ │ │ │ ├── redhat-release │ │ │ │ └── system-release │ │ ├── fedora40 │ │ │ └── proc │ │ │ │ └── 33925 │ │ │ │ └── stat │ │ ├── linuxmint20 │ │ │ ├── etc │ │ │ │ ├── lsb-release │ │ │ │ └── os-release │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── os-release │ │ ├── manjaro23 │ │ │ ├── etc │ │ │ │ ├── arch-release │ │ │ │ ├── lsb-release │ │ │ │ └── os-release │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── os-release │ │ ├── openeuler20.03 │ │ │ └── etc │ │ │ │ ├── openEuler-release │ │ │ │ ├── os-release │ │ │ │ └── system-release │ │ ├── opensuse-leap15.4 │ │ │ ├── etc │ │ │ │ └── os-release │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── os-release │ │ ├── opensuse-tumbleweed │ │ │ ├── etc │ │ │ │ └── os-release │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── os-release │ │ ├── oraclelinux7 │ │ │ └── etc │ │ │ │ ├── oracle-release │ │ │ │ ├── os-release │ │ │ │ ├── redhat-release │ │ │ │ └── system-release │ │ ├── raspbian9 │ │ │ ├── etc │ │ │ │ ├── debian_version │ │ │ │ └── os-release │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── os-release │ │ ├── redhat10 │ │ │ ├── etc │ │ │ │ ├── os-release │ │ │ │ ├── redhat-release │ │ │ │ └── system-release │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── os-release │ │ ├── redhat7 │ │ │ └── etc │ │ │ │ ├── os-release │ │ │ │ ├── redhat-release │ │ │ │ └── system-release │ │ ├── redhat9 │ │ │ ├── etc │ │ │ │ ├── os-release │ │ │ │ ├── redhat-release │ │ │ │ └── system-release │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── os-release │ │ ├── rockylinux9 │ │ │ ├── etc │ │ │ │ ├── os-release │ │ │ │ ├── redhat-release │ │ │ │ ├── rocky-release │ │ │ │ └── system-release │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── os-release │ │ ├── sled15sp5 │ │ │ └── etc │ │ │ │ └── os-release │ │ ├── sles15sp5 │ │ │ └── etc │ │ │ │ └── os-release │ │ ├── ubuntu1204 │ │ │ └── etc │ │ │ │ ├── lsb-release │ │ │ │ └── os-release │ │ ├── ubuntu1404 │ │ │ └── etc │ │ │ │ ├── debian_version │ │ │ │ ├── lsb-release │ │ │ │ └── os-release │ │ ├── ubuntu1710 │ │ │ ├── etc │ │ │ │ ├── debian_version │ │ │ │ ├── lsb-release │ │ │ │ └── os-release │ │ │ ├── proc │ │ │ │ ├── loadavg │ │ │ │ ├── meminfo │ │ │ │ ├── stat │ │ │ │ └── vmstat │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── os-release │ │ └── ubuntu2204 │ │ │ ├── etc │ │ │ ├── lsb-release │ │ │ └── os-release │ │ │ └── usr │ │ │ └── lib │ │ │ └── os-release │ ├── util.go │ ├── util_test.go │ ├── vmstat.go │ └── vmstat_test.go ├── shared │ ├── fqdn.go │ ├── fqdn_test.go │ └── network.go └── windows │ ├── arch_windows.go │ ├── arch_windows_test.go │ ├── boottime_windows.go │ ├── boottime_windows_test.go │ ├── device_windows.go │ ├── device_windows_test.go │ ├── doc.go │ ├── helpers_windows.go │ ├── host_windows.go │ ├── host_windows_test.go │ ├── kernel_windows.go │ ├── machineid_windows.go │ ├── os_windows.go │ ├── os_windows_test.go │ ├── process_windows.go │ └── process_windows_test.go ├── system.go ├── system_test.go └── types ├── errors.go ├── go.go ├── host.go └── process.go /.changelog/172.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/172.txt -------------------------------------------------------------------------------- /.changelog/175.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/175.txt -------------------------------------------------------------------------------- /.changelog/180.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/180.txt -------------------------------------------------------------------------------- /.changelog/183.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/183.txt -------------------------------------------------------------------------------- /.changelog/184.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/184.txt -------------------------------------------------------------------------------- /.changelog/185.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/185.txt -------------------------------------------------------------------------------- /.changelog/186.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/186.txt -------------------------------------------------------------------------------- /.changelog/188.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/188.txt -------------------------------------------------------------------------------- /.changelog/195.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/195.txt -------------------------------------------------------------------------------- /.changelog/199.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/199.txt -------------------------------------------------------------------------------- /.changelog/200.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/200.txt -------------------------------------------------------------------------------- /.changelog/201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/201.txt -------------------------------------------------------------------------------- /.changelog/214.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/214.txt -------------------------------------------------------------------------------- /.changelog/215.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/215.txt -------------------------------------------------------------------------------- /.changelog/217.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/217.txt -------------------------------------------------------------------------------- /.changelog/220.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/220.txt -------------------------------------------------------------------------------- /.changelog/223.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/223.txt -------------------------------------------------------------------------------- /.changelog/226.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/226.txt -------------------------------------------------------------------------------- /.changelog/231.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/231.txt -------------------------------------------------------------------------------- /.changelog/234.txt: -------------------------------------------------------------------------------- 1 | ```release-note:enhancement 2 | linux: Add alpine family to OSInfo 3 | ``` -------------------------------------------------------------------------------- /.changelog/246.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/246.txt -------------------------------------------------------------------------------- /.changelog/248.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/248.txt -------------------------------------------------------------------------------- /.changelog/252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/252.txt -------------------------------------------------------------------------------- /.changelog/255.txt: -------------------------------------------------------------------------------- 1 | ```release-note:enhancement 2 | Bump go-windows to 1.0.2 3 | ``` -------------------------------------------------------------------------------- /.changelog/258.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/258.txt -------------------------------------------------------------------------------- /.changelog/259.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/259.txt -------------------------------------------------------------------------------- /.changelog/267.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/267.txt -------------------------------------------------------------------------------- /.changelog/269.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.changelog/269.txt -------------------------------------------------------------------------------- /.ci/release/changelog.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.ci/release/changelog.gotmpl -------------------------------------------------------------------------------- /.ci/release/release-note.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.ci/release/release-note.gotmpl -------------------------------------------------------------------------------- /.ci/scripts/check-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.ci/scripts/check-changelog.sh -------------------------------------------------------------------------------- /.ci/scripts/check-cross-compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.ci/scripts/check-cross-compile.sh -------------------------------------------------------------------------------- /.ci/scripts/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.ci/scripts/test.bat -------------------------------------------------------------------------------- /.ci/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.ci/scripts/test.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | /.github/workflows @elastic/observablt-ci 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/go.sum -------------------------------------------------------------------------------- /internal/registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/internal/registry/registry.go -------------------------------------------------------------------------------- /providers/aix/boottime_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/aix/boottime_aix_ppc64.go -------------------------------------------------------------------------------- /providers/aix/boottime_aix_ppc64_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/aix/boottime_aix_ppc64_test.go -------------------------------------------------------------------------------- /providers/aix/defs_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/aix/defs_aix.go -------------------------------------------------------------------------------- /providers/aix/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/aix/doc.go -------------------------------------------------------------------------------- /providers/aix/host_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/aix/host_aix_ppc64.go -------------------------------------------------------------------------------- /providers/aix/kernel_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/aix/kernel_aix_ppc64.go -------------------------------------------------------------------------------- /providers/aix/machineid_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/aix/machineid_aix_ppc64.go -------------------------------------------------------------------------------- /providers/aix/os_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/aix/os_aix_ppc64.go -------------------------------------------------------------------------------- /providers/aix/process_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/aix/process_aix_ppc64.go -------------------------------------------------------------------------------- /providers/aix/testdata/utmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/aix/testdata/utmp -------------------------------------------------------------------------------- /providers/aix/ztypes_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/aix/ztypes_aix_ppc64.go -------------------------------------------------------------------------------- /providers/darwin/arch_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/arch_darwin.go -------------------------------------------------------------------------------- /providers/darwin/arch_darwin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/arch_darwin_test.go -------------------------------------------------------------------------------- /providers/darwin/boottime_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/boottime_darwin.go -------------------------------------------------------------------------------- /providers/darwin/boottime_darwin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/boottime_darwin_test.go -------------------------------------------------------------------------------- /providers/darwin/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/defs_darwin.go -------------------------------------------------------------------------------- /providers/darwin/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/doc.go -------------------------------------------------------------------------------- /providers/darwin/host_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/host_darwin.go -------------------------------------------------------------------------------- /providers/darwin/host_darwin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/host_darwin_test.go -------------------------------------------------------------------------------- /providers/darwin/kernel_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/kernel_darwin.go -------------------------------------------------------------------------------- /providers/darwin/load_average_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/load_average_darwin.go -------------------------------------------------------------------------------- /providers/darwin/load_average_darwin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/load_average_darwin_test.go -------------------------------------------------------------------------------- /providers/darwin/machineid_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/machineid_darwin.go -------------------------------------------------------------------------------- /providers/darwin/machineid_nocgo_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/machineid_nocgo_darwin.go -------------------------------------------------------------------------------- /providers/darwin/memory_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/memory_darwin.go -------------------------------------------------------------------------------- /providers/darwin/memory_darwin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/memory_darwin_test.go -------------------------------------------------------------------------------- /providers/darwin/os_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/os_darwin.go -------------------------------------------------------------------------------- /providers/darwin/os_darwin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/os_darwin_test.go -------------------------------------------------------------------------------- /providers/darwin/process_cgo_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/process_cgo_darwin.go -------------------------------------------------------------------------------- /providers/darwin/process_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/process_darwin.go -------------------------------------------------------------------------------- /providers/darwin/process_darwin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/process_darwin_test.go -------------------------------------------------------------------------------- /providers/darwin/process_nocgo_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/process_nocgo_darwin.go -------------------------------------------------------------------------------- /providers/darwin/syscall_cgo_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/syscall_cgo_darwin.go -------------------------------------------------------------------------------- /providers/darwin/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/syscall_darwin.go -------------------------------------------------------------------------------- /providers/darwin/syscall_nocgo_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/syscall_nocgo_darwin.go -------------------------------------------------------------------------------- /providers/darwin/ztypes_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/darwin/ztypes_darwin.go -------------------------------------------------------------------------------- /providers/linux/arch_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/arch_linux.go -------------------------------------------------------------------------------- /providers/linux/arch_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/arch_linux_test.go -------------------------------------------------------------------------------- /providers/linux/boottime_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/boottime_linux.go -------------------------------------------------------------------------------- /providers/linux/capabilities_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/capabilities_linux.go -------------------------------------------------------------------------------- /providers/linux/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/container.go -------------------------------------------------------------------------------- /providers/linux/container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/container_test.go -------------------------------------------------------------------------------- /providers/linux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/doc.go -------------------------------------------------------------------------------- /providers/linux/host_fqdn_integration_docker_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/host_fqdn_integration_docker_linux_test.go -------------------------------------------------------------------------------- /providers/linux/host_fqdn_integration_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/host_fqdn_integration_linux_test.go -------------------------------------------------------------------------------- /providers/linux/host_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/host_linux.go -------------------------------------------------------------------------------- /providers/linux/host_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/host_linux_test.go -------------------------------------------------------------------------------- /providers/linux/kernel_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/kernel_linux.go -------------------------------------------------------------------------------- /providers/linux/machineid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/machineid.go -------------------------------------------------------------------------------- /providers/linux/machineid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/machineid_test.go -------------------------------------------------------------------------------- /providers/linux/memory_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/memory_linux.go -------------------------------------------------------------------------------- /providers/linux/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/os.go -------------------------------------------------------------------------------- /providers/linux/os_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/os_test.go -------------------------------------------------------------------------------- /providers/linux/process_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/process_linux.go -------------------------------------------------------------------------------- /providers/linux/process_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/process_linux_test.go -------------------------------------------------------------------------------- /providers/linux/procnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/procnet.go -------------------------------------------------------------------------------- /providers/linux/procnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/procnet_test.go -------------------------------------------------------------------------------- /providers/linux/seccomp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/seccomp_linux.go -------------------------------------------------------------------------------- /providers/linux/testdata/almalinux10/etc/almalinux-release: -------------------------------------------------------------------------------- 1 | AlmaLinux release 10.0 (Purple Lion) 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/almalinux10/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/almalinux10/etc/redhat-release: -------------------------------------------------------------------------------- 1 | almalinux-release -------------------------------------------------------------------------------- /providers/linux/testdata/almalinux10/etc/system-release: -------------------------------------------------------------------------------- 1 | almalinux-release -------------------------------------------------------------------------------- /providers/linux/testdata/almalinux10/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/almalinux10/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/almalinux9/etc/almalinux-release: -------------------------------------------------------------------------------- 1 | AlmaLinux release 9.1 (Lime Lynx) 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/almalinux9/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/almalinux9/etc/redhat-release: -------------------------------------------------------------------------------- 1 | almalinux-release -------------------------------------------------------------------------------- /providers/linux/testdata/almalinux9/etc/system-release: -------------------------------------------------------------------------------- 1 | almalinux-release -------------------------------------------------------------------------------- /providers/linux/testdata/almalinux9/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/almalinux9/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/alpine3.17/etc/alpine-release: -------------------------------------------------------------------------------- 1 | 3.17.3 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/alpine3.17/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/alpine3.17/etc/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/amazon2017.03/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/amazon2017.03/etc/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/amazon2017.03/etc/system-release: -------------------------------------------------------------------------------- 1 | Amazon Linux AMI release 2017.03 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/archlinux/etc/arch-release: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/linux/testdata/archlinux/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/archlinux/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/archlinux/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/centos6/etc/centos-release: -------------------------------------------------------------------------------- 1 | CentOS release 6.9 (Final) 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/centos6/etc/redhat-release: -------------------------------------------------------------------------------- 1 | centos-release -------------------------------------------------------------------------------- /providers/linux/testdata/centos6/etc/system-release: -------------------------------------------------------------------------------- 1 | centos-release -------------------------------------------------------------------------------- /providers/linux/testdata/centos7.8/etc/centos-release: -------------------------------------------------------------------------------- 1 | CentOS Linux release 7.8.2003 (Core) 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/centos7.8/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/centos7.8/etc/redhat-release: -------------------------------------------------------------------------------- 1 | centos-release -------------------------------------------------------------------------------- /providers/linux/testdata/centos7.8/etc/system-release: -------------------------------------------------------------------------------- 1 | centos-release -------------------------------------------------------------------------------- /providers/linux/testdata/centos7.8/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/centos7.8/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/centos7/etc/centos-release: -------------------------------------------------------------------------------- 1 | CentOS Linux release 7.4.1708 (Core) 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/centos7/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/centos7/etc/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/centos7/etc/redhat-release: -------------------------------------------------------------------------------- 1 | centos-release -------------------------------------------------------------------------------- /providers/linux/testdata/centos7/etc/system-release: -------------------------------------------------------------------------------- 1 | centos-release -------------------------------------------------------------------------------- /providers/linux/testdata/debian6/etc/debian_version: -------------------------------------------------------------------------------- 1 | 6.0.10 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/debian9/etc/debian_version: -------------------------------------------------------------------------------- 1 | 9.3 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/debian9/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/debian9/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/debian9/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/dir_release/etc/aaa-release/.dir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/linux/testdata/dir_release/etc/centos-release: -------------------------------------------------------------------------------- 1 | CentOS Linux release 7.4.1708 (Core) 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/dir_release/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/dir_release/etc/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/dir_release/etc/redhat-release: -------------------------------------------------------------------------------- 1 | centos-release -------------------------------------------------------------------------------- /providers/linux/testdata/dir_release/etc/system-release: -------------------------------------------------------------------------------- 1 | centos-release -------------------------------------------------------------------------------- /providers/linux/testdata/fedora30/etc/fedora-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/fedora-release -------------------------------------------------------------------------------- /providers/linux/testdata/fedora30/etc/machine-id: -------------------------------------------------------------------------------- 1 | 144d62edb0f142458f320852f495b72c 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/fedora30/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/fedora30/etc/redhat-release: -------------------------------------------------------------------------------- 1 | fedora-release -------------------------------------------------------------------------------- /providers/linux/testdata/fedora30/etc/system-release: -------------------------------------------------------------------------------- 1 | fedora-release -------------------------------------------------------------------------------- /providers/linux/testdata/fedora30/proc/net/netstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/fedora30/proc/net/netstat -------------------------------------------------------------------------------- /providers/linux/testdata/fedora30/proc/net/snmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/fedora30/proc/net/snmp -------------------------------------------------------------------------------- /providers/linux/testdata/fedora30/proc/stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/fedora30/proc/stat -------------------------------------------------------------------------------- /providers/linux/testdata/fedora30/usr/lib/fedora-release: -------------------------------------------------------------------------------- 1 | Fedora release 30 (Thirty) 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/fedora30/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/fedora30/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/fedora30/usr/lib/redhat-release: -------------------------------------------------------------------------------- 1 | Fedora release 30 (Thirty) 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/fedora30/usr/lib/system-release: -------------------------------------------------------------------------------- 1 | Fedora release 30 (Thirty) 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/fedora40/proc/33925/stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/fedora40/proc/33925/stat -------------------------------------------------------------------------------- /providers/linux/testdata/linuxmint20/etc/lsb-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/linuxmint20/etc/lsb-release -------------------------------------------------------------------------------- /providers/linux/testdata/linuxmint20/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/linuxmint20/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/linuxmint20/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/manjaro23/etc/arch-release: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/linux/testdata/manjaro23/etc/lsb-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/manjaro23/etc/lsb-release -------------------------------------------------------------------------------- /providers/linux/testdata/manjaro23/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/manjaro23/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/manjaro23/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/openeuler20.03/etc/openEuler-release: -------------------------------------------------------------------------------- 1 | openEuler release 20.03 (LTS-SP3) 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/openeuler20.03/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/openeuler20.03/etc/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/openeuler20.03/etc/system-release: -------------------------------------------------------------------------------- 1 | openEuler-release -------------------------------------------------------------------------------- /providers/linux/testdata/opensuse-leap15.4/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/opensuse-leap15.4/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/opensuse-leap15.4/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/opensuse-tumbleweed/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/opensuse-tumbleweed/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/opensuse-tumbleweed/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/oraclelinux7/etc/oracle-release: -------------------------------------------------------------------------------- 1 | Oracle Linux Server release 7.9 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/oraclelinux7/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/oraclelinux7/etc/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/oraclelinux7/etc/redhat-release: -------------------------------------------------------------------------------- 1 | Red Hat Enterprise Linux Server release 7.9 (Maipo) 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/oraclelinux7/etc/system-release: -------------------------------------------------------------------------------- 1 | oracle-release -------------------------------------------------------------------------------- /providers/linux/testdata/raspbian9/etc/debian_version: -------------------------------------------------------------------------------- 1 | 9.4 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/raspbian9/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/raspbian9/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/raspbian9/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/redhat10/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/redhat10/etc/redhat-release: -------------------------------------------------------------------------------- 1 | Red Hat Enterprise Linux release 10.0 (Coughlan) 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/redhat10/etc/system-release: -------------------------------------------------------------------------------- 1 | redhat-release -------------------------------------------------------------------------------- /providers/linux/testdata/redhat10/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/redhat10/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/redhat7/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/redhat7/etc/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/redhat7/etc/redhat-release: -------------------------------------------------------------------------------- 1 | Red Hat Enterprise Linux Server release 7.6 (Maipo) 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/redhat7/etc/system-release: -------------------------------------------------------------------------------- 1 | redhat-release -------------------------------------------------------------------------------- /providers/linux/testdata/redhat9/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/redhat9/etc/redhat-release: -------------------------------------------------------------------------------- 1 | Red Hat Enterprise Linux release 9.0 (Plow) 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/redhat9/etc/system-release: -------------------------------------------------------------------------------- 1 | redhat-release -------------------------------------------------------------------------------- /providers/linux/testdata/redhat9/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/redhat9/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/rockylinux9/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/rockylinux9/etc/redhat-release: -------------------------------------------------------------------------------- 1 | rocky-release -------------------------------------------------------------------------------- /providers/linux/testdata/rockylinux9/etc/rocky-release: -------------------------------------------------------------------------------- 1 | Rocky Linux release 9.0 (Blue Onyx) 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/rockylinux9/etc/system-release: -------------------------------------------------------------------------------- 1 | rocky-release -------------------------------------------------------------------------------- /providers/linux/testdata/rockylinux9/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/rockylinux9/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/sled15sp5/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/sled15sp5/etc/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/sles15sp5/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/sles15sp5/etc/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu1204/etc/lsb-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/ubuntu1204/etc/lsb-release -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu1204/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/ubuntu1204/etc/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu1404/etc/debian_version: -------------------------------------------------------------------------------- 1 | jessie/sid 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu1404/etc/lsb-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/ubuntu1404/etc/lsb-release -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu1404/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/ubuntu1404/etc/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu1710/etc/debian_version: -------------------------------------------------------------------------------- 1 | stretch/sid 2 | -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu1710/etc/lsb-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/ubuntu1710/etc/lsb-release -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu1710/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu1710/proc/loadavg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/ubuntu1710/proc/loadavg -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu1710/proc/meminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/ubuntu1710/proc/meminfo -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu1710/proc/stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/ubuntu1710/proc/stat -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu1710/proc/vmstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/ubuntu1710/proc/vmstat -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu1710/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/ubuntu1710/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu2204/etc/lsb-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/ubuntu2204/etc/lsb-release -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu2204/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/testdata/ubuntu2204/usr/lib/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/testdata/ubuntu2204/usr/lib/os-release -------------------------------------------------------------------------------- /providers/linux/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/util.go -------------------------------------------------------------------------------- /providers/linux/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/util_test.go -------------------------------------------------------------------------------- /providers/linux/vmstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/vmstat.go -------------------------------------------------------------------------------- /providers/linux/vmstat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/linux/vmstat_test.go -------------------------------------------------------------------------------- /providers/shared/fqdn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/shared/fqdn.go -------------------------------------------------------------------------------- /providers/shared/fqdn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/shared/fqdn_test.go -------------------------------------------------------------------------------- /providers/shared/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/shared/network.go -------------------------------------------------------------------------------- /providers/windows/arch_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/arch_windows.go -------------------------------------------------------------------------------- /providers/windows/arch_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/arch_windows_test.go -------------------------------------------------------------------------------- /providers/windows/boottime_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/boottime_windows.go -------------------------------------------------------------------------------- /providers/windows/boottime_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/boottime_windows_test.go -------------------------------------------------------------------------------- /providers/windows/device_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/device_windows.go -------------------------------------------------------------------------------- /providers/windows/device_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/device_windows_test.go -------------------------------------------------------------------------------- /providers/windows/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/doc.go -------------------------------------------------------------------------------- /providers/windows/helpers_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/helpers_windows.go -------------------------------------------------------------------------------- /providers/windows/host_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/host_windows.go -------------------------------------------------------------------------------- /providers/windows/host_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/host_windows_test.go -------------------------------------------------------------------------------- /providers/windows/kernel_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/kernel_windows.go -------------------------------------------------------------------------------- /providers/windows/machineid_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/machineid_windows.go -------------------------------------------------------------------------------- /providers/windows/os_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/os_windows.go -------------------------------------------------------------------------------- /providers/windows/os_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/os_windows_test.go -------------------------------------------------------------------------------- /providers/windows/process_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/process_windows.go -------------------------------------------------------------------------------- /providers/windows/process_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/providers/windows/process_windows_test.go -------------------------------------------------------------------------------- /system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/system.go -------------------------------------------------------------------------------- /system_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/system_test.go -------------------------------------------------------------------------------- /types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/types/errors.go -------------------------------------------------------------------------------- /types/go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/types/go.go -------------------------------------------------------------------------------- /types/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/types/host.go -------------------------------------------------------------------------------- /types/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/go-sysinfo/HEAD/types/process.go --------------------------------------------------------------------------------