NBomber icon indicating copy to clipboard operation
NBomber copied to clipboard

[Cluster] Add Manual Cluster

Open AntyaDev opened this issue 1 year ago • 0 comments

  • AgentsCount - should be mandatory
  • Agent should stop after the session (by default)
{
    "TestSuite": "my test suite",
    "TestName": "my test",

    "ClusterSettings": {

        "ManualCluster": {
            "ClusterId": "test_cluster",
            "NATSServerURL": "nats://localhost",

            "Coordinator": {
                "TargetScenarios": ["test_scenario"]
            },

            "Agent": {
                "AgentGroups": [
                    { "Group": "1", "TargetScenarios": ["test_scenario_1"] },
                    { "Group": "2", "TargetScenarios": ["test_scenario_2"] }
                ],
                
                "AgentsCount": 1
            }
        }

    }    
}

AntyaDev avatar Aug 23 '23 16:08 AntyaDev