summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2014-07-30 12:33:30 +0100
committerSimon MacMullen <simon@rabbitmq.com>2014-07-30 12:33:30 +0100
commit5244c47c8422f280322c479794896d3df5f6478c (patch)
treede1b7468bec75210b4ed27ef36041df20ccf079e
parent5e1366a6732d1c58e03915d200a2d2ec674a1167 (diff)
downloadrabbitmq-server-bug26311.tar.gz
Try again, adding a module this time. Find stuck processes with heuristics.bug26311
-rw-r--r--src/rabbit_diagnostic.erl68
1 files changed, 68 insertions, 0 deletions
diff --git a/src/rabbit_diagnostic.erl b/src/rabbit_diagnostic.erl
new file mode 100644
index 00000000..5e6ea63c
--- /dev/null
+++ b/src/rabbit_diagnostic.erl
@@ -0,0 +1,68 @@
+%% The contents of this file are subject to the Mozilla Public License
+%% Version 1.1 (the "License"); you may not use this file except in
+%% compliance with the License. You may obtain a copy of the License
+%% at http://www.mozilla.org/MPL/
+%%
+%% Software distributed under the License is distributed on an "AS IS"
+%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+%% the License for the specific language governing rights and
+%% limitations under the License.
+%%
+%% The Original Code is RabbitMQ.
+%%
+%% The Initial Developer of the Original Code is GoPivotal, Inc.
+%% Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
+%%
+
+-module(rabbit_diagnostic).
+
+-export([maybe_stuck_processes/1]).
+
+maybe_stuck_processes(Timeout) ->
+ Pids = processes(),
+ io:format("There are ~p processes.~n", [length(Pids)]),
+ maybe_stuck_processes(Pids, Timeout).
+
+maybe_stuck_processes(Pids, Timeout) when Timeout =< 0 ->
+ io:format("Found ~p suspicious processes.~n", [length(Pids)]),
+ [io:format("~p~n", [{Pid, erlang:process_info(Pid),
+ erlang:process_info(Pid, current_stacktrace)}])
+ || Pid <- Pids],
+ ok;
+maybe_stuck_processes(Pids, Timeout) ->
+ Pids2 = [P || P <- Pids, looks_stuck(P)],
+ io:format("Investigated ~p processes this round, ~pms to go.~n",
+ [length(Pids2), Timeout]),
+ timer:sleep(100),
+ maybe_stuck_processes(Pids2, Timeout - 100).
+
+looks_stuck(Pid) ->
+ case process_info(Pid, status) of
+ {status, waiting} ->
+ case erlang:process_info(Pid, current_stacktrace) of
+ {current_stacktrace, [H|_]} ->
+ maybe_stuck_stacktrace(H);
+ _ ->
+ false
+ end;
+ _ ->
+ false
+ end.
+
+maybe_stuck_stacktrace({gen_server2, process_next_msg, _}) -> false;
+maybe_stuck_stacktrace({gen_event, fetch_msg, _}) -> false;
+maybe_stuck_stacktrace({prim_inet, accept0, _}) -> false;
+maybe_stuck_stacktrace({prim_inet, recv0, _}) -> false;
+maybe_stuck_stacktrace({rabbit_heartbeat, heartbeater, _}) -> false;
+maybe_stuck_stacktrace({rabbit_net, recv, _}) -> false;
+maybe_stuck_stacktrace({mochiweb_http, request, _}) -> false;
+maybe_stuck_stacktrace({group, _, _}) -> false;
+maybe_stuck_stacktrace({shell, _, _}) -> false;
+maybe_stuck_stacktrace({io, _, _}) -> false;
+maybe_stuck_stacktrace({M, F, A, _}) ->
+ maybe_stuck_stacktrace({M, F, A});
+maybe_stuck_stacktrace({_M, F, _A}) ->
+ case string:str(atom_to_list(F), "loop") of
+ 0 -> true;
+ _ -> false
+ end.