The total number of bytes received through ports/sockets.
1.0 MB
Total output
The total number of bytes output to ports/sockets.
2.0 MB
Run queues
Total
Each core in your machine gets a scheduler to process all instructions within the Erlang VM.
Each scheduler has its own queue, which is measured by this number. If this number keeps on
growing, it means the machine is overloaded. The queue sizes can also be broken into CPU and IO.
7
CPU
3
IO
4
Environment
MIX_ENV
REGION
System limits
Atoms
If the number of atoms keeps growing even if the system load is stable, you may have an atom leak in your application.
You must avoid functions such as String.to_atom/1 which can create atoms dynamically.
42000 / 1048576
4.0%
Ports
If the number of ports keeps growing even if the system load is stable, you may have a port leak in your application.
This means ports are being opened by a parent process that never exits or never closes them.
120 / 1024
11.7%
Processes
If the number of processes keeps growing even if the system load is stable, you may have a process leak in your application.
This means processes are being spawned and they never exit.