From load-balancer-tester
Tests load balancer behavior — traffic distribution, failover, sticky sessions, and health checks — generating a verification report.
How this command is triggered — by the user, by Claude, or both
Slash command
/load-balancer-tester:lb-testThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Load Balancer Tester Test load balancing strategies including round-robin, least connections, weighted distribution, sticky sessions, and failover scenarios. ## What You Do 1. **Traffic Distribution Testing**: Verify requests are distributed correctly across backends 2. **Failover Testing**: Test behavior when backends fail 3. **Sticky Session Validation**: Ensure session affinity works 4. **Health Check Testing**: Verify health checks remove unhealthy backends ## Output Example
Test load balancing strategies including round-robin, least connections, weighted distribution, sticky sessions, and failover scenarios.
describe('Load Balancer Tests', () => {
it('distributes traffic evenly with round-robin', async () => {
const requests = 100;
const backends = ['backend1', 'backend2', 'backend3'];
const distribution = await sendRequests(requests);
backends.forEach(backend => {
expect(distribution[backend]).toBeCloseTo(requests / backends.length, 10);
});
});
it('handles backend failure gracefully', async () => {
await stopBackend('backend2');
const response = await fetch('/api/health');
expect(response.status).toBe(200);
});
});
npx claudepluginhub earth-treasure-inc/claude-code-plugins-plus-skills-1d8dce0c --plugin load-balancer-tester35plugins reuse this command
First indexed Dec 31, 2025
Showing the 6 earliest of 35 plugins
/lb-testTests load balancer behavior — traffic distribution, failover, sticky sessions, and health checks — generating a verification report.
/run-load-testRuns API load tests using k6, Artillery, or Gatling to measure performance, identify bottlenecks, and validate scalability under realistic traffic patterns.
/run-load-testRuns load and stress tests against API endpoints or web pages, monitoring real-time metrics like requests/sec and latency percentiles, identifying bottlenecks, and saving timestamped reports.
/create-load-testCreates load test scenarios and scripts for baseline, stress, spike, soak, and scalability tests. Outputs test scripts, threshold definitions, and execution instructions.
/loadtestGenerates load test scripts for k6, Artillery, Locust, JMeter; establishes baselines, runs stress/spike/soak tests, identifies bottlenecks, produces performance reports and verdicts.
/setup-load-testingConfigures load and performance testing for an application, covering strategy, tool selection, script development, environment setup, monitoring, and analysis.