Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>VEDA: VSCode Event-Driven AutoscalingNew to Visual Studio Code? Get it now.
VEDA: VSCode Event-Driven Autoscaling

VEDA: VSCode Event-Driven Autoscaling

RedbeardedDev

|
13 installs
| (0) | Free
Automate debugging based on incoming events.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

VEDA: VSCode Event-Driven Autoscaling

Overview

VEDA: VSCode Event-Driven Autoscaling is a powerful Visual Studio Code extension designed to enhance your development workflow by automating debugging sessions based on various events. Whether you're developing microservices or working on complex projects, this extension helps you streamline your debugging process by automatically launching the appropriate debug configurations.

Supported Event Drivers

  • Filesystem: Automatically start a debug session when a new file with a specified extension appears in a monitored directory.
  • RabbitMQ: Launch a debug session when a message is received in a specified RabbitMQ queue.

Configuration

Add the following settings to your workspace's settings.json file to configure each of the scalers:

Generic Configurations

  • veda.maxparallelism Defines the max number of concurrent debug sessions per scaler to run

In addition to generic configurations, each scalar will have its own settings to manage connection strings, locations, etc. All will be prefaced with veda. and the the scaler name listed in Supported Event Drivers.

File Watcher Configuration

{
    "veda.filesystem.filepath": "/tmp",
    "veda.filesystem.filters": [".txt"],
    "veda.filesystem.pollingInterval": 1000
}

RabbitMQ Configuration

{
    "veda.rabbitmq.connectionString": "amqp://guest:guest@localhost:5672",
    "veda.rabbitmq.queueName": "test",
    "veda.rabbitmq.pollingInterval": 5000
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft