Generate a Debug Bundle with rpk in Linux
Use rpk to generate a debug bundle on a Redpanda cluster running in Linux.
To generate a debug bundle with rpk, you have two options depending on your needs:
-
Use
rpk debug bundle: Run this command directly on each broker in the cluster. This method requires access to the nodes your brokers are running on. -
Use
rpk debug remote-bundle: Run this command from a remote machine to collect diagnostics data from all brokers in the cluster. This method is ideal when you want to gather data without logging into each node individually.
Prerequisites
You must have rpk installed on your host machine.
Use rpk debug bundle
To generate a debug bundle with rpk, you can run the rpk debug bundle command on each broker in the cluster.
-
Execute the
rpk debug bundlecommand on a broker:rpk debug bundleIf you have an upload URL from the Redpanda support team, provide it in the
--upload-urlflag to upload your debug bundle to Redpanda.rpk debug bundle \ --upload-url <url>Example output:
Creating bundle file... Debug bundle saved to "/var/lib/redpanda/1675440652-bundle.zip"
-
On your host machine, make a directory in which to save the debug bundle:
mkdir debug-bundle -
Copy the debug bundle ZIP file to the
debug-bundledirectory on your host machine. -
Unzip the file on your host machine and use it to debug your cluster.
cd debug-bundle unzip <bundle-name>.zipFor guidance on reading the debug bundle, see Inspect a Debug Bundle.
-
Remove the debug bundle from the Redpanda broker:
rm /var/lib/redpanda/<bundle-name>.zip
When you’ve finished troubleshooting, remove the debug bundle from your host machine:
rm -r debug-bundle
Use rpk debug remote-bundle
The rpk debug remote-bundle command allows you to remotely generate a consolidated debug bundle from all brokers in your cluster. This command is useful when you do not want to log into each broker’s node individually using rpk debug bundle.
-
Create an
rpkprofile to connect to your cluster. Include all brokers you want to collect data from in theadmin.hostsconfiguration.rpk profile create <profile-name> --set admin.hosts=<brokers> -
Check the configured addresses in your profile:
rpk profile printExample output:
profile.ymladmin: hosts: - broker1:9644 - broker2:9644 - broker3:9644 -
Start the debug bundle process:
rpk debug remote-bundle startTo skip the confirmation steps, use the
--no-confirmflag.To generate a bundle for a subset of brokers, use the
-X admin.hostsflag. For example,rpk debug remote-bundle start -X admin.hosts target-broker:9644. -
Check the status:
rpk debug remote-bundle statusExample output:
BROKER STATUS JOB-ID localhost:29644 running 7f93fd6e-fc5e-46a5-8842-717542f89e59 localhost:19644 running 7f93fd6e-fc5e-46a5-8842-717542f89e59
When the status changes to
success, the process is complete.To cancel a debug bundle process while it’s running, use rpk debug remote-bundle cancel. -
When the process is complete, download the debug bundle:
rpk debug remote-bundle downloadBy default the compressed file is downloaded to your current working directory. To choose a different location or filename, use the
--outputflag. For example:rpk debug remote-bundle download --output ~/redpanda/debug-bundles/cluster1This command results in
cluster1.zipdownloaded to the~/redpanda/debug-bundles/directory.
Unzip the file and use the contents to debug your cluster. For guidance on reading the debug bundle, see Inspect a Debug Bundle.
Configure the debug_bundle_auto_removal_seconds property to automatically remove debug bundles after a period of time. See Automatically remove debug bundles.
|