Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sys-proctable

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sys-proctable

  • 1.3.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Ruby

sys-proctable

Description

A Ruby interface for gathering process information.

Prerequisites

  • ffi
  • rspec (development only)
  • rake (development only)
  • rubocop (development only)

Supported Platforms

  • Windows 2000 or later
  • Linux 2.6+
  • FreeBSD
  • DragonflyBSD
  • Solaris 8+
  • OS X 10.7+
  • AIX 5.3+

Installation

gem install sys-proctable

For version 1.1.5 or earlier, you may need to specify a platform in some cases. For example:

gem install sys-proctable --platform mswin32 # Windows
gem install sys-proctable --platform sunos   # Solaris
gem install sys-proctable --platform linux   # Linux
gem install sys-proctable --platform freebsd # FreeBSD
gem install sys-proctable --platform darwin  # OS X

Synopsis

require 'sys/proctable'
include Sys

# Everything
ProcTable.ps{ |p|
  puts p.pid.to_s
  puts p.comm
  # ...
}

# Just one process
s = ProcTable.ps(pid: 2123)
puts s.pid.to_s
puts s.comm
# ...

# Return the results as an array of ProcTableStructs
a = ProcTable.ps
a.each do |p|
  puts p.pid
  # ...
end

Notes

Various platforms support different options. Mostly this is to let you skip the collection of certain bits of information in order to improve speed and/or reduce memory. For example on Linux you can do this to skip the collection of smaps information:

Sys::ProcTable.ps(smaps: false)

Windows users may send a host name to get process information from a different host. This relies on the WMI service running.

Sys::ProcTable.ps(host: some_host)

Known Issues

FreeBSD

A kvm interface is used. That means the owner of the process using the sys-proctable library needs to be a member of the kvm group (or root).

Bundler

For version 1.1.5 or earlier, Bundler seems to have trouble installing the proper gem because of the platform specific gem names. To deal with that, run this command first:

bundle config specific_platform true

You should not have to do this for version 1.2.0 or later.

Solaris

The cmdline member on Solaris is limited to 80 characters unless you (or your program) own the process. This is a Solaris design flaw/feature.

OS X

The libproc interface is used. That means you will only get list of processes that you have access to. To get a full listing, run as root.

Future Plans

Support for Solaris will probably be dropped in the next major release.

Acknowledgements

This library was originally based on the Perl module Proc::ProcessTable by Dan Urist. Many ideas, as well as large chunks of code, were taken from his work. So, a big THANK YOU goes out to Dan Urist.

A big thanks also goes out to Mike Hall who was very helpful with ideas, logic and testing.

Thanks also go to Sean Chittenden for providing an account on one of his FreeBSD machines. This is how the FreeBSD support was (initially) added.

Thanks go to James Hranicky for providing a patch that grabs name, eid, euid, gid and guid info in the Linux version, along with some general debugging help.

Thanks go to David Felstead for the original OS X code. Thanks also go to Matthias Zirnstein for adding the original cmdline support for OS X.

Finally I'd like to thank all the folks who have submitted bug reports and/or patches.

Help Wanted

I do not have access to all platforms. If your platform is not supported then you will need to either submit a patch or give me a remote account on a box with a compiler so that I can write the code.

More documentation

See the documentation under the 'doc' directory for more information, including platform specific notes and issues.

License

Apache-2.0

(C) 2003-2022 Daniel J. Berger All Rights Reserved.

Author

Daniel J. Berger

FAQs

Package last updated on 26 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc