Track message queue lengths of all registered pids
Simple update that reports the message queue lengths of every registered
process.
BugzId: 13797
Conflicts:
src/chttpd_misc.erl
Project: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/commit/52efee88
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/tree/52efee88
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/diff/52efee88
Branch: refs/heads/import
Commit: 52efee88821af5fdfeed236b9e3da111be8a1a22
Parents: dde7fe7
Author: Paul J. Davis <[email protected]>
Authored: Mon May 28 14:16:56 2012 -0500
Committer: Robert Newson <[email protected]>
Committed: Tue Mar 5 20:18:20 2013 -0600
----------------------------------------------------------------------
src/chttpd_misc.erl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/blob/52efee88/src/chttpd_misc.erl
----------------------------------------------------------------------
diff --git a/src/chttpd_misc.erl b/src/chttpd_misc.erl
index 16dbbea..e743d31 100644
--- a/src/chttpd_misc.erl
+++ b/src/chttpd_misc.erl
@@ -280,7 +280,7 @@ handle_system_req(Req) ->
{os_proc_count, couch_proc_manager:get_proc_count()},
{process_count, erlang:system_info(process_count)},
{process_limit, erlang:system_info(process_limit)},
- {message_queues, message_queues([couch_server, rexi_server])},
+ {message_queues, message_queues(registered())},
{distribution, {get_distribution_stats()}}
]}).