diff options
author | Dan Gudmundsson <[email protected]> | 2015-05-27 15:42:47 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2015-06-05 12:57:34 +0200 |
commit | 534a23c34d38a954610ac11329515a373efa008b (patch) | |
tree | 1cb6df58180a2126559db5d363e47fd05d2359f5 /lib/observer/src/cdv_dist_cb.erl | |
parent | 9b683f4bf98500f76a33f098879ee733790baa1f (diff) | |
download | otp-534a23c34d38a954610ac11329515a373efa008b.tar.gz otp-534a23c34d38a954610ac11329515a373efa008b.tar.bz2 otp-534a23c34d38a954610ac11329515a373efa008b.zip |
observer: cdv add more ets information
Info available from erl-18 nodes.
Diffstat (limited to 'lib/observer/src/cdv_dist_cb.erl')
-rw-r--r-- | lib/observer/src/cdv_dist_cb.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/observer/src/cdv_dist_cb.erl b/lib/observer/src/cdv_dist_cb.erl index f7e6c9aded..f45fb1f524 100644 --- a/lib/observer/src/cdv_dist_cb.erl +++ b/lib/observer/src/cdv_dist_cb.erl @@ -21,7 +21,7 @@ col_spec/0, get_info/1, get_detail_cols/1, - get_details/1, + get_details/2, detail_pages/0, format/1]). @@ -55,10 +55,10 @@ get_info(_) -> {Info,TW}. get_detail_cols(_) -> - {[?COL_CH,?COL_CTRL],true}. + {[{node, ?COL_CH},{port,?COL_CTRL}],true}. %% Callbacks for cdv_detail_wx -get_details(Id) -> +get_details(Id, _) -> case crashdump_viewer:node_info(Id) of {ok,Info,TW} -> Proplist = crashdump_viewer:to_proplist(record_info(fields,nod),Info), |