Skip to content
/ ps Public

List, find and inspect operating system processes in Go

License

Notifications You must be signed in to change notification settings

tklauser/ps

Folders and files

NameName
Last commit message
Last commit date
Mar 19, 2025
Nov 22, 2021
Feb 26, 2025
Nov 22, 2021
Jan 8, 2024
Jan 19, 2022
Nov 22, 2021
Mar 5, 2025
Mar 5, 2025
Aug 23, 2023
Jan 8, 2024
May 19, 2022
Nov 22, 2021
Nov 22, 2021
Jan 8, 2024
Dec 10, 2021
Jan 8, 2024
Jan 8, 2024
Aug 25, 2023
Jan 5, 2024
Jan 8, 2024
Jan 8, 2024
Jun 30, 2022

Repository files navigation

ps

Go Reference GitHub Action Status

Package ps provides functionality to find, list and inspect operating system processes, without using cgo or external binaries.

Supported operating systems: Linux, macOS, FreeBSD, NetBSD, OpenBSD, DragonflyBSD, Solaris/Illumos, Windows

Not all process information may be supported on all platforms. See the Go package reference for details.

This package is inspired by the github.com/mitchellh/go-ps and github.com/keybase/go-ps packages (the latter being a fork of the former). However, this package supports more operating systems, provides extended process information and uses only functionality from the Go standard libary and the golang.org/x/sys/unix and golang.org/x/sys/windows packages to retrieve information from the operating system, i.e. without using cgo or shelling out to external programs.