diff options
author | Siri Hansen <[email protected]> | 2016-12-06 11:59:37 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2016-12-06 11:59:37 +0100 |
commit | 86233038e1d49adb6387b810a7ba2487b15d6a02 (patch) | |
tree | 3898609a5c3fc27f1401231a2797690017ac903d /lib/observer/src/observer_procinfo.erl | |
parent | 7c67fe20af71a08e5217306dfcff822701b45222 (diff) | |
parent | e8e4de181fffe44f6bafa72c45bd79ca5811abd4 (diff) | |
download | otp-86233038e1d49adb6387b810a7ba2487b15d6a02.tar.gz otp-86233038e1d49adb6387b810a7ba2487b15d6a02.tar.bz2 otp-86233038e1d49adb6387b810a7ba2487b15d6a02.zip |
Merge branch 'siri/observer/more-port-info/ERL-272/OTP-13948' into maint
* siri/observer/more-port-info/ERL-272/OTP-13948:
[observer] Fix update of range in memory allocator graphs
[observer] Add more port information
[observer] Show monitored ports in process details view
Diffstat (limited to 'lib/observer/src/observer_procinfo.erl')
-rw-r--r-- | lib/observer/src/observer_procinfo.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/observer/src/observer_procinfo.erl b/lib/observer/src/observer_procinfo.erl index 620979dcc9..c13b164ff9 100644 --- a/lib/observer/src/observer_procinfo.erl +++ b/lib/observer/src/observer_procinfo.erl @@ -434,7 +434,7 @@ get_gc_info(Arg) -> filter_monitor_info() -> fun(Data) -> Ms = proplists:get_value(monitors, Data), - [Pid || {process, Pid} <- Ms] + [Id || {_Type, Id} <- Ms] % Type is process or port end. stringify_bins(Data) -> |