summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2015-10-29 00:41:56 +0900
committerMichael Klishin <michael@clojurewerkz.org>2015-10-29 00:41:56 +0900
commita4611b899fe226f6b586af06653f5ed8ebca6d8d (patch)
treeeec12646ebcf99d721d1cf245a3ad9966e6ff090 /src
parent7bb08766c651eb5ae794b61eba84962cd45d4b62 (diff)
downloadrabbitmq-server-git-a4611b899fe226f6b586af06653f5ed8ebca6d8d.tar.gz
Doc edits
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_alarm.erl11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/rabbit_alarm.erl b/src/rabbit_alarm.erl
index ce3893240e..22b334b784 100644
--- a/src/rabbit_alarm.erl
+++ b/src/rabbit_alarm.erl
@@ -13,13 +13,14 @@
%% The Initial Developer of the Original Code is GoPivotal, Inc.
%% Copyright (c) 2007-2015 Pivotal Software, Inc. All rights reserved.
%%
-%% @doc There are two types of alarms handled by this module:
-%% - per-node resource (disk, memory) alarms for whole cluster. If any node
-%% has any alarm, then all publishing should be disabled througout the
-%% cluster until every alarm clears. When some nodes sets such an alarm,
+%% There are two types of alarms handled by this module:
+%%
+%% * per-node resource (disk, memory) alarms for the whole cluster. If any node
+%% has an alarm, then all publishing should be disabled througout the
+%% cluster until all alarms clear. When some nodes sets such an alarm,
%% this information is automatically propagated through whole cluster.
%% `#alarms.alarmed_nodes' is being used to track this type of alarms.
-%% - limits local to this node (file_descriptor_limit). Used for information
+%% * limits local to this node (file_descriptor_limit). Used for information
%% purposes only - logging and getting node status. No cluster-wide propagation
%% of this info happens. `#alarms.alarms' is being used to track this type of alarms.
%% @end