Cluster Overview

Run distributed load and merge stats into one coordinated report.

Coordinator and Agents

Control node behavior via node type and target scenario selection.

Feature Usage Samples

How to use snippets for Cluster Overview.

Switch between C#, Java, Python, TypeScript, and JavaScript to see the native SDK shape for this sample.

Licensing note: every runnable sample requires a valid runner key via WithRunnerKey("...") or config key LoadStrike:RunnerKey.

Coordinator Setup

LoadStrikeRunner
    .RegisterScenarios(apiScenario, streamScenario)
    .WithNodeType(LoadStrikeNodeType.Coordinator)
    .WithClusterId("orders-cluster")
    .WithAgentGroup("perf-agents")
    .WithAgentsCount(3)
    .WithRunnerKey("rkr_your_remote_runner_key")
    .Run();

Cluster Roles

Coordinator

Orchestrates the run, distributes work to agents, and merges all node statistics into the final result.

Agent

Executes the assigned scenarios and streams its partial results back to the coordinator.

Diagram

Cluster orchestration visual
Coordinator and agents execute distributed workloads and merge node statistics into one run report.