erlang:memory/1
获取指定内存类型的动态分配信息
用法:
memory(Type | [Type]) -> Size | [{Type, Size}]
获取指定类型内存 Type 的内存分配大小数据,参数 Type 可以是一个有内存类型原子组成的列表。如果 Type 不是内存类型默认定义的,则返回 badarg。
erlang:memory(processes_used).
erlang:memory([total, processes, processes_used, system, atom, atom_used, binary, code, ets]).