Only expose message_size_stats command to rabbitmq-diagnostics

The whole point of introducing rabbitmq-diagnostics,
rabbitmq-queues, rabbitmq-streams is to stop
growing the ctl command list, which has been massive
even five years ago.
This commit is contained in:
Michael Klishin 2025-09-23 23:15:21 -04:00
parent 4b7230b075
commit 42e99ddf2a
No known key found for this signature in database
GPG Key ID: 16AB14D00D613900
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ defmodule RabbitMQ.CLI.Diagnostics.Commands.MessageSizeStatsCommand do
@default_timeout 60_000
def scopes(), do: [:ctl, :diagnostics]
def scopes(), do: [:diagnostics]
def switches(), do: [timeout: :integer]
def aliases(), do: [t: :timeout]