1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
## This Source Code Form is subject to the terms of the Mozilla Public
## License, v. 2.0. If a copy of the MPL was not distributed with this
## file, You can obtain one at https://mozilla.org/MPL/2.0/.
##
## Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
defmodule RabbitMQ.CLI.Diagnostics.Commands.AlarmsCommand do
@moduledoc """
Displays all alarms reported by the target node.
Returns a code of 0 unless there were connectivity and authentication
errors. This command is not meant to be used in health checks.
"""
import RabbitMQ.CLI.Core.Platform, only: [line_separator: 0]
import RabbitMQ.CLI.Core.Alarms
@behaviour RabbitMQ.CLI.CommandBehaviour
use RabbitMQ.CLI.Core.AcceptsDefaultSwitchesAndTimeout
use RabbitMQ.CLI.Core.MergesNoDefaults
use RabbitMQ.CLI.Core.AcceptsNoPositionalArguments
use RabbitMQ.CLI.Core.RequiresRabbitAppRunning
def run([], %{node: node_name, timeout: timeout}) do
# Example response when there are alarms:
#
# [
# file_descriptor_limit,
# {{resource_limit,disk,hare@warp10},[]},
# {{resource_limit,memory,hare@warp10},[]},
# {{resource_limit,disk,rabbit@warp10},[]},
# {{resource_limit,memory,rabbit@warp10},[]}
# ]
#
# The topmost file_descriptor_limit alarm is node-local.
:rabbit_misc.rpc_call(node_name, :rabbit_alarm, :get_alarms, [], timeout)
end
def output([], %{node: node_name, formatter: "json"}) do
{:ok, %{"result" => "ok", "node" => node_name, "alarms" => []}}
end
def output([], %{node: node_name}) do
{:ok, "Node #{node_name} reported no alarms, local or clusterwide"}
end
def output(alarms, %{node: node_name, formatter: "json"}) do
local = local_alarms(alarms, node_name)
global = clusterwide_alarms(alarms, node_name)
{:ok,
%{
"result" => "ok",
"local" => alarm_lines(local, node_name),
"global" => alarm_lines(global, node_name),
"message" => "Node #{node_name} reported alarms"
}}
end
def output(alarms, %{node: node_name}) do
lines = alarm_lines(alarms, node_name)
{:ok, Enum.join(lines, line_separator())}
end
use RabbitMQ.CLI.DefaultOutput
def help_section(), do: :observability_and_health_checks
def description(),
do: "Lists resource alarms (local or cluster-wide) in effect on the target node"
def usage, do: "alarms"
def banner([], %{node: node_name}) do
"Asking node #{node_name} to report any known resource alarms ..."
end
end
|