Skip to main content

A library to allow customization of the process title.

Project description

Author:

Daniele Varrazzo

The library allows a process to change its title (as displayed by system tools such as ps and top).

Changing the title is mostly useful in multi-process systems, for example when a master process is forked: changing the children’s title allows to identify the task each process is busy with. The technique is used by PostgreSQL and the OpenSSH Server for example.

The procedure is hardly portable across different systems. PostgreSQL provides a good multi-platform implementation: this module is a Python wrapper around PostgreSQL code.

Installation

You can use easy_install to install the module: to perform a system-wide installation use:

sudo easy_install setproctitle

If you are an unprivileged user or you want to limit installation to a local environment, you can use the command:

easy_install -d /target/path setproctitle

Note that easy_install requires /target/path to be in your PYTHONPATH.

Python 3 support

As of version 1.1 the module works with Python 3. In order to install the module, you can use the distribute replacemente for easy_install.

In order to build and test the module under Python 3, the Makefile contains some helper targets.

Usage

The setproctitle module exports the following functions:

setproctitle(title)

Set title as the title for the current process.

getproctitle()

Return the current process title.

Environment variables

A few environment variables can be used to customize the module behavior:

SPT_NOENV

Avoid clobbering /proc/PID/environ.

On many platforms, setting the process title will clobber the environ memory area. os.environ will work as expected from within the Python process, but the content of the file /proc/PID/environ will be overwritten. If you require this file not to be broken you can set the SPT_NOENV environment variable to any non-empty value: in this case the maximum length for the title will be limited to the length of the command line.

SPT_DEBUG

Print debug information on stderr.

If the module doesn’t work as expected you can set this variable to a non-empty value to generate information useful for debugging. Note that the most useful information is printed when the module is imported, not when the functions are called.

Module status

The module can be currently compiled and effectively used on the following platforms:

  • GNU/Linux

  • BSD

  • MacOS X

  • Windows

Note that on Windows there is no way to change the process string: what the module does is to create a Named Object whose value can be read using a tool such as Process Explorer (contribution of a more useful tool to be used together with setproctitle would be well accepted).

The module can probably work on HP-UX, but I haven’t found any to test with. It is unlikely that it can work on Solaris instead.

Other known implementations and discussions

  • procname: a module exposing the same functionality, but less portable and not well packaged.

  • Issue 5672: where the introduction of such functionality into the stdlib is being discussed.

Releases history

Version 1.1.6

  • The module can be compiled again on Windows (issue #21).

Version 1.1.5

  • No module bug, but a packaging issue: files README and HISTORY added back into the distribution.

Version 1.1.4

  • The module works correctly in embedded Python.

  • setproctitle() accepts a keyword argument.

  • Debug output support always compiled in: the variable SPT_DEBUG can be used to emit debug log.

Version 1.1.3

  • Don’t clobber environ if the variable SPT_NOENV is set (issue #16).

Version 1.1.2

  • Find the setproctitle include file on OpenBSD (issue #11).

  • Skip test with unicode if the file system encoding wouldn’t make it pass (issue #13).

Version 1.1.1

  • Fixed segfault when the module is imported under mod_wsgi (issue #9).

Version 1.1

  • The module works correctly with Python 3.

Version 1.0.1

  • setproctitle() works even when Python messes up with argv, e.g. when run with the -m option (issue #8).

Version 1.0

No major change since the previous version. The module has been heavily used in production environment without any problem reported, so it’s time to declare it stable.

Version 0.4

Version 0.3

  • Module works on Mac OS X 10.2. Reported working on OS X 10.6 too.

Version 0.2

  • Added prctl() call on Linux >= 2.6.9 to update /proc/self/status.

Version 0.1

  • Initial public release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

setproctitle-1.1.6.zip (29.2 kB view details)

Uploaded Source

setproctitle-1.1.6.tar.gz (22.6 kB view details)

Uploaded Source

File details

Details for the file setproctitle-1.1.6.zip.

File metadata

  • Download URL: setproctitle-1.1.6.zip
  • Upload date:
  • Size: 29.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for setproctitle-1.1.6.zip
Algorithm Hash digest
SHA256 97fc8455b128881635cac5e31841cd1a28363f259854408908cb442085240e2f
MD5 5427ff7f51b44c55d2f352d11e8e1fe5
BLAKE2b-256 34f06a2b0c8d9bcd8371b05677e898583b94fb1d4f64d8950c1e28e71f822dbb

See more details on using hashes here.

File details

Details for the file setproctitle-1.1.6.tar.gz.

File metadata

File hashes

Hashes for setproctitle-1.1.6.tar.gz
Algorithm Hash digest
SHA256 f2926abd47803e288f665401268a9950961be734e981035bde9acb4af80a032d
MD5 1e42e43b440214b971f4b33c21eac369
BLAKE2b-256 bd77f43757efdd98174810d9a32e8b442853c3ba9b2155fd77f0731a43ca84c7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page