Search⌘ K

Observing It

Explore how to observe and understand running processes in Elixir applications using OTP tools like observer. Learn to analyze application supervision trees, memory stats, and message queues to improve debugging and system management.

Processes running in the application so far

We’ve fully configured the application for Mastery, and we know what those options mean. Think back to the configuration in application.ex. We can probably guess which processes might be running in the application so far:

  • A process or two to load the application and start the main Mastery supervisor.

  • An application supervisor for Mastery.

  • A quiz ...