diff options
author | Dan Gudmundsson <[email protected]> | 2012-03-20 16:34:51 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2012-03-20 16:34:51 +0100 |
commit | 657881500b00b060773dd7f4c04d9a9da9c22dc3 (patch) | |
tree | 8584115037afc021ddbc5d4c83ed1b9812d0a244 /lib/observer | |
parent | 75c1050ae68d6914cf9be4f7e7267c0c4b12f157 (diff) | |
download | otp-657881500b00b060773dd7f4c04d9a9da9c22dc3.tar.gz otp-657881500b00b060773dd7f4c04d9a9da9c22dc3.tar.bz2 otp-657881500b00b060773dd7f4c04d9a9da9c22dc3.zip |
[observer] Remove system from memory graph
It is confusing we have total and system is total - processes
Diffstat (limited to 'lib/observer')
-rw-r--r-- | lib/observer/src/observer_perf_wx.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/observer/src/observer_perf_wx.erl b/lib/observer/src/observer_perf_wx.erl index 0de9785fb9..fa867e12f6 100644 --- a/lib/observer/src/observer_perf_wx.erl +++ b/lib/observer/src/observer_perf_wx.erl @@ -278,7 +278,7 @@ collect_data(?IO_W, {N, Q}) -> end. mem_types() -> - [total, processes, system, atom, binary, code, ets]. + [total, processes, atom, binary, code, ets]. lmax([]) -> 0; lmax(List) -> |