View Source Wobserver.Util.Application (Wobserver NG v1.14.0)

Application listing and process hierachy.

Link to this section Summary

Functions

Retreives information about the application.

Lists all running applications.

Link to this section Functions

@spec info(app :: atom()) :: map()

Retreives information about the application.

The given app atom is used to find the started application.

Containing:

  • pid, the process id or port id.
  • name, the registered name or pid/port.
  • meta, the meta information of a process. (See: Wobserver.Util.Process.meta/1.)
  • children, the children of the process.
@spec list() :: [{atom(), String.t(), String.t()}]

Lists all running applications.

The application information is given as a tuple containing: {name, description, version}. The name is an atom, while both the description and version are Strings.