Skip to content

Commit d3be8f9

Browse files
Management plugin: recommend rabbitmqadmin v2
(cherry picked from commit 4d04852)
1 parent 165bf30 commit d3be8f9

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

deps/rabbitmq_management/bin/rabbitmqadmin

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,11 @@ def title(name):
212212

213213

214214
def subcommands_usage():
215-
usage = """Usage
215+
usage = """
216+
IMPORTANT: this version of 'rabbitmqadmin' is no longer actively maintained.
217+
See https://www.rabbitmq.com/docs/management-cli.
218+
219+
Usage
216220
=====
217221
""" + short_usage() + """
218222
@@ -241,12 +245,20 @@ def subcommands_usage():
241245
standard output along with the message metadata
242246
243247
* If payload_file is specified on get, count must not be set
248+
249+
IMPORTANT: this version of 'rabbitmqadmin' is no longer actively maintained.
250+
See https://www.rabbitmq.com/docs/management-cli.
244251
"""
245252
return usage
246253

247254

248255
def config_usage():
249-
usage = "Usage\n=====\n" + short_usage()
256+
usage = """
257+
IMPORTANT: this version of 'rabbitmqadmin' is no longer actively maintained.
258+
See https://www.rabbitmq.com/docs/management-cli.
259+
"""
260+
261+
usage += "Usage\n=====\n" + short_usage()
250262
usage += "\n" + title("Configuration File")
251263
usage += """ It is possible to specify a configuration file from the command line.
252264
Hosts can be configured easily in a configuration file and called
@@ -277,6 +289,10 @@ def config_usage():
277289
"""
278290
usage += title("Use")
279291
usage += """ rabbitmqadmin -c rabbitmqadmin.conf.example -N host_normal ..."""
292+
usage += """
293+
IMPORTANT: this version of 'rabbitmqadmin' is no longer actively maintained.
294+
See https://www.rabbitmq.com/docs/management-cli.
295+
"""
280296
return usage
281297

282298

@@ -289,6 +305,9 @@ For more help use the help subcommand:
289305
290306
rabbitmqadmin help subcommands # For a list of available subcommands
291307
rabbitmqadmin help config # For help with the configuration file
308+
309+
IMPORTANT: this version of 'rabbitmqadmin' is no longer actively maintained.
310+
See https://www.rabbitmq.com/docs/management-cli.
292311
"""
293312

294313

deps/rabbitmq_management/priv/www/api/index.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,17 @@ <h2>Introduction</h2>
6666
<p>Most of the GET queries return many fields per
6767
object. The second part of this guide covers those.</p>
6868

69+
<h2>rabbitmqadmin</h2>
70+
<p>
71+
While the HTTP API can be used directly (with <code>curl</code>, <code>xh</code> and similar tools),
72+
for most day-to-day operations the recommended option is <a href="https://www.rabbitmq.com/docs/management-cli">rabbitmqadmin</a>.
73+
</p>
74+
75+
<h2>Client Libraries</h2>
76+
<p>
77+
<a href="https://www.rabbitmq.com/client-libraries/devtools">Client libraries for the HTTP API</a> are available for many programming languages.
78+
</p>
79+
6980
<h2>Examples</h2>
7081

7182
<p>A few quick examples for Windows and Unix, using the command line

0 commit comments

Comments
 (0)