BeamConsole.ApplicationInfo (beam_console v0.4.0)

Copy Markdown View Source

Describes an OTP application observed in a runtime snapshot.

root_supervisor_id is present when BeamConsole can associate the application's master process with a process in the sampled topology.

Summary

Types

origin()

@type origin() :: :otp | :external | :unknown

t()

@type t() :: %BeamConsole.ApplicationInfo{
  description: String.t() | nil,
  id: String.t(),
  name: atom(),
  node_id: String.t(),
  origin: origin(),
  required_applications: [atom()],
  root_supervisor_id: String.t() | nil,
  version: String.t() | nil
}