Rabbitrace is a Visual Studio Code extension to help developers manage and monitor RabbitMQ queues and exchanges. You can find the extension available here.
Step 1. Install the Rabbitrace extension for Visual Studio Code
Step 2. Click on the Rabbitrace icon in the side panel OR run the following command Rabbitrace: Create Connection
Step 3 Create a connection to your RabbitMQ instance and manage your exchanges/queues from VSCode
Command | Description |
---|---|
Rabbitrace: Create Connection | Opens a new Rabbitrace tab to create a connection to RabbitMQ |
Contributions are always welcome!
yarn install
F5
to open a new window with your extension loaded.Ctrl+Shift+P
or Cmd+Shift+P
on Mac) and typing Rabbitrace: Create Connection
.package.json
- this is the manifest file in which you declare your extension and command. The plugin registers a command and defines its title and command name. With this information VS Code can show the command in the command palette.src/webview
: folder where you will find entire React codesrc/extension.ts
: this is the main file where you will provide the implementation of your command. The file exports one function, activate
, which is called the very first time your extension is activated (in this case by executing the command). Inside the activate
function we call registerCommand
. We pass the function containing the implementation of the command as the second parameter to registerCommand
.src/exchanges.ts
, src/queues.ts
and src/connections.ts
: these are the files where you will define the Exchanges, Queues and Connections tree views respectively.src/extension.ts
.Ctrl+R
or Cmd+R
on Mac) the VS Code window with your extension to load your changes.