We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Azure/azure-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
LoadTestConfiguration.cs•1.1 KiB
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Text.Json.Serialization;
namespace AzureMcp.LoadTesting.Models.LoadTest;
public class LoadTestConfiguration
{
/// <summary>
/// Gets or sets the number of test engine instances to use. Default is 1.
/// </summary>
[JsonPropertyName("engineInstances")]
public int EngineInstances { get; set; } = 1;
/// <summary>
/// Gets or sets whether to split all CSV files across engine instances. Default is false.
/// </summary>
[JsonPropertyName("splitAllCSVs")]
public bool SplitAllCSVs { get; set; } = false;
/// <summary>
/// Gets or sets whether this is a quick start test (URL-based test). Default is false.
/// </summary>
[JsonPropertyName("quickStartTest")]
public bool QuickStartTest { get; set; } = false;
/// <summary>
/// Gets or sets optional load test configuration parameters (virtual users, duration, etc.).
/// </summary>
[JsonPropertyName("optionalLoadTestConfig")]
public OptionalLoadTestConfig? OptionalLoadTestConfig { get; set; } = null;
}