diff --git a/src/load/HISTORY.rst b/src/load/HISTORY.rst index e6fb66119d2..5f0327e4134 100644 --- a/src/load/HISTORY.rst +++ b/src/load/HISTORY.rst @@ -4,6 +4,11 @@ Release History =============== +1.6.0 +++++++ +* Add support for engine reference identity using CLI. Engine reference identity can be set using `--engine-ref-id-type` and `--engine-ref-ids` argument in 'az load test create' and 'az load test update' commands. Engine reference identity set in YAML config file under key `referenceIdentities` with `kind` as `Engine` will also be honoured. + + 1.5.0 ++++++ * Add support for Locust based load tests. diff --git a/src/load/azext_load/data_plane/load_test/custom.py b/src/load/azext_load/data_plane/load_test/custom.py index 8ea2ab27554..e267725df6a 100644 --- a/src/load/azext_load/data_plane/load_test/custom.py +++ b/src/load/azext_load/data_plane/load_test/custom.py @@ -56,6 +56,8 @@ def create_test( autostop_error_rate=None, autostop_error_rate_time_window=None, regionwise_engines=None, + engine_ref_id_type=None, + engine_ref_ids=None, ): client = get_admin_data_plane_client(cmd, load_test_resource, resource_group_name) logger.info("Create test has started for test ID : %s", test_id) @@ -91,6 +93,8 @@ def create_test( disable_public_ip=disable_public_ip, autostop_criteria=autostop_criteria, regionwise_engines=regionwise_engines, + engine_ref_id_type=engine_ref_id_type, + engine_ref_ids=engine_ref_ids, ) else: yaml = load_yaml(load_test_config_file) @@ -119,6 +123,8 @@ def create_test( disable_public_ip=disable_public_ip, autostop_criteria=autostop_criteria, regionwise_engines=regionwise_engines, + engine_ref_id_type=engine_ref_id_type, + engine_ref_ids=engine_ref_ids, ) logger.debug("Creating test with test ID: %s and body : %s", test_id, body) response = client.create_or_update_test(test_id=test_id, body=body) @@ -158,6 +164,8 @@ def update_test( autostop_error_rate=None, autostop_error_rate_time_window=None, regionwise_engines=None, + engine_ref_id_type=None, + engine_ref_ids=None, ): client = get_admin_data_plane_client(cmd, load_test_resource, resource_group_name) logger.info("Update test has started for test ID : %s", test_id) @@ -191,6 +199,8 @@ def update_test( disable_public_ip=disable_public_ip, autostop_criteria=autostop_criteria, regionwise_engines=regionwise_engines, + engine_ref_id_type=engine_ref_id_type, + engine_ref_ids=engine_ref_ids, ) else: body = create_or_update_test_without_config( @@ -208,6 +218,8 @@ def update_test( disable_public_ip=disable_public_ip, autostop_criteria=autostop_criteria, regionwise_engines=regionwise_engines, + engine_ref_id_type=engine_ref_id_type, + engine_ref_ids=engine_ref_ids ) logger.info("Updating test with test ID: %s", test_id) response = client.create_or_update_test(test_id=test_id, body=body) diff --git a/src/load/azext_load/data_plane/load_test/help.py b/src/load/azext_load/data_plane/load_test/help.py index fb1832309fd..897a1ef150b 100644 --- a/src/load/azext_load/data_plane/load_test/help.py +++ b/src/load/azext_load/data_plane/load_test/help.py @@ -19,7 +19,7 @@ az load test create --load-test-resource sample-alt-resource --resource-group sample-rg --test-id sample-test-id --load-test-config-file ~/resources/sample-config.yaml - name: Create a test with arguments. text: | - az load test create --test-id sample-test-id --load-test-resource sample-alt-resource --resource-group sample-rg --display-name "Sample Name" --description "Test description" --test-plan sample-jmx.jmx --engine-instances 1 --env rps=2 count=1 + az load test create --test-id sample-test-id --load-test-resource sample-alt-resource --resource-group sample-rg --display-name "Sample Name" --description "Test description" --test-plan sample-jmx.jmx --engine-instances 1 --env rps=2 count=1 --engine-ref-id-type SystemAssigned - name: Create a test with load test config file and override engine-instance and env using arguments and don't wait for file upload. text: | az load test create --load-test-resource sample-alt-resource --resource-group sample-rg --test-id sample-test-id --load-test-config-file ~/resources/sample-config.yaml --engine-instances 1 --env rps=2 count=1 --no-wait @@ -46,6 +46,9 @@ - name: Create a Locust based load test text: | az load test create --test-id sample-test-id --load-test-resource sample-alt-resource --resource-group sample-rg --test-plan ~/resources/sample-locust-file.py --test-type Locust --env LOCUST_HOST="https://azure.microsoft.com" LOCUST_SPAWN_RATE=0.3 LOCUST_RUN_TIME=120 LOCUST_USERS=4 + - name: Create a test with user assigned Managed Identity reference for engine. + text: | + az load test create --test-id sample-test-id --load-test-resource sample-alt-resource --resource-group sample-rg --display-name "Sample Name" --engine-ref-id-type UserAssigned --engine-ref-ids "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi" """ helps[ @@ -97,6 +100,9 @@ - name: Update multi-region load configuration. text: | az load test update --load-test-resource sample-alt-resource --resource-group sample-rg --test-id sample-existing-test-id --engine-instances 5 --regionwise-engines eastus=2 westus2=1 eastasia=2 + - name: Update a test with user assigned Managed Identity reference for engine to SystemAssigned. + text: | + az load test update --test-id sample-test-id --load-test-resource sample-alt-resource --resource-group sample-rg --display-name "Sample Name" --engine-ref-id-type SystemAssigned """ helps[ diff --git a/src/load/azext_load/data_plane/load_test/params.py b/src/load/azext_load/data_plane/load_test/params.py index 37e376a62bc..88addb97b36 100644 --- a/src/load/azext_load/data_plane/load_test/params.py +++ b/src/load/azext_load/data_plane/load_test/params.py @@ -34,6 +34,8 @@ def load_arguments(self, _): c.argument("autostop_error_rate", argtypes.autostop_error_rate) c.argument("autostop_error_rate_time_window", argtypes.autostop_error_rate_time_window) c.argument("regionwise_engines", argtypes.regionwise_engines) + c.argument("engine_ref_id_type", argtypes.engine_ref_id_type) + c.argument("engine_ref_ids", argtypes.engine_ref_ids) with self.argument_context("load test update") as c: c.argument("load_test_config_file", argtypes.load_test_config_file) @@ -55,6 +57,8 @@ def load_arguments(self, _): c.argument("autostop_error_rate", argtypes.autostop_error_rate) c.argument("autostop_error_rate_time_window", argtypes.autostop_error_rate_time_window) c.argument("regionwise_engines", argtypes.regionwise_engines) + c.argument("engine_ref_id_type", argtypes.engine_ref_id_type) + c.argument("engine_ref_ids", argtypes.engine_ref_ids) with self.argument_context("load test set-baseline") as c: c.argument("test_run_id", argtypes.test_run_id) diff --git a/src/load/azext_load/data_plane/utils/argtypes.py b/src/load/azext_load/data_plane/utils/argtypes.py index edfa51416d4..1d08a7afe26 100644 --- a/src/load/azext_load/data_plane/utils/argtypes.py +++ b/src/load/azext_load/data_plane/utils/argtypes.py @@ -392,6 +392,23 @@ help="Specify the engine count for each region in the format: region1=engineCount1 region2=engineCount2 .... Use region names in the format accepted by Azure Resource Manager (ARM). Ensure the regions are supported by Azure Load Testing. Multi-region load tests can only target public endpoints.", ) +engine_ref_id_type = CLIArgumentType( + options_list=["--engine-ref-id-type"], + type=str, + completer=get_generic_completion_list( + utils.get_enum_values(models.EngineIdentityType) + ), + choices=utils.get_enum_values(models.EngineIdentityType), + help="Type of identity to be configured for the engine.", +) + +engine_ref_ids = CLIArgumentType( + options_list=["--engine-ref-ids"], + nargs="+", + validator=validators.validate_engine_ref_ids, + help="Space separated list of fully qualified resource IDs of the managed identities to be configured on the engine. Required only for user assigned identities. ", +) + response_time_aggregate = CLIArgumentType( options_list=["--aggregation"], type=str, diff --git a/src/load/azext_load/data_plane/utils/constants.py b/src/load/azext_load/data_plane/utils/constants.py index 0887d09f5b1..f3e6e52b749 100644 --- a/src/load/azext_load/data_plane/utils/constants.py +++ b/src/load/azext_load/data_plane/utils/constants.py @@ -28,6 +28,11 @@ class LoadTestConfigKeys: REGION = "region" QUICK_START = "quickStartTest" SPLIT_CSV = "splitAllCSVs" + REFERENCE_IDENTITIES = "referenceIdentities" + ENGINE = "Engine" + TYPE = "type" + KIND = "kind" + VALUE = "value" @dataclass diff --git a/src/load/azext_load/data_plane/utils/models.py b/src/load/azext_load/data_plane/utils/models.py index ce954e1ccbf..60082d2e655 100644 --- a/src/load/azext_load/data_plane/utils/models.py +++ b/src/load/azext_load/data_plane/utils/models.py @@ -11,6 +11,12 @@ class IdentityType(str, Enum): UserAssigned = "UserAssigned" +class EngineIdentityType(str, Enum): + SystemAssigned = "SystemAssigned" + UserAssigned = "UserAssigned" + NoneValue = "None" + + class AllowedFileTypes(str, Enum): ADDITIONAL_ARTIFACTS = "ADDITIONAL_ARTIFACTS" JMX_FILE = "JMX_FILE" diff --git a/src/load/azext_load/data_plane/utils/utils.py b/src/load/azext_load/data_plane/utils/utils.py index b2a57b9882b..1842f5507ed 100644 --- a/src/load/azext_load/data_plane/utils/utils.py +++ b/src/load/azext_load/data_plane/utils/utils.py @@ -20,7 +20,7 @@ from azure.mgmt.core.tools import is_valid_resource_id, parse_resource_id from knack.log import get_logger -from .models import IdentityType, AllowedFileTypes, AllowedTestTypes, AllowedTestPlanFileExtensions +from .models import IdentityType, AllowedFileTypes, AllowedTestTypes, EngineIdentityType, AllowedTestPlanFileExtensions logger = get_logger(__name__) @@ -306,6 +306,8 @@ def load_yaml(file_path): ) from e +# pylint: disable=line-too-long +# Disabling this because dictionary key are too long def convert_yaml_to_test(cmd, data): new_body = {} if LoadTestConfigKeys.DISPLAY_NAME in data: @@ -337,8 +339,11 @@ def convert_yaml_to_test(cmd, data): new_body["passFailCriteria"] = utils_yaml_config.yaml_parse_failure_criteria(data=data) if data.get(LoadTestConfigKeys.AUTOSTOP) is not None: new_body["autoStopCriteria"] = utils_yaml_config.yaml_parse_autostop_criteria(data=data) + + utils_yaml_config.update_engine_reference_identity(new_body, data) logger.debug("Converted yaml to test body: %s", new_body) return new_body +# pylint: enable=line-too-long # pylint: disable=too-many-branches @@ -360,6 +365,8 @@ def create_or_update_test_with_config( disable_public_ip=None, autostop_criteria=None, regionwise_engines=None, + engine_ref_id_type=None, + engine_ref_ids=None, ): logger.info( "Creating a request body for create or update test using config and parameters." @@ -514,6 +521,20 @@ def create_or_update_test_with_config( "This can lead to incoming charges for an incorrectly configured test." ) + # if argument is provided prefer that over yaml values + if engine_ref_id_type: + validators.validate_engine_ref_ids_and_type(engine_ref_id_type, engine_ref_ids) + if engine_ref_id_type: + new_body["engineBuiltinIdentityType"] = engine_ref_id_type + if engine_ref_ids: + new_body["engineBuiltinIdentityIds"] = engine_ref_ids + elif yaml_test_body.get("engineBuiltinIdentityType"): + new_body["engineBuiltinIdentityType"] = yaml_test_body.get("engineBuiltinIdentityType") + new_body["engineBuiltinIdentityIds"] = yaml_test_body.get("engineBuiltinIdentityIds") + else: + new_body["engineBuiltinIdentityType"] = body.get("engineBuiltinIdentityType") + new_body["engineBuiltinIdentityIds"] = body.get("engineBuiltinIdentityIds") + logger.debug("Request body for create or update test: %s", new_body) return new_body @@ -537,6 +558,8 @@ def create_or_update_test_without_config( autostop_criteria=None, regionwise_engines=None, baseline_test_run_id=None, + engine_ref_id_type=None, + engine_ref_ids=None, ): logger.info( "Creating a request body for test using parameters and old test body (in case of update)." @@ -640,6 +663,21 @@ def create_or_update_test_without_config( ) new_body["baselineTestRunId"] = baseline_test_run_id if baseline_test_run_id else body.get("baselineTestRunId") + # pylint: disable=line-too-long + # Disabling this because dictionary key are too long + # raises error if engine_reference_identity_type and corresponding identities is not a valid combination + validators.validate_engine_ref_ids_and_type(engine_ref_id_type, engine_ref_ids, body.get("engineBuiltinIdentityType")) + if engine_ref_id_type: + new_body["engineBuiltinIdentityType"] = engine_ref_id_type + if engine_ref_ids: + new_body["engineBuiltinIdentityIds"] = engine_ref_ids + else: + new_body["engineBuiltinIdentityType"] = body.get("engineBuiltinIdentityType") + if engine_ref_ids and body.get("engineBuiltinIdentityType") != EngineIdentityType.UserAssigned: + raise InvalidArgumentValueError("Engine reference identities can only be provided when engine reference identity type is user assigned") + new_body["engineBuiltinIdentityIds"] = engine_ref_ids if engine_ref_ids else body.get("engineBuiltinIdentityIds") + # pylint: enable=line-too-long + logger.debug("Request body for create or update test: %s", new_body) return new_body diff --git a/src/load/azext_load/data_plane/utils/utils_yaml_config.py b/src/load/azext_load/data_plane/utils/utils_yaml_config.py index f5745313372..b825a09fac3 100644 --- a/src/load/azext_load/data_plane/utils/utils_yaml_config.py +++ b/src/load/azext_load/data_plane/utils/utils_yaml_config.py @@ -7,6 +7,8 @@ from azext_load.data_plane.utils.constants import LoadTestConfigKeys from azext_load.data_plane.utils import validators +from azext_load.data_plane.utils.models import EngineIdentityType +from azure.mgmt.core.tools import is_valid_resource_id from azure.cli.core.azclierror import ( InvalidArgumentValueError, ) @@ -137,3 +139,43 @@ def yaml_parse_loadtest_configuration(cmd, data): if data.get(LoadTestConfigKeys.SPLIT_CSV) is not None: load_test_configuration["splitAllCSVs"] = _yaml_parse_splitcsv(data=data) return load_test_configuration + + +# pylint: disable=line-too-long +# Disabling this because dictionary key are too long +def yaml_parse_engine_identities(data): + engine_identities = [] + reference_type = None + reference_identities = data.get(LoadTestConfigKeys.REFERENCE_IDENTITIES) + for identity in reference_identities: + if identity and identity.get(LoadTestConfigKeys.KIND) == LoadTestConfigKeys.ENGINE: + curr_ref_type = identity.get(LoadTestConfigKeys.TYPE) + curr_ref_value = identity.get(LoadTestConfigKeys.VALUE) + if reference_type and curr_ref_type != reference_type: + raise InvalidArgumentValueError( + "Engine identity type should be either None, SystemAssigned, or UserAssigned. A combination of identity types are not supported." + ) + if curr_ref_type != EngineIdentityType.UserAssigned: + if curr_ref_value: + raise InvalidArgumentValueError( + "Reference identity value should be provided only for UserAssigned identity type." + ) + else: + if not is_valid_resource_id(curr_ref_value): + raise InvalidArgumentValueError( + "%s is not a valid resource id" % curr_ref_value + ) + engine_identities.append(curr_ref_value) + reference_type = curr_ref_type + return reference_type, engine_identities + + +def update_engine_reference_identity(new_body, data): + if data.get(LoadTestConfigKeys.REFERENCE_IDENTITIES): + for identity in data[LoadTestConfigKeys.REFERENCE_IDENTITIES]: + if identity and identity.get(LoadTestConfigKeys.KIND) == LoadTestConfigKeys.ENGINE: + new_body["engineBuiltinIdentityType"], new_body["engineBuiltinIdentityIds"] = yaml_parse_engine_identities(data=data) + if new_body["engineBuiltinIdentityType"] in [EngineIdentityType.NoneValue, EngineIdentityType.SystemAssigned]: + new_body.pop("engineBuiltinIdentityIds") + break +# pylint: enable=line-too-long diff --git a/src/load/azext_load/data_plane/utils/validators.py b/src/load/azext_load/data_plane/utils/validators.py index d5eb2e9f5f3..c0055dc2d27 100644 --- a/src/load/azext_load/data_plane/utils/validators.py +++ b/src/load/azext_load/data_plane/utils/validators.py @@ -21,6 +21,7 @@ AllowedMetricNamespaces, AllowedTestTypes, AllowedTestPlanFileExtensions, + EngineIdentityType, ) logger = get_logger(__name__) @@ -522,3 +523,28 @@ def validate_regionwise_engines(cmd, namespace): ) regionwise_engines.append({"region": key.strip().lower(), "engineInstances": value}) namespace.regionwise_engines = regionwise_engines + + +def validate_engine_ref_ids(namespace): + """Extracts multiple space-separated identities""" + if isinstance(namespace.engine_ref_ids, list): + for item in namespace.engine_ref_ids: + if not is_valid_resource_id(item): + raise InvalidArgumentValueError(f"Invalid engine-ref-ids value: {item}") + + +def validate_engine_ref_ids_and_type(incoming_engine_ref_id_type, engine_ref_ids, exisiting_engine_ref_id_type=None): + """Validates combination of engine-ref-id-type and engine-ref-ids""" + + # if engine_ref_id_type is None or SystemAssigned, then no value for engine_ref_ids is expected: + engine_ref_id_type = incoming_engine_ref_id_type or exisiting_engine_ref_id_type + if engine_ref_id_type != EngineIdentityType.UserAssigned and engine_ref_ids: + raise InvalidArgumentValueError( + "engine-ref-ids should not be provided when engine-ref-id-type is None or SystemAssigned" + ) + + # If engine_ref_id_type is UserAssigned, then engine_ref_ids is expected. + if incoming_engine_ref_id_type == EngineIdentityType.UserAssigned and engine_ref_ids is None: + raise InvalidArgumentValueError( + "Atleast one engine-ref-ids should be provided when engine-ref-id-type is UserAssigned" + ) diff --git a/src/load/azext_load/tests/latest/constants.py b/src/load/azext_load/tests/latest/constants.py index 725431f1bd7..eb81b46a870 100644 --- a/src/load/azext_load/tests/latest/constants.py +++ b/src/load/azext_load/tests/latest/constants.py @@ -157,6 +157,18 @@ class LoadTestConstants(LoadConstants): DESCRIPTION = r"Sample_test_description" DISPLAY_NAME = r"Sample_test_display_name" + # Constants for Engine MI tests + ENGINE_REFERENCE_TYPE_USERASSIGNED = "UserAssigned" + ENGINE_REFERENCE_TYPE_SYSTEMASSIGNED = "SystemAssigned" + ENGINE_REFERENCE_TYPE_NONE = "None" + ENGINE_REFERENCE_ID1 = r"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi" + ENGINE_REFERENCE_ID2 = r"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi-2" + INVALID_ENGINE_REFERENCE_ID = r"/subscriptions/invalid/resource/id" + LOAD_TEST_CONFIG_FILE_WITH_SAMI_ENGINE = os.path.join(TEST_RESOURCES_DIR, r"config-engine-sami.yaml") + LOAD_TEST_CONFIG_FILE_WITH_UAMI_ENGINE = os.path.join(TEST_RESOURCES_DIR, r"config-engine-uami.yaml") + LOAD_TEST_CONFIG_FILE_WITH_INVALID_ENGINE_MI1 = os.path.join(TEST_RESOURCES_DIR, r"config-engine-invalid-mi1.yaml") + LOAD_TEST_CONFIG_FILE_WITH_INVALID_ENGINE_MI2 = os.path.join(TEST_RESOURCES_DIR, r"config-engine-invalid-mi2.yaml") + class LoadTestRunConstants(LoadConstants): # Metric constants diff --git a/src/load/azext_load/tests/latest/recordings/test_load_app_component.yaml b/src/load/azext_load/tests/latest/recordings/test_load_app_component.yaml index 36f1302b5af..c0520ab4043 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_app_component.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_app_component.yaml @@ -105,7 +105,8 @@ interactions: {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", "value": "540"}, "1013b456-3a10-4e3c-a48f-1ba9ad44740c": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,7 +115,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_advancedurl.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_advancedurl.yaml index 796a3ccd33e..6b02a3caea9 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_advancedurl.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_advancedurl.yaml @@ -14,7 +14,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -23,9 +23,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:19 GMT + - Wed, 26 Feb 2025 23:09:44 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D6DD40CDC97E4A769A9ECBEF3D0B28FD Ref B: MAA201060515049 Ref C: 2025-02-24T21:53:19Z' + - 'Ref A: E7C4E8FA2E8348A5A6F2D4D1D8FC7481 Ref B: MAA201060513037 Ref C: 2025-02-26T23:09:44Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -71,15 +71,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:53:20 GMT + - Wed, 26 Feb 2025 23:09:46 GMT mise-correlation-id: - - 08c2838b-13a2-44c2-a77b-bea83f3e1fb9 + - a961df56-956f-4bb1-b092-57765469965a strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215320Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000006yvr + - 20250226T230945Z-167c755789drsd6jhC1SG13zv4000000011000000000c455 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -93,7 +93,8 @@ interactions: body: '{"displayName": "loadtest-advanced-url-case", "kind": null, "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": {}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false}, - "autoStopCriteria": {}, "baselineTestRunId": null}' + "autoStopCriteria": {}, "baselineTestRunId": null, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -102,16 +103,16 @@ interactions: Connection: - keep-alive Content-Length: - - '310' + - '379' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:21.409Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:53:21.409Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:46.436Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:46.436Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -123,15 +124,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:21 GMT + - Wed, 26 Feb 2025 23:09:46 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview mise-correlation-id: - - 2e1dcb6c-b69f-4837-9868-f96746d903d9 + - 444f884a-3c00-4286-97e1-75c8392c1c85 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215320Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000006yxw + - 20250226T230946Z-167c755789drsd6jhC1SG13zv4000000011000000000c485 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -149,9 +150,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -168,13 +169,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:22 GMT + - Wed, 26 Feb 2025 23:09:46 GMT mise-correlation-id: - - 7068d2fe-8b33-4c4c-b0ea-83510abefa25 + - 628b10c3-c379-4bc3-b1b5-3bafaea706f0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215321Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000006z2t + - 20250226T230946Z-167c755789drsd6jhC1SG13zv4000000011000000000c4ae x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -192,12 +193,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:21.409Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:53:21.409Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:46.436Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:46.436Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -211,13 +212,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:22 GMT + - Wed, 26 Feb 2025 23:09:47 GMT mise-correlation-id: - - aa265c3d-a5c5-4e90-b377-1ac089b48246 + - 3679e57c-78b9-4a82-a641-ac8c7b72e591 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215322Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000006z57 + - 20250226T230946Z-167c755789drsd6jhC1SG13zv4000000011000000000c4bk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -240,7 +241,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -249,9 +250,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:23 GMT + - Wed, 26 Feb 2025 23:09:47 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -267,7 +268,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A6BDC2B8128D488E8CB3BA24AE6016E1 Ref B: MAA201060514033 Ref C: 2025-02-24T21:53:22Z' + - 'Ref A: 796834B43ABE49D1AC1591AA0F1CE243 Ref B: MAA201060516017 Ref C: 2025-02-26T23:09:47Z' status: code: 200 message: OK @@ -313,14 +314,14 @@ interactions: Content-Length: - '1447' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/1626477f-5c4b-4316-b036-c274c2b26868?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:03:24.8345715Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/f7fe37e5-4d5d-432a-8899-d2c2876056b5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A49Z&ske=2025-02-27T06%3A09%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:49.9207041Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -328,19 +329,19 @@ interactions: connection: - keep-alive content-length: - - '576' + - '578' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:24 GMT + - Wed, 26 Feb 2025 23:09:50 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview mise-correlation-id: - - 74c93838-e9ef-4f88-ac81-d1507b4b4fab + - 422a51d3-b909-4ec3-b9ff-f354e5bbc9c8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215323Z-r17775d4f98k7mk2hC1SG1n7700000000rtg0000000044gx + - 20250226T230948Z-r17775d4f98k7mk2hC1SG1n7700000000xx000000000af9r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -358,12 +359,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/1626477f-5c4b-4316-b036-c274c2b26868?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:03:25.1283091Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/f7fe37e5-4d5d-432a-8899-d2c2876056b5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:50.1940364Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -373,17 +374,17 @@ interactions: connection: - keep-alive content-length: - - '578' + - '576' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:25 GMT + - Wed, 26 Feb 2025 23:09:50 GMT mise-correlation-id: - - 55572062-55cd-4287-8d07-36213ee7ce9a + - 496be441-6fbe-49b8-aad8-ea91f6a5284e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215324Z-r17775d4f98k7mk2hC1SG1n7700000000rtg0000000044k0 + - 20250226T230950Z-r17775d4f98k7mk2hC1SG1n7700000000xx000000000afg7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -406,7 +407,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -415,9 +416,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:26 GMT + - Wed, 26 Feb 2025 23:09:50 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -433,7 +434,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7261222BA98544BF86F2DBA7025CD92F Ref B: MAA201060514025 Ref C: 2025-02-24T21:53:25Z' + - 'Ref A: E3847A7AB25640D0B8BD6BCBDCD00FE7 Ref B: MAA201060513029 Ref C: 2025-02-26T23:09:50Z' status: code: 200 message: OK @@ -449,9 +450,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: string: '' @@ -462,13 +463,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:53:27 GMT + - Wed, 26 Feb 2025 23:09:51 GMT mise-correlation-id: - - 81a5e98c-ed4d-4101-bbe6-f38f98f71be5 + - 12ffe9e4-8395-4578-9c79-f13befde47ab strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215326Z-r17775d4f98t9jlfhC1SG10apg000000082g00000000b08q + - 20250226T230951Z-r17775d4f989qmrnhC1SG1rde40000001apg00000000fm1u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -491,7 +492,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -500,9 +501,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:28 GMT + - Wed, 26 Feb 2025 23:09:52 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -518,7 +519,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EEBC15EA4C2C464E88229438906040E9 Ref B: MAA201060516019 Ref C: 2025-02-24T21:53:27Z' + - 'Ref A: DC2D0C9D201A4D93A82F93DDA4FF8F23 Ref B: MAA201060513023 Ref C: 2025-02-26T23:09:52Z' status: code: 200 message: OK @@ -564,14 +565,14 @@ interactions: Content-Length: - '1447' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview&fileType=URL_TEST_CONFIG + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview&fileType=URL_TEST_CONFIG response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/384ae3f9-5df5-4797-894f-fd0e21d4f787?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:03:28.9065908Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/c143e4d0-3354-4f8e-99ae-0f6770d2c65c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:19:53.9724739Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -579,19 +580,19 @@ interactions: connection: - keep-alive content-length: - - '570' + - '574' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:29 GMT + - Wed, 26 Feb 2025 23:09:54 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview mise-correlation-id: - - b5f34a1c-644b-481f-8671-f1588d1ebef8 + - 15f25148-5f1d-415a-b859-12d2ef0ce568 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215328Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000002rfr + - 20250226T230952Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000g80p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -609,12 +610,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/384ae3f9-5df5-4797-894f-fd0e21d4f787?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:03:29.1733734Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/c143e4d0-3354-4f8e-99ae-0f6770d2c65c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A49Z&ske=2025-02-27T06%3A09%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:19:54.2316854Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -628,56 +629,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:29 GMT - mise-correlation-id: - - b7151500-f5f2-43b5-971f-518f8aad4a70 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T215329Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000002rg9 - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/384ae3f9-5df5-4797-894f-fd0e21d4f787?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:03:34.4221415Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '570' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 21:53:34 GMT + - Wed, 26 Feb 2025 23:09:54 GMT mise-correlation-id: - - e9a19665-ce58-468d-95fe-6367e9db4746 + - 4f7285c2-574e-489f-b227-e11d2dfa1ae2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215334Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000002rt9 + - 20250226T230954Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000g85h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -695,12 +653,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/384ae3f9-5df5-4797-894f-fd0e21d4f787?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:03:39.6701614Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/c143e4d0-3354-4f8e-99ae-0f6770d2c65c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A49Z&ske=2025-02-27T06%3A09%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:19:59.503928Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -710,17 +668,17 @@ interactions: connection: - keep-alive content-length: - - '574' + - '569' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:39 GMT + - Wed, 26 Feb 2025 23:09:59 GMT mise-correlation-id: - - 2f4ad4c5-7927-4e2b-96b5-2f4910cd1d6f + - 856a8dbb-bb0c-4f93-b2ee-3174bf69b70a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215339Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000002s13 + - 20250226T230959Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000g8tc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -738,12 +696,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/384ae3f9-5df5-4797-894f-fd0e21d4f787?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:03:44.9227203Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/c143e4d0-3354-4f8e-99ae-0f6770d2c65c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:20:04.7915497Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -753,17 +711,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:45 GMT + - Wed, 26 Feb 2025 23:10:04 GMT mise-correlation-id: - - 0f745635-2a93-40dd-aaee-f4ce4ba17710 + - 83140cc5-fbd3-4353-b39c-cbb5b0b26233 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215344Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000002s9s + - 20250226T231004Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000g9by x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -781,12 +739,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/384ae3f9-5df5-4797-894f-fd0e21d4f787?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:03:50.1709909Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/c143e4d0-3354-4f8e-99ae-0f6770d2c65c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A10Z&ske=2025-02-27T06%3A10%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:20:10.8734605Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -800,13 +758,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:50 GMT + - Wed, 26 Feb 2025 23:10:10 GMT mise-correlation-id: - - b25e5888-4a59-4d8e-a3d5-d0c7b7c56d01 + - 9f1b5eb1-e13f-41ee-8b49-72c8c11f2051 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215350Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000002snd + - 20250226T231009Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000g9yr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -824,12 +782,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/384ae3f9-5df5-4797-894f-fd0e21d4f787?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:03:56.6952607Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/c143e4d0-3354-4f8e-99ae-0f6770d2c65c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:20:16.1295477Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -839,17 +797,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '568' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:56 GMT + - Wed, 26 Feb 2025 23:10:16 GMT mise-correlation-id: - - b9e9ba5b-8f25-4a86-8c52-dbe211330cb5 + - 8edce933-5755-4ace-b7de-4db8c4dff017 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215355Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000002sz7 + - 20250226T231016Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000gagt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -867,12 +825,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/384ae3f9-5df5-4797-894f-fd0e21d4f787?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:02.345404Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/c143e4d0-3354-4f8e-99ae-0f6770d2c65c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:20:21.4368068Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -882,17 +840,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '570' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:02 GMT + - Wed, 26 Feb 2025 23:10:21 GMT mise-correlation-id: - - f58d0f98-c456-4720-a7d7-0cc16fae8d91 + - 1433b5bc-12ba-43c5-b8eb-7867ea4fdf73 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215401Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000002t8a + - 20250226T231021Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000gb30 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -910,12 +868,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/384ae3f9-5df5-4797-894f-fd0e21d4f787?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:07.6003616Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/c143e4d0-3354-4f8e-99ae-0f6770d2c65c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:20:26.7144316Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -929,13 +887,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:07 GMT + - Wed, 26 Feb 2025 23:10:26 GMT mise-correlation-id: - - 1d8ccc3e-c58f-4af2-b98d-b82fc3ac773d + - 381f53a3-f634-479b-aba9-d69c318d9048 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215407Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000002th4 + - 20250226T231026Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000gbnt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -958,7 +916,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -967,9 +925,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:07 GMT + - Wed, 26 Feb 2025 23:10:27 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -985,7 +943,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 247900AA5519410CB7E8E3C360914673 Ref B: MAA201060516017 Ref C: 2025-02-24T21:54:07Z' + - 'Ref A: C20674E15ABE404CB1D3C1177CEFA030 Ref B: MAA201060513049 Ref C: 2025-02-26T23:10:27Z' status: code: 200 message: OK @@ -999,12 +957,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/9a1dbeab-a3b1-4929-8263-e1591d05f5fc.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A09Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:04:09.0912025Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/384ae3f9-5df5-4797-894f-fd0e21d4f787?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:09.0913015Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/9ecb7b87-1618-4fbd-89a4-43f5bad84d1e.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A28Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:20:28.5396352Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/c143e4d0-3354-4f8e-99ae-0f6770d2c65c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:20:28.5398422Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1014,17 +972,17 @@ interactions: connection: - keep-alive content-length: - - '1130' + - '1136' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:09 GMT + - Wed, 26 Feb 2025 23:10:28 GMT mise-correlation-id: - - 1867b861-4bfa-4139-8e86-790e25827911 + - eacaae04-348f-4107-9b9a-d295e8942af8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215408Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng000000002gdr + - 20250226T231028Z-167c755789djhmzhhC1SG1xd2g0000000210000000001m7z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1047,7 +1005,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1056,9 +1014,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:09 GMT + - Wed, 26 Feb 2025 23:10:29 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -1074,7 +1032,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 602C28E1DD3E4E27927516284EB0B8EA Ref B: MAA201060513017 Ref C: 2025-02-24T21:54:09Z' + - 'Ref A: 25BB093E0A294AA1B2CFBA07F65598B8 Ref B: MAA201060514037 Ref C: 2025-02-26T23:10:28Z' status: code: 200 message: OK @@ -1125,14 +1083,14 @@ interactions: Content-Length: - '1756' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview&fileType=URL_TEST_CONFIG + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview&fileType=URL_TEST_CONFIG response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/5d8539eb-8a4b-4287-ac41-fa18f4acba4e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:11.3579917Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/346e1547-daee-40f2-be0d-0ee28b0609f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:20:29.7721975Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1140,19 +1098,19 @@ interactions: connection: - keep-alive content-length: - - '580' + - '576' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:11 GMT + - Wed, 26 Feb 2025 23:10:29 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview mise-correlation-id: - - c1e98e8d-465c-46ff-a3c3-90e6e526a1c0 + - 10aee708-7ef2-4708-b123-e4db5c5589d2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215410Z-r17775d4f98nkpf8hC1SG11nqg000000140g000000003vsy + - 20250226T231029Z-167c755789dh5d2xhC1SG1c6dc00000001900000000084kb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1170,12 +1128,55 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + method: GET + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + response: + body: + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/346e1547-daee-40f2-be0d-0ee28b0609f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:20:30.0268951Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-12-01-preview + connection: + - keep-alive + content-length: + - '582' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Feb 2025 23:10:30 GMT + mise-correlation-id: + - 45af100e-9442-4946-b1d8-90c1d1514959 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20250226T231029Z-167c755789dh5d2xhC1SG1c6dc00000001900000000084m2 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/5d8539eb-8a4b-4287-ac41-fa18f4acba4e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:11.8207791Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/346e1547-daee-40f2-be0d-0ee28b0609f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:20:35.2793081Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1189,13 +1190,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:11 GMT + - Wed, 26 Feb 2025 23:10:35 GMT mise-correlation-id: - - 5c077fc3-3fd3-440e-aaa1-befbfb71c10f + - a21e3339-d0a3-4799-a256-b3e250808593 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215411Z-r17775d4f98nkpf8hC1SG11nqg000000140g000000003vxr + - 20250226T231035Z-167c755789dh5d2xhC1SG1c6dc000000019000000000850z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1213,12 +1214,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/5d8539eb-8a4b-4287-ac41-fa18f4acba4e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:17.0714139Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/346e1547-daee-40f2-be0d-0ee28b0609f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:20:40.527901Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1228,17 +1229,17 @@ interactions: connection: - keep-alive content-length: - - '576' + - '579' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:17 GMT + - Wed, 26 Feb 2025 23:10:40 GMT mise-correlation-id: - - 044b6d33-e810-4424-93a3-f5e7a593ea12 + - 83bbb073-ccf4-44dd-a255-d788f5bd696b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215416Z-r17775d4f98nkpf8hC1SG11nqg000000140g000000003wak + - 20250226T231040Z-167c755789dh5d2xhC1SG1c6dc00000001900000000085fn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1256,12 +1257,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/5d8539eb-8a4b-4287-ac41-fa18f4acba4e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:22.3224575Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/346e1547-daee-40f2-be0d-0ee28b0609f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:20:45.7855402Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1271,17 +1272,17 @@ interactions: connection: - keep-alive content-length: - - '580' + - '578' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:22 GMT + - Wed, 26 Feb 2025 23:10:45 GMT mise-correlation-id: - - 52621123-a8c0-4a39-8a82-1aaed745ba90 + - 83b3500f-d9c2-4eb5-9392-582c4162814c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215422Z-r17775d4f98nkpf8hC1SG11nqg000000140g000000003wnu + - 20250226T231045Z-167c755789dh5d2xhC1SG1c6dc0000000190000000008642 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1299,12 +1300,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/5d8539eb-8a4b-4287-ac41-fa18f4acba4e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:27.5731475Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/346e1547-daee-40f2-be0d-0ee28b0609f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:20:51.0408944Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1314,17 +1315,17 @@ interactions: connection: - keep-alive content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:27 GMT + - Wed, 26 Feb 2025 23:10:51 GMT mise-correlation-id: - - 087ec02e-b8c7-4914-a9e7-9c383868c572 + - 7034ee13-863a-4b96-bad3-6c2259f9bc39 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215427Z-r17775d4f98nkpf8hC1SG11nqg000000140g000000003x4e + - 20250226T231050Z-167c755789dh5d2xhC1SG1c6dc00000001900000000086k4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1342,12 +1343,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/5d8539eb-8a4b-4287-ac41-fa18f4acba4e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:32.823501Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/346e1547-daee-40f2-be0d-0ee28b0609f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:20:56.2924528Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1357,17 +1358,17 @@ interactions: connection: - keep-alive content-length: - - '575' + - '580' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:32 GMT + - Wed, 26 Feb 2025 23:10:56 GMT mise-correlation-id: - - 5c226656-131c-4f02-b26b-c5147245949a + - ea8436dc-a206-4736-8ac1-fb52147dc0fc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215432Z-r17775d4f98nkpf8hC1SG11nqg000000140g000000003xnp + - 20250226T231056Z-167c755789dh5d2xhC1SG1c6dc00000001900000000086xy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1385,12 +1386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/5d8539eb-8a4b-4287-ac41-fa18f4acba4e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:38.085504Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/346e1547-daee-40f2-be0d-0ee28b0609f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:21:01.5492731Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1400,17 +1401,17 @@ interactions: connection: - keep-alive content-length: - - '575' + - '578' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:38 GMT + - Wed, 26 Feb 2025 23:11:01 GMT mise-correlation-id: - - c50a8484-b1d5-4b49-87aa-ebf35fa84db9 + - 58cd183c-d90e-4302-90f6-25a41c4c1666 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215437Z-r17775d4f98nkpf8hC1SG11nqg000000140g000000003y08 + - 20250226T231101Z-167c755789dh5d2xhC1SG1c6dc000000019000000000879f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1428,12 +1429,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/5d8539eb-8a4b-4287-ac41-fa18f4acba4e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:43.33748Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/346e1547-daee-40f2-be0d-0ee28b0609f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:21:06.8044983Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1443,17 +1444,60 @@ interactions: connection: - keep-alive content-length: - - '572' + - '578' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Feb 2025 23:11:06 GMT + mise-correlation-id: + - 65d787ca-1d6b-4a3a-afd5-f795824979da + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20250226T231106Z-167c755789dh5d2xhC1SG1c6dc00000001900000000087nd + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + method: GET + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + response: + body: + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/346e1547-daee-40f2-be0d-0ee28b0609f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:21:12.0588858Z","validationStatus":"VALIDATION_SUCCESS"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-12-01-preview + connection: + - keep-alive + content-length: + - '578' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:43 GMT + - Wed, 26 Feb 2025 23:11:12 GMT mise-correlation-id: - - 5cf26754-db06-4329-b1de-2ff6b036c80c + - 90b827f1-ba3b-42ea-baed-bfcc92a7cbc8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215443Z-r17775d4f98nkpf8hC1SG11nqg000000140g000000003yc6 + - 20250226T231111Z-167c755789dh5d2xhC1SG1c6dc00000001900000000087y8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1476,7 +1520,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1485,9 +1529,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:43 GMT + - Wed, 26 Feb 2025 23:11:12 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -1503,7 +1547,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3D55BB81C7C34D499EEE2EA94747676A Ref B: MAA201060516017 Ref C: 2025-02-24T21:54:43Z' + - 'Ref A: B674B8CC0B30474D9A51E721E7C38FC5 Ref B: MAA201060513031 Ref C: 2025-02-26T23:11:12Z' status: code: 200 message: OK @@ -1517,12 +1561,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/adf2e0ec-e15c-4625-9c32-e775ca4c9a5b.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A44Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:04:44.3600206Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/5d8539eb-8a4b-4287-ac41-fa18f4acba4e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:44.3601116Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/0a2587d0-b36e-4b40-b627-1c565d237d3b.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A13Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:21:13.5409346Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/346e1547-daee-40f2-be0d-0ee28b0609f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:21:13.5410861Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1532,17 +1576,17 @@ interactions: connection: - keep-alive content-length: - - '1142' + - '1146' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:44 GMT + - Wed, 26 Feb 2025 23:11:13 GMT mise-correlation-id: - - 4b61ab06-d779-4246-89d3-aeabe2f48f31 + - 2f065750-75ff-453b-bdde-6bd3632be638 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215444Z-r17775d4f98p9dsnhC1SG1tym00000000e500000000003tq + - 20250226T231113Z-167c755789dpktj6hC1SG1nr68000000023g00000000fd5b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1565,7 +1609,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1574,9 +1618,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:45 GMT + - Wed, 26 Feb 2025 23:11:14 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -1592,7 +1636,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 16498F403A96478C88B6BCEA299B5714 Ref B: MAA201060514039 Ref C: 2025-02-24T21:54:44Z' + - 'Ref A: A14B319AFE764AC6A6A917551094E1B3 Ref B: MAA201060516045 Ref C: 2025-02-26T23:11:13Z' status: code: 200 message: OK @@ -1606,12 +1650,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/adf2e0ec-e15c-4625-9c32-e775ca4c9a5b.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A45Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:54:45.7985758Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/5d8539eb-8a4b-4287-ac41-fa18f4acba4e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:54:45.7989448Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:21.409Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:42.097Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/0a2587d0-b36e-4b40-b627-1c565d237d3b.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A15Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:11:15.0248195Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/346e1547-daee-40f2-be0d-0ee28b0609f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-27T00:11:15.025158Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:46.436Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:07.14Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1621,17 +1665,17 @@ interactions: connection: - keep-alive content-length: - - '1793' + - '1791' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:45 GMT + - Wed, 26 Feb 2025 23:11:15 GMT mise-correlation-id: - - d46356b2-aea0-4bcc-b4fc-af1e72df8084 + - be134e29-3e6c-4148-b3f2-fcb3dd66a0eb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215445Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009f2t + - 20250226T231114Z-167c755789dpktj6hC1SG1nr68000000024g00000000d2dq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1645,13 +1689,13 @@ interactions: "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": - {"575147e0-7759-4930-86c2-fcfe9ab47758": {"aggregate": "avg", "clientMetric": - "requests_per_sec", "condition": ">", "value": "78"}, "d1c896a7-aebc-4d38-ac68-b6744f1ec0d5": + {"49aa249c-2d39-4991-8231-ba6d5f980d57": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "c64fc663-3b5b-4274-8326-43ea549ced96": {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "ceb2620d-4c5f-4001-91c0-1c6d83566b85": {"aggregate": "avg", "clientMetric": + "50"}, "31c11b5a-c398-48e4-98a7-db9a7ba5dc35": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 90.0, "errorRateTimeWindowInSeconds": - 60}}' + 60}, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -1660,17 +1704,17 @@ interactions: Connection: - keep-alive Content-Length: - - '971' + - '1040' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"575147e0-7759-4930-86c2-fcfe9ab47758":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1c896a7-aebc-4d38-ac68-b6744f1ec0d5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ceb2620d-4c5f-4001-91c0-1c6d83566b85":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/adf2e0ec-e15c-4625-9c32-e775ca4c9a5b.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A46Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:54:46.1161507Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/5d8539eb-8a4b-4287-ac41-fa18f4acba4e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:54:46.1165194Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","description":"Advanced - URL load test created from az load test command","displayName":"CLI-Load-Test-Advanced-URL","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:21.409Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:46.107Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"49aa249c-2d39-4991-8231-ba6d5f980d57":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"c64fc663-3b5b-4274-8326-43ea549ced96":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"31c11b5a-c398-48e4-98a7-db9a7ba5dc35":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/0a2587d0-b36e-4b40-b627-1c565d237d3b.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A10Z&ske=2025-02-27T06%3A10%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A15Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:11:15.3635143Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/346e1547-daee-40f2-be0d-0ee28b0609f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A10Z&ske=2025-02-27T06%3A10%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-27T00:11:15.3641754Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","description":"Advanced + URL load test created from az load test command","displayName":"CLI-Load-Test-Advanced-URL","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:46.436Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:15.35Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1680,17 +1724,17 @@ interactions: connection: - keep-alive content-length: - - '2383' + - '2378' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:46 GMT + - Wed, 26 Feb 2025 23:11:15 GMT mise-correlation-id: - - 14c8b0d8-cf28-4272-a9a7-c9d11050a1b5 + - d07a83de-4bad-4d5c-88d6-b03b0c18e5aa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215445Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009f3x + - 20250226T231115Z-167c755789dpktj6hC1SG1nr68000000024g00000000d2ef x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1708,12 +1752,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/adf2e0ec-e15c-4625-9c32-e775ca4c9a5b.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A46Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:04:46.3702435Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/5d8539eb-8a4b-4287-ac41-fa18f4acba4e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:46.3703172Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/0a2587d0-b36e-4b40-b627-1c565d237d3b.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A49Z&ske=2025-02-27T06%3A09%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A15Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:21:15.621902Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/346e1547-daee-40f2-be0d-0ee28b0609f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A49Z&ske=2025-02-27T06%3A09%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:21:15.6220005Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1723,17 +1767,17 @@ interactions: connection: - keep-alive content-length: - - '1140' + - '1139' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:46 GMT + - Wed, 26 Feb 2025 23:11:15 GMT mise-correlation-id: - - 7af36b66-c03c-445f-bd24-20ab6bbaea91 + - 91ea9252-837d-464c-b39e-2553eb96828c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215446Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009f4c + - 20250226T231115Z-167c755789dpktj6hC1SG1nr68000000024g00000000d2fq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1758,14 +1802,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/f0d6fc7b-8764-432b-ad27-4c4276dbec61?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A46Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:04:46.769925Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/bec2ffe7-2ccd-4a95-9798-bdfbc282c87e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:21:15.9963856Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1773,19 +1817,19 @@ interactions: connection: - keep-alive content-length: - - '570' + - '573' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:46 GMT + - Wed, 26 Feb 2025 23:11:16 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 72cc5577-f185-4690-ab44-b2868d8d6872 + - 2b15244c-1728-474c-b60e-7eb91bfa1611 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215446Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009f4u + - 20250226T231115Z-167c755789dpktj6hC1SG1nr68000000024g00000000d2gr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1803,12 +1847,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/f0d6fc7b-8764-432b-ad27-4c4276dbec61?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:04:47.0227017Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/bec2ffe7-2ccd-4a95-9798-bdfbc282c87e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:21:16.249865Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -1818,17 +1862,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '580' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:47 GMT + - Wed, 26 Feb 2025 23:11:16 GMT mise-correlation-id: - - 5f1c8baa-3847-41e1-9e6f-5f823cfeaf93 + - f5bb52f4-3296-414d-b361-957031fe7979 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215446Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009f5c + - 20250226T231116Z-167c755789dpktj6hC1SG1nr68000000024g00000000d2k1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1857,14 +1901,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/1c5b9cf0-b42c-4c57-8129-455af71d7003?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:49.9785479Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/9a38d0f7-1519-452e-83df-c225c47dbf11?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:21:16.6569584Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1876,15 +1920,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:50 GMT + - Wed, 26 Feb 2025 23:11:16 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - b81abedd-95ce-4ddf-82fa-f28e2e784a48 + - 2766e2c7-7053-4940-98e3-fa524c5887b8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215447Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009f5y + - 20250226T231116Z-167c755789dpktj6hC1SG1nr68000000024g00000000d2ky x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1902,12 +1946,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/1c5b9cf0-b42c-4c57-8129-455af71d7003?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:50.2283349Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/9a38d0f7-1519-452e-83df-c225c47dbf11?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:21:16.9931669Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -1917,17 +1961,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:50 GMT + - Wed, 26 Feb 2025 23:11:17 GMT mise-correlation-id: - - b6739ed2-a853-44a9-87e4-b014aa321a85 + - 8bfd2c1d-8b69-4b45-af98-17bd03055591 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215450Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009fax + - 20250226T231116Z-167c755789dpktj6hC1SG1nr68000000024g00000000d2n3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1977,14 +2021,14 @@ interactions: Content-Length: - '1447' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview&fileType=URL_TEST_CONFIG + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview&fileType=URL_TEST_CONFIG response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/0c29773e-cc81-4f97-92e9-8c42235af78c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:51.3244474Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/ad5d519a-63f1-45fa-9a72-b480a9f3c4ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:21:17.3956671Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1992,19 +2036,19 @@ interactions: connection: - keep-alive content-length: - - '570' + - '574' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:51 GMT + - Wed, 26 Feb 2025 23:11:17 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview mise-correlation-id: - - 867900de-8e94-4d06-9ddc-c7e3d3f56a9e + - c6cbe902-1213-4955-9155-dd166ab5e4f5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215450Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009fbb + - 20250226T231117Z-167c755789dpktj6hC1SG1nr68000000024g00000000d2ns x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2022,12 +2066,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/0c29773e-cc81-4f97-92e9-8c42235af78c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:51.5723827Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/ad5d519a-63f1-45fa-9a72-b480a9f3c4ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A10Z&ske=2025-02-27T06%3A10%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:21:17.6491559Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2041,13 +2085,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:51 GMT + - Wed, 26 Feb 2025 23:11:17 GMT mise-correlation-id: - - 6fe55091-062f-44d6-9605-388d4cb2b205 + - 41c4c9ed-39d6-406b-8b78-4805e3934fba strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215451Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009fdh + - 20250226T231117Z-167c755789dpktj6hC1SG1nr68000000024g00000000d2pe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2065,12 +2109,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/0c29773e-cc81-4f97-92e9-8c42235af78c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:04:56.8210589Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/ad5d519a-63f1-45fa-9a72-b480a9f3c4ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:21:22.9021437Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2080,17 +2124,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '568' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:56 GMT + - Wed, 26 Feb 2025 23:11:23 GMT mise-correlation-id: - - e98c8b9f-fdaa-4f39-914b-ca4583ae8764 + - 949028ff-6ca6-44d8-9a00-02be88e1c49a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215456Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009fqr + - 20250226T231122Z-167c755789dpktj6hC1SG1nr68000000024g00000000d34b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2108,12 +2152,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/0c29773e-cc81-4f97-92e9-8c42235af78c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:05:02.0707963Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/ad5d519a-63f1-45fa-9a72-b480a9f3c4ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:21:28.1749933Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2123,17 +2167,17 @@ interactions: connection: - keep-alive content-length: - - '576' + - '572' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:02 GMT + - Wed, 26 Feb 2025 23:11:28 GMT mise-correlation-id: - - 69a4e816-933f-46e7-be0e-10ed3b39bd7e + - 3802a5b9-5ba7-4a29-b633-d81f2068f107 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215501Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009fy2 + - 20250226T231128Z-167c755789dpktj6hC1SG1nr68000000024g00000000d3gu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2151,12 +2195,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/0c29773e-cc81-4f97-92e9-8c42235af78c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:05:07.3223005Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/ad5d519a-63f1-45fa-9a72-b480a9f3c4ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:21:33.4320551Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2166,17 +2210,17 @@ interactions: connection: - keep-alive content-length: - - '568' + - '574' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:07 GMT + - Wed, 26 Feb 2025 23:11:33 GMT mise-correlation-id: - - 53ea2d13-c58b-4aa7-bf38-fc034216e44f + - e16b9671-c863-472c-89c9-a466de65a892 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215507Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009g5e + - 20250226T231133Z-167c755789dpktj6hC1SG1nr68000000024g00000000d3zu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2194,12 +2238,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/0c29773e-cc81-4f97-92e9-8c42235af78c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:05:12.5686918Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/ad5d519a-63f1-45fa-9a72-b480a9f3c4ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A10Z&ske=2025-02-27T06%3A10%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:21:38.6881064Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2213,13 +2257,56 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:12 GMT + - Wed, 26 Feb 2025 23:11:38 GMT + mise-correlation-id: + - cfacc1a4-1276-4123-8d27-7648d290bbec + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20250226T231138Z-167c755789dpktj6hC1SG1nr68000000024g00000000d4bn + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + method: GET + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + response: + body: + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/ad5d519a-63f1-45fa-9a72-b480a9f3c4ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:21:43.9370906Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-12-01-preview + connection: + - keep-alive + content-length: + - '568' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Feb 2025 23:11:44 GMT mise-correlation-id: - - d6ab3305-af28-4313-ad45-91fb3b227214 + - 6188bbc3-884f-4006-8128-c9122f46e029 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215512Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009gc4 + - 20250226T231143Z-167c755789dpktj6hC1SG1nr68000000024g00000000d4t2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2237,12 +2324,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/0c29773e-cc81-4f97-92e9-8c42235af78c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:05:17.8173965Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/ad5d519a-63f1-45fa-9a72-b480a9f3c4ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A49Z&ske=2025-02-27T06%3A09%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:21:49.1943835Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2256,13 +2343,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:17 GMT + - Wed, 26 Feb 2025 23:11:49 GMT mise-correlation-id: - - e5425adf-5d29-4f5c-bbc8-17a804d10086 + - f19b0414-07f6-48dc-8a7a-d97357e99ca5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215517Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009gpa + - 20250226T231149Z-167c755789dpktj6hC1SG1nr68000000024g00000000d56w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2280,12 +2367,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/0c29773e-cc81-4f97-92e9-8c42235af78c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:05:23.0671775Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/ad5d519a-63f1-45fa-9a72-b480a9f3c4ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:21:54.4467188Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2295,17 +2382,17 @@ interactions: connection: - keep-alive content-length: - - '576' + - '574' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:23 GMT + - Wed, 26 Feb 2025 23:11:54 GMT mise-correlation-id: - - 401241e5-bf7f-454a-a7bc-29690a147659 + - 36cbe0db-0a25-4e8a-ac76-69a213c7fe5a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215522Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009gyf + - 20250226T231154Z-167c755789dpktj6hC1SG1nr68000000024g00000000d5mw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2323,12 +2410,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/0c29773e-cc81-4f97-92e9-8c42235af78c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:05:28.3251918Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/ad5d519a-63f1-45fa-9a72-b480a9f3c4ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A10Z&ske=2025-02-27T06%3A10%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:21:59.7233563Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -2338,17 +2425,17 @@ interactions: connection: - keep-alive content-length: - - '568' + - '572' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:28 GMT + - Wed, 26 Feb 2025 23:11:59 GMT mise-correlation-id: - - 1a36a712-f947-4b28-a56e-8d417f890747 + - b0d6035e-d931-4812-b688-6eb4356096c6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215528Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009h7v + - 20250226T231159Z-167c755789dpktj6hC1SG1nr68000000024g00000000d621 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2366,13 +2453,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"575147e0-7759-4930-86c2-fcfe9ab47758":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1c896a7-aebc-4d38-ac68-b6744f1ec0d5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ceb2620d-4c5f-4001-91c0-1c6d83566b85":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/d24aeedd-3cef-4c90-8796-f826d0d73220.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A28Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:55:28.5833213Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/0c29773e-cc81-4f97-92e9-8c42235af78c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:55:28.5836375Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/f0d6fc7b-8764-432b-ad27-4c4276dbec61?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:55:28.5838022Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/1c5b9cf0-b42c-4c57-8129-455af71d7003?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:28.5839872Z","validationStatus":"NOT_VALIDATED"}]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","description":"Advanced - URL load test created from az load test command","displayName":"CLI-Load-Test-Advanced-URL","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:21.409Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:23.461Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"49aa249c-2d39-4991-8231-ba6d5f980d57":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"c64fc663-3b5b-4274-8326-43ea549ced96":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"31c11b5a-c398-48e4-98a7-db9a7ba5dc35":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/9edce512-bb76-4a49-87fe-77983bba9b12.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A59Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:11:59.9913195Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/ad5d519a-63f1-45fa-9a72-b480a9f3c4ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-27T00:11:59.9917129Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/bec2ffe7-2ccd-4a95-9798-bdfbc282c87e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A59Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:11:59.9918475Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/9a38d0f7-1519-452e-83df-c225c47dbf11?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:11:59.991989Z","validationStatus":"NOT_VALIDATED"}]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","description":"Advanced + URL load test created from az load test command","displayName":"CLI-Load-Test-Advanced-URL","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:46.436Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:56.715Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2382,17 +2469,17 @@ interactions: connection: - keep-alive content-length: - - '3510' + - '3507' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:28 GMT + - Wed, 26 Feb 2025 23:12:00 GMT mise-correlation-id: - - a15a74bf-1c3f-4ae0-b68d-1d655108e490 + - 21a4e2bd-2fab-4d4a-ade4-87a900eae30b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215528Z-r17775d4f98v6wd6hC1SG1230n00000008ng000000009h86 + - 20250226T231159Z-167c755789dpktj6hC1SG1nr68000000024g00000000d62v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2415,7 +2502,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2424,9 +2511,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:28 GMT + - Wed, 26 Feb 2025 23:12:00 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -2442,7 +2529,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A76C900316AC4664BCD8D872957D112A Ref B: MAA201060515035 Ref C: 2025-02-24T21:55:28Z' + - 'Ref A: 333AF2FF23C640D384C74E3769E9B94F Ref B: MAA201060514021 Ref C: 2025-02-26T23:12:00Z' status: code: 200 message: OK @@ -2456,13 +2543,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"575147e0-7759-4930-86c2-fcfe9ab47758":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1c896a7-aebc-4d38-ac68-b6744f1ec0d5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ceb2620d-4c5f-4001-91c0-1c6d83566b85":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/d24aeedd-3cef-4c90-8796-f826d0d73220.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A30Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:55:30.1129184Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/0c29773e-cc81-4f97-92e9-8c42235af78c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:55:30.1133318Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/f0d6fc7b-8764-432b-ad27-4c4276dbec61?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A30Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:55:30.1135033Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/1c5b9cf0-b42c-4c57-8129-455af71d7003?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:30.1136758Z","validationStatus":"NOT_VALIDATED"}]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","description":"Advanced - URL load test created from az load test command","displayName":"CLI-Load-Test-Advanced-URL","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:21.409Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:23.461Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"49aa249c-2d39-4991-8231-ba6d5f980d57":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"c64fc663-3b5b-4274-8326-43ea549ced96":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"31c11b5a-c398-48e4-98a7-db9a7ba5dc35":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/9edce512-bb76-4a49-87fe-77983bba9b12.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A01Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:12:01.0184237Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/ad5d519a-63f1-45fa-9a72-b480a9f3c4ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-27T00:12:01.0187622Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/bec2ffe7-2ccd-4a95-9798-bdfbc282c87e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:12:01.0188677Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/9a38d0f7-1519-452e-83df-c225c47dbf11?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:12:01.0189698Z","validationStatus":"NOT_VALIDATED"}]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","description":"Advanced + URL load test created from az load test command","displayName":"CLI-Load-Test-Advanced-URL","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:46.436Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:56.715Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2472,17 +2559,17 @@ interactions: connection: - keep-alive content-length: - - '3512' + - '3514' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:30 GMT + - Wed, 26 Feb 2025 23:12:01 GMT mise-correlation-id: - - c814d971-d47d-45dc-9e05-c724a922525f + - 53de0b49-a695-4d9a-85c3-17d78ea2a3c1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215529Z-r17775d4f98ksdkhhC1SG17z7g00000014d0000000004792 + - 20250226T231200Z-167c755789dbhjzdhC1SG1t7h800000001r00000000096nr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2496,7 +2583,8 @@ interactions: "SystemAssigned", "environmentVariables": {}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "splitAllCSVs": false, "quickStartTest": false, "regionalLoadTestConfig": null}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 90.0, "errorRateTimeWindowInSeconds": - 60}, "baselineTestRunId": null}' + 60}, "baselineTestRunId": null, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": + null}' headers: Accept: - application/json @@ -2505,17 +2593,17 @@ interactions: Connection: - keep-alive Content-Length: - - '489' + - '558' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"575147e0-7759-4930-86c2-fcfe9ab47758":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1c896a7-aebc-4d38-ac68-b6744f1ec0d5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ceb2620d-4c5f-4001-91c0-1c6d83566b85":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/d24aeedd-3cef-4c90-8796-f826d0d73220.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A30Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:55:30.4307796Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/0c29773e-cc81-4f97-92e9-8c42235af78c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:55:30.4313052Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/f0d6fc7b-8764-432b-ad27-4c4276dbec61?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A30Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:55:30.4314488Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/1c5b9cf0-b42c-4c57-8129-455af71d7003?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:30.4315975Z","validationStatus":"NOT_VALIDATED"}]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","description":"Advanced - URL load test created from az load test command","displayName":"CLI-Load-Test-Advanced-URL","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:21.409Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:30.423Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"49aa249c-2d39-4991-8231-ba6d5f980d57":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"c64fc663-3b5b-4274-8326-43ea549ced96":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"31c11b5a-c398-48e4-98a7-db9a7ba5dc35":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/9edce512-bb76-4a49-87fe-77983bba9b12.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A01Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:12:01.3433771Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/ad5d519a-63f1-45fa-9a72-b480a9f3c4ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-27T00:12:01.343773Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/bec2ffe7-2ccd-4a95-9798-bdfbc282c87e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:12:01.3439753Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/9a38d0f7-1519-452e-83df-c225c47dbf11?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:12:01.3441627Z","validationStatus":"NOT_VALIDATED"}]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","description":"Advanced + URL load test created from az load test command","displayName":"CLI-Load-Test-Advanced-URL","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:46.436Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:12:01.333Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2525,17 +2613,17 @@ interactions: connection: - keep-alive content-length: - - '3516' + - '3519' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:30 GMT + - Wed, 26 Feb 2025 23:12:01 GMT mise-correlation-id: - - 55147ad0-d99c-4f98-b6f3-3b24f4be4acb + - 15c767f9-fc00-4d50-8e58-8d09c4b04f69 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215530Z-r17775d4f98ksdkhhC1SG17z7g00000014d00000000047as + - 20250226T231201Z-167c755789dbhjzdhC1SG1t7h800000001r00000000096pk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2553,12 +2641,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/d24aeedd-3cef-4c90-8796-f826d0d73220.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A30Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:05:30.6826771Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/0c29773e-cc81-4f97-92e9-8c42235af78c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:05:30.6827658Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/f0d6fc7b-8764-432b-ad27-4c4276dbec61?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A30Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:05:30.6829113Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/1c5b9cf0-b42c-4c57-8129-455af71d7003?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:05:30.6830158Z","validationStatus":"NOT_VALIDATED"}]}' + string: '{"value":[{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/9edce512-bb76-4a49-87fe-77983bba9b12.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A01Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:22:01.6643182Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/ad5d519a-63f1-45fa-9a72-b480a9f3c4ff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:22:01.6645127Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/bec2ffe7-2ccd-4a95-9798-bdfbc282c87e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:22:01.6646667Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/9a38d0f7-1519-452e-83df-c225c47dbf11?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:22:01.6648097Z","validationStatus":"NOT_VALIDATED"}]}' headers: accept-ranges: - bytes @@ -2568,17 +2656,17 @@ interactions: connection: - keep-alive content-length: - - '2278' + - '2274' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:30 GMT + - Wed, 26 Feb 2025 23:12:02 GMT mise-correlation-id: - - fedaac73-98e9-47f5-9ffd-da769587c470 + - 26fd20f2-afc4-4de8-acd5-f228260cfb18 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215530Z-r17775d4f98ksdkhhC1SG17z7g00000014d00000000047bg + - 20250226T231201Z-167c755789dbhjzdhC1SG1t7h800000001r00000000096qm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2687,14 +2775,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=JMX_FILE + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/a15321b5-405e-4d57-b17d-35ed91c1c8b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:05:31.6511094Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/4541edc5-aef6-4c98-821e-440318faa758?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A10Z&ske=2025-02-27T06%3A10%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:22:02.5255541Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -2702,19 +2790,19 @@ interactions: connection: - keep-alive content-length: - - '556' + - '564' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:31 GMT + - Wed, 26 Feb 2025 23:12:02 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 7ddc2af9-7b1b-4179-ae96-336f0a40b8c8 + - 104680d7-4f94-4237-b95f-b3e330b68edb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215530Z-r17775d4f98ksdkhhC1SG17z7g00000014d00000000047c0 + - 20250226T231202Z-167c755789dbhjzdhC1SG1t7h800000001r00000000096v9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2732,12 +2820,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/a15321b5-405e-4d57-b17d-35ed91c1c8b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:05:31.9024235Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/4541edc5-aef6-4c98-821e-440318faa758?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:22:02.876441Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2747,17 +2835,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:32 GMT + - Wed, 26 Feb 2025 23:12:02 GMT mise-correlation-id: - - 8c854ffa-7860-4598-b86d-befedcb73d87 + - 3b7ae20d-bd22-427b-a5d8-54dd3a30d764 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215531Z-r17775d4f98ksdkhhC1SG17z7g00000014d00000000047dx + - 20250226T231202Z-167c755789dbhjzdhC1SG1t7h800000001r0000000009703 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2775,12 +2863,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/a15321b5-405e-4d57-b17d-35ed91c1c8b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:05:37.3024605Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/4541edc5-aef6-4c98-821e-440318faa758?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:22:08.1336722Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2790,17 +2878,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:37 GMT + - Wed, 26 Feb 2025 23:12:08 GMT mise-correlation-id: - - aeee636e-7c6f-4f6e-ad83-5df6a43cd408 + - f8769fd8-dac3-468b-9e33-849fa9428f63 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215537Z-r17775d4f98ksdkhhC1SG17z7g00000014d00000000047ps + - 20250226T231208Z-167c755789dbhjzdhC1SG1t7h800000001r00000000097bc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2818,12 +2906,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/a15321b5-405e-4d57-b17d-35ed91c1c8b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:05:42.5720867Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/4541edc5-aef6-4c98-821e-440318faa758?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:22:13.394495Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2833,17 +2921,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '555' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:42 GMT + - Wed, 26 Feb 2025 23:12:13 GMT mise-correlation-id: - - f95a1b08-2cfd-4a23-bffe-40fc53d73def + - b362b359-0d8c-47f8-9fd2-1f8faeb32120 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215542Z-r17775d4f98ksdkhhC1SG17z7g00000014d00000000047z5 + - 20250226T231213Z-167c755789dbhjzdhC1SG1t7h800000001r00000000097nf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2861,12 +2949,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/a15321b5-405e-4d57-b17d-35ed91c1c8b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:05:47.8720373Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/4541edc5-aef6-4c98-821e-440318faa758?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:22:18.6458524Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2880,13 +2968,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:47 GMT + - Wed, 26 Feb 2025 23:12:18 GMT mise-correlation-id: - - 13486e75-d75f-4547-a424-e46e3cb522dd + - 5237e80a-3b4c-4b6d-8e1e-7f1a7802f82a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215547Z-r17775d4f98ksdkhhC1SG17z7g00000014d00000000048c3 + - 20250226T231218Z-167c755789dbhjzdhC1SG1t7h800000001r000000000980g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2904,12 +2992,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/a15321b5-405e-4d57-b17d-35ed91c1c8b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:05:53.1353797Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/4541edc5-aef6-4c98-821e-440318faa758?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:22:23.8999279Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2919,17 +3007,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:53 GMT + - Wed, 26 Feb 2025 23:12:24 GMT mise-correlation-id: - - aa6438b5-5cba-4ace-bcbe-a045ed6187ff + - 9fe05db7-b570-4e9e-a04c-90368befe480 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215553Z-r17775d4f98ksdkhhC1SG17z7g00000014d00000000048pr + - 20250226T231223Z-167c755789dbhjzdhC1SG1t7h800000001r00000000098c1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2947,12 +3035,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/a15321b5-405e-4d57-b17d-35ed91c1c8b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:05:58.3950595Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/4541edc5-aef6-4c98-821e-440318faa758?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A49Z&ske=2025-02-27T06%3A09%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:22:29.153345Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2962,17 +3050,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:58 GMT + - Wed, 26 Feb 2025 23:12:29 GMT mise-correlation-id: - - 72501dca-b8a1-41aa-a605-529c0e500a5d + - 37cf0991-8e8d-41e9-9b8e-df288cb91661 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215558Z-r17775d4f98ksdkhhC1SG17z7g00000014d00000000048xs + - 20250226T231229Z-167c755789dbhjzdhC1SG1t7h800000001r00000000098su x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2990,12 +3078,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/a15321b5-405e-4d57-b17d-35ed91c1c8b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:06:03.6463774Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/4541edc5-aef6-4c98-821e-440318faa758?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A10Z&ske=2025-02-27T06%3A10%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:22:34.413019Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -3005,17 +3093,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '555' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:03 GMT + - Wed, 26 Feb 2025 23:12:34 GMT mise-correlation-id: - - 59d24ca3-b583-490b-827e-39e42f4bc818 + - 8273bc1d-8910-4c4c-9478-2559be37a015 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215603Z-r17775d4f98ksdkhhC1SG17z7g00000014d0000000004961 + - 20250226T231234Z-167c755789dbhjzdhC1SG1t7h800000001r0000000009950 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3033,13 +3121,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"575147e0-7759-4930-86c2-fcfe9ab47758":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1c896a7-aebc-4d38-ac68-b6744f1ec0d5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ceb2620d-4c5f-4001-91c0-1c6d83566b85":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/a15321b5-405e-4d57-b17d-35ed91c1c8b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:56:03.9056511Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/f0d6fc7b-8764-432b-ad27-4c4276dbec61?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A03Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:56:03.9063831Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/e45ee020-2aaf-4bd0-9c5f-7ab9714d1d48/1c5b9cf0-b42c-4c57-8129-455af71d7003?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:56:03.9065189Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","description":"Advanced - URL load test created from az load test command","displayName":"CLI-Load-Test-Advanced-URL","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:21.409Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:56:02.687Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"49aa249c-2d39-4991-8231-ba6d5f980d57":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"c64fc663-3b5b-4274-8326-43ea549ced96":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"31c11b5a-c398-48e4-98a7-db9a7ba5dc35":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/4541edc5-aef6-4c98-821e-440318faa758?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:12:34.6743472Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/bec2ffe7-2ccd-4a95-9798-bdfbc282c87e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A34Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:12:34.6746477Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/47d0d6fa-d274-4bec-b780-66fc6b3148e9/9a38d0f7-1519-452e-83df-c225c47dbf11?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:12:34.6747363Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","description":"Advanced + URL load test created from az load test command","displayName":"CLI-Load-Test-Advanced-URL","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:46.436Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:12:32.427Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3049,17 +3137,17 @@ interactions: connection: - keep-alive content-length: - - '2931' + - '2927' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:04 GMT + - Wed, 26 Feb 2025 23:12:34 GMT mise-correlation-id: - - 3ccdc6c8-eff2-448e-b330-fb6b6d8774fb + - 021d63d7-0c1d-4a52-b1af-3f537fc5a930 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215603Z-r17775d4f98ksdkhhC1SG17z7g00000014d000000000496f + - 20250226T231234Z-167c755789dbhjzdhC1SG1t7h800000001r000000000995r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3082,7 +3170,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3091,9 +3179,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:04 GMT + - Wed, 26 Feb 2025 23:12:35 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -3109,7 +3197,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1C2D8552472D448481E288D4E2B68062 Ref B: MAA201060515053 Ref C: 2025-02-24T21:56:04Z' + - 'Ref A: 98E1B13433E640D3AB797A59C781BC43 Ref B: MAA201060513045 Ref C: 2025-02-26T23:12:34Z' status: code: 200 message: OK @@ -3155,11 +3243,11 @@ interactions: Content-Length: - '1447' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview&fileType=URL_TEST_CONFIG + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview&fileType=URL_TEST_CONFIG response: body: string: '{"error":{"code":"InvalidRequestBody","message":"The URL config file @@ -3173,15 +3261,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:56:06 GMT + - Wed, 26 Feb 2025 23:12:37 GMT mise-correlation-id: - - aec96222-f8d3-4181-99e6-ea0c1aafe971 + - 6b35f7b7-a326-4a52-8b8e-d2305a88f186 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215605Z-r17775d4f98m8b5phC1SG1qcms00000007y00000000057kh + - 20250226T231236Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000d06q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3206,7 +3294,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3215,9 +3303,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:05 GMT + - Wed, 26 Feb 2025 23:12:37 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -3233,7 +3321,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FDE16312BC904E1EA75612FB954ECFFF Ref B: MAA201060513029 Ref C: 2025-02-24T21:56:06Z' + - 'Ref A: 84A1EF1E8AD9418DA7C0EC2E6E4C1597 Ref B: MAA201060515031 Ref C: 2025-02-26T23:12:37Z' status: code: 200 message: OK @@ -3249,9 +3337,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: string: '' @@ -3262,13 +3350,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:56:07 GMT + - Wed, 26 Feb 2025 23:12:40 GMT mise-correlation-id: - - c86fcb74-00b3-4a20-af2e-b3b24d8ea01e + - 4a12dd8a-9ccd-4c6c-a82c-716204db07bc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215606Z-r17775d4f98mc5fbhC1SG1vp2s00000013xg000000006mtt + - 20250226T231238Z-167c755789dkxplchC1SG1rzhw000000020000000000agcc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3291,7 +3379,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3300,9 +3388,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:08 GMT + - Wed, 26 Feb 2025 23:12:41 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -3318,7 +3406,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E09D0DD6870D441F816C9EE114B47ED1 Ref B: MAA201060513033 Ref C: 2025-02-24T21:56:07Z' + - 'Ref A: 71C590B2B20643BDA52A7B0AFFBE4B6D Ref B: MAA201060513027 Ref C: 2025-02-26T23:12:40Z' status: code: 200 message: OK @@ -3332,9 +3420,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -3348,15 +3436,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:56:09 GMT + - Wed, 26 Feb 2025 23:12:41 GMT mise-correlation-id: - - 7b166dd2-061c-427e-b8ff-594bcdca874e + - 921daea7-662f-4fe5-9a39-7f20334e6c24 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215608Z-r17775d4f98dvpdwhC1SG17y38000000141g000000000rzy + - 20250226T231241Z-167c755789d9f6qshC1SG1fkqn00000002kg0000000001np x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3372,12 +3460,13 @@ interactions: "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": - {"4415d2cb-fe80-4969-8e35-975d258e72ea": {"aggregate": "avg", "clientMetric": - "requests_per_sec", "condition": ">", "value": "78"}, "6e6e78a5-13c9-4119-b4bf-732e02afa46f": + {"2d95e478-44f1-4413-9cdf-b3b1e448602a": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "3d1694c8-7718-4713-b566-ab6133b38872": {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "6cc30c7e-7b4d-4ba8-b687-08cb1097fe34": {"aggregate": "avg", "clientMetric": + "50"}, "bb5435db-4964-4a56-92c2-fccd40339c33": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, - "autoStopCriteria": {}}' + "autoStopCriteria": {}, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": + null}' headers: Accept: - application/json @@ -3386,17 +3475,17 @@ interactions: Connection: - keep-alive Content-Length: - - '891' + - '960' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"4415d2cb-fe80-4969-8e35-975d258e72ea":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"6e6e78a5-13c9-4119-b4bf-732e02afa46f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6cc30c7e-7b4d-4ba8-b687-08cb1097fe34":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","description":"Advanced - URL load test created from az load test command","displayName":"CLI-Load-Test-Advanced-URL","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:09.469Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:56:09.469Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2d95e478-44f1-4413-9cdf-b3b1e448602a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"3d1694c8-7718-4713-b566-ab6133b38872":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"bb5435db-4964-4a56-92c2-fccd40339c33":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","description":"Advanced + URL load test created from az load test command","displayName":"CLI-Load-Test-Advanced-URL","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:12:41.809Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:12:41.809Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -3408,15 +3497,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:09 GMT + - Wed, 26 Feb 2025 23:12:41 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview mise-correlation-id: - - c4d6677d-b81f-4b96-9150-82ba502f24f4 + - c8bd788b-0db7-46a9-a778-75f0c3d1bb18 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215609Z-r17775d4f98dvpdwhC1SG17y38000000141g000000000s08 + - 20250226T231241Z-167c755789d9f6qshC1SG1fkqn00000002kg0000000001p4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3434,9 +3523,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -3453,13 +3542,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:09 GMT + - Wed, 26 Feb 2025 23:12:42 GMT mise-correlation-id: - - bce8c636-74f4-4d98-bb89-ad68c45b645f + - a7993900-8459-474e-8d01-314390f78d30 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215609Z-r17775d4f98dvpdwhC1SG17y38000000141g000000000s11 + - 20250226T231241Z-167c755789d9f6qshC1SG1fkqn00000002kg0000000001pw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3484,14 +3573,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/aa5eb26c-b1e5-4f12-960a-fe3edb8626dc/c722fb63-ba2d-405b-91f3-84dae52b40cd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:06:10.2194934Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/de2f0cce-ce52-4028-8c61-d97f06dc47d7/874e4df6-3fbd-4ea6-9dd4-29f74c883bcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A42Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:22:42.6974266Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -3499,19 +3588,19 @@ interactions: connection: - keep-alive content-length: - - '575' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:10 GMT + - Wed, 26 Feb 2025 23:12:42 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - e786ab1a-e1dd-4f25-84d8-634d5741109c + - 56a9ef02-e7b4-42cf-9b9c-99f2e5e60df1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215609Z-r17775d4f98dvpdwhC1SG17y38000000141g000000000s1b + - 20250226T231242Z-167c755789d9f6qshC1SG1fkqn00000002kg0000000001qg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3529,12 +3618,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/aa5eb26c-b1e5-4f12-960a-fe3edb8626dc/c722fb63-ba2d-405b-91f3-84dae52b40cd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:06:10.4997927Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/de2f0cce-ce52-4028-8c61-d97f06dc47d7/874e4df6-3fbd-4ea6-9dd4-29f74c883bcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A49Z&ske=2025-02-27T06%3A09%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A42Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:22:42.9462363Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -3544,17 +3633,17 @@ interactions: connection: - keep-alive content-length: - - '571' + - '573' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:10 GMT + - Wed, 26 Feb 2025 23:12:43 GMT mise-correlation-id: - - 9646d22d-90a4-4ba8-b66c-e9c2a09614ab + - 8c216888-c097-4b7a-b255-9da65aa73c3f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215610Z-r17775d4f98dvpdwhC1SG17y38000000141g000000000s20 + - 20250226T231242Z-167c755789d9f6qshC1SG1fkqn00000002kg0000000001rr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3583,14 +3672,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/aa5eb26c-b1e5-4f12-960a-fe3edb8626dc/37f2e2ce-5135-459d-b186-6ce4910bb15c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:06:10.890399Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/de2f0cce-ce52-4028-8c61-d97f06dc47d7/60626139-59a1-4961-8478-0ecf229953eb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:22:43.3552803Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -3598,19 +3687,19 @@ interactions: connection: - keep-alive content-length: - - '564' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:11 GMT + - Wed, 26 Feb 2025 23:12:43 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 76836d87-0702-447c-a1fb-3e8efeb41888 + - c6d757c6-12a3-4849-9e0e-3234f6b61b09 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215610Z-r17775d4f98dvpdwhC1SG17y38000000141g000000000s2g + - 20250226T231243Z-167c755789d9f6qshC1SG1fkqn00000002kg0000000001s6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3628,12 +3717,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/aa5eb26c-b1e5-4f12-960a-fe3edb8626dc/37f2e2ce-5135-459d-b186-6ce4910bb15c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:06:11.147925Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/de2f0cce-ce52-4028-8c61-d97f06dc47d7/60626139-59a1-4961-8478-0ecf229953eb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:22:43.6043673Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -3643,17 +3732,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:11 GMT + - Wed, 26 Feb 2025 23:12:43 GMT mise-correlation-id: - - ff20b049-004c-4c4a-9b0e-20b03422ecb2 + - 504df0f5-692c-4a9d-b75f-f3e7a5eb2024 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215611Z-r17775d4f98dvpdwhC1SG17y38000000141g000000000s36 + - 20250226T231243Z-167c755789d9f6qshC1SG1fkqn00000002kg0000000001sr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3703,11 +3792,11 @@ interactions: Content-Length: - '1447' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: string: '{"error":{"code":"InvalidFileType","message":"Invalid FileType"}}' @@ -3722,13 +3811,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:11 GMT + - Wed, 26 Feb 2025 23:12:43 GMT mise-correlation-id: - - 16520533-b326-4f30-9d2b-4ffc515261f3 + - a3162ecf-c6ae-4495-bdaf-ac0d54ff8540 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215611Z-r17775d4f98dvpdwhC1SG17y38000000141g000000000s3k + - 20250226T231243Z-167c755789d9f6qshC1SG1fkqn00000002kg0000000001t5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3751,7 +3840,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3760,9 +3849,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:11 GMT + - Wed, 26 Feb 2025 23:12:44 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -3776,9 +3865,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 98F31F13BBE64EF8B5412885CF0CA414 Ref B: MAA201060514031 Ref C: 2025-02-24T21:56:11Z' + - 'Ref A: B921891CA4D441E7A4C45456FE89E766 Ref B: MAA201060513047 Ref C: 2025-02-26T23:12:44Z' status: code: 200 message: OK @@ -3824,11 +3913,11 @@ interactions: Content-Length: - '1447' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview&fileType=URL_TEST_CONFIG + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview&fileType=URL_TEST_CONFIG response: body: string: '{"error":{"code":"InvalidRequestBody","message":"The URL config file @@ -3842,15 +3931,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:56:12 GMT + - Wed, 26 Feb 2025 23:12:45 GMT mise-correlation-id: - - fb7cf7d0-6ba5-4c07-94e7-9578c2e84dc1 + - 052bedb7-b335-4a14-8649-4602ecc677a5 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215612Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000akm6 + - 20250226T231244Z-167c755789dkxplchC1SG1rzhw000000023g000000001ntc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3875,7 +3964,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3884,9 +3973,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:12 GMT + - Wed, 26 Feb 2025 23:12:45 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -3902,7 +3991,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4DEABEC975C64B81BF5715912065A0C9 Ref B: MAA201060516017 Ref C: 2025-02-24T21:56:12Z' + - 'Ref A: 293FEA1C78BA4044820C0E936F6318C4 Ref B: MAA201060513023 Ref C: 2025-02-26T23:12:45Z' status: code: 200 message: OK @@ -3918,9 +4007,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: string: '' @@ -3931,13 +4020,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:56:14 GMT + - Wed, 26 Feb 2025 23:12:47 GMT mise-correlation-id: - - 3058906f-755a-4c2e-88b6-bf50c5919965 + - c2e9bf8c-1ad4-4c48-b357-d2dcdb1b49ab strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215613Z-r17775d4f98qp6vvhC1SG1r7180000000hq0000000006bxc + - 20250226T231246Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000g7wd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3960,7 +4049,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3969,9 +4058,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:14 GMT + - Wed, 26 Feb 2025 23:12:47 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -3987,7 +4076,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DE5E0C97D4494698A6DF21F1B4C1B960 Ref B: MAA201060515045 Ref C: 2025-02-24T21:56:14Z' + - 'Ref A: 4E7F473AB3084A2B8518E5F03707DCFF Ref B: MAA201060515033 Ref C: 2025-02-26T23:12:47Z' status: code: 200 message: OK @@ -4001,9 +4090,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -4017,15 +4106,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:56:16 GMT + - Wed, 26 Feb 2025 23:12:48 GMT mise-correlation-id: - - 549d2883-7d66-43cd-8a24-cbddc99b82cf + - b5c2166d-9d10-4ee7-af45-478964394a8b strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215615Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007wz3 + - 20250226T231248Z-167c755789dw9d62hC1SG1x2v800000001sg000000004f7y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4039,7 +4128,8 @@ interactions: body: '{"displayName": "loadtest-advanced-url-case", "kind": null, "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": {}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false}, - "autoStopCriteria": {}, "baselineTestRunId": null}' + "autoStopCriteria": {}, "baselineTestRunId": null, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -4048,16 +4138,16 @@ interactions: Connection: - keep-alive Content-Length: - - '310' + - '379' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:16.496Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:56:16.496Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:12:48.592Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:12:48.592Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -4069,15 +4159,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:16 GMT + - Wed, 26 Feb 2025 23:12:48 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview mise-correlation-id: - - bc50b1e6-caf0-470b-a7ce-8aed4068437e + - 55474f6a-d28d-43c6-9d32-1825b79eb75f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215616Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007wzn + - 20250226T231248Z-167c755789dw9d62hC1SG1x2v800000001sg000000004f96 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4095,9 +4185,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -4114,13 +4204,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:16 GMT + - Wed, 26 Feb 2025 23:12:49 GMT mise-correlation-id: - - e4516f80-3108-447a-8618-36cc00424418 + - 21ae3be2-7603-488a-807a-ecdacdfddf62 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215616Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007x0e + - 20250226T231248Z-167c755789dw9d62hC1SG1x2v800000001sg000000004faz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4170,14 +4260,14 @@ interactions: Content-Length: - '1447' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview&fileType=URL_TEST_CONFIG + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview&fileType=URL_TEST_CONFIG response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/6050d677-768a-4460-b48f-5667f85b1123?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:06:17.2627967Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/f12e3eaf-4b9e-4687-a81a-3838c289d9c0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A49Z&ske=2025-02-27T06%3A09%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:22:49.9573792Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -4185,19 +4275,19 @@ interactions: connection: - keep-alive content-length: - - '568' + - '580' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:17 GMT + - Wed, 26 Feb 2025 23:12:50 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview mise-correlation-id: - - 32b86e5b-7066-48cb-bf5e-94a0ec3ede7c + - 4618a43e-c33f-4630-9f7a-ba8e047a673b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215616Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007x15 + - 20250226T231249Z-167c755789dw9d62hC1SG1x2v800000001sg000000004fg2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4215,12 +4305,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/6050d677-768a-4460-b48f-5667f85b1123?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:06:17.5180508Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/f12e3eaf-4b9e-4687-a81a-3838c289d9c0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:22:50.2047073Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -4230,17 +4320,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:17 GMT + - Wed, 26 Feb 2025 23:12:50 GMT mise-correlation-id: - - 565df535-bf0f-4639-8f64-26bc0f5db59f + - 1475b62d-6ca9-4a98-af07-52d161e09226 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215617Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007x28 + - 20250226T231250Z-167c755789dw9d62hC1SG1x2v800000001sg000000004fkp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4258,12 +4348,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/6050d677-768a-4460-b48f-5667f85b1123?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:06:22.7735555Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/f12e3eaf-4b9e-4687-a81a-3838c289d9c0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:22:55.4539776Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -4273,17 +4363,17 @@ interactions: connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:22 GMT + - Wed, 26 Feb 2025 23:12:55 GMT mise-correlation-id: - - 10432551-c5e6-466a-9de3-ff25dc753335 + - 8caa8ee9-6d4c-44b4-95b8-552734261f15 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215622Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007xcf + - 20250226T231255Z-167c755789dw9d62hC1SG1x2v800000001sg000000004g3x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4301,12 +4391,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/6050d677-768a-4460-b48f-5667f85b1123?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:06:28.0579275Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/f12e3eaf-4b9e-4687-a81a-3838c289d9c0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A10Z&ske=2025-02-27T06%3A10%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A23%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:23:00.7127197Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -4316,17 +4406,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '576' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:28 GMT + - Wed, 26 Feb 2025 23:13:00 GMT mise-correlation-id: - - 0853327b-74bf-4036-a915-21c5990f6c83 + - 21f9cb4c-7681-49bc-b74a-ee56ff4654b8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215627Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007xqd + - 20250226T231300Z-167c755789dw9d62hC1SG1x2v800000001sg000000004gfh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4344,12 +4434,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/6050d677-768a-4460-b48f-5667f85b1123?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:06:33.3094965Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/f12e3eaf-4b9e-4687-a81a-3838c289d9c0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A10Z&ske=2025-02-27T06%3A10%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A23%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:23:06.3997875Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -4363,56 +4453,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:33 GMT - mise-correlation-id: - - 60d45c1c-c2b0-4792-a5ed-16b7d3356773 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T215633Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007y0p - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/6050d677-768a-4460-b48f-5667f85b1123?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:06:38.5591982Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '570' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 21:56:38 GMT + - Wed, 26 Feb 2025 23:13:06 GMT mise-correlation-id: - - 65141111-5e3c-4574-bf35-df3463454fcf + - cd3c8043-a7dd-4c9b-a061-c172fea5d3f4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215638Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007ybv + - 20250226T231305Z-167c755789dw9d62hC1SG1x2v800000001sg000000004gxx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4430,12 +4477,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/6050d677-768a-4460-b48f-5667f85b1123?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:06:43.8096155Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/f12e3eaf-4b9e-4687-a81a-3838c289d9c0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A10Z&ske=2025-02-27T06%3A10%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A23%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:23:11.6499299Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -4449,13 +4496,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:43 GMT + - Wed, 26 Feb 2025 23:13:11 GMT mise-correlation-id: - - 30852d7f-c743-4e02-b054-018228c4417d + - 497cab0a-5f1e-40f1-b8bc-85469ba5cb60 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215643Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007yra + - 20250226T231311Z-167c755789dw9d62hC1SG1x2v800000001sg000000004hh6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4473,12 +4520,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/6050d677-768a-4460-b48f-5667f85b1123?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:06:49.05796Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/f12e3eaf-4b9e-4687-a81a-3838c289d9c0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A23%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:23:16.9080111Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -4488,17 +4535,17 @@ interactions: connection: - keep-alive content-length: - - '566' + - '574' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:49 GMT + - Wed, 26 Feb 2025 23:13:17 GMT mise-correlation-id: - - b4c1bab0-ddf2-46c0-b807-baa561f875de + - 45e6f68a-ab2b-4b9f-9917-a0e54c68f141 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215648Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007z2u + - 20250226T231316Z-167c755789dw9d62hC1SG1x2v800000001sg000000004k1c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4516,12 +4563,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/6050d677-768a-4460-b48f-5667f85b1123?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:06:54.3093369Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/f12e3eaf-4b9e-4687-a81a-3838c289d9c0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A23%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:23:22.3972239Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -4535,13 +4582,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:54 GMT + - Wed, 26 Feb 2025 23:13:22 GMT mise-correlation-id: - - 1ec79158-c7df-4642-8f4f-cbade390aec8 + - 2ca5ba9d-b166-4ace-850d-3902602f784f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215654Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007zdv + - 20250226T231322Z-167c755789dw9d62hC1SG1x2v800000001sg000000004kmp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4559,12 +4606,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/06d4ad4b-29db-49fb-999c-d98248bf535d.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A54Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:56:54.5708119Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/6050d677-768a-4460-b48f-5667f85b1123?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:56:54.5710577Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:16.496Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:56:49.538Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/2e7777dd-ac93-4c15-aa46-6713fe6fcdc0.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A13%3A22Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:13:22.6641298Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/f12e3eaf-4b9e-4687-a81a-3838c289d9c0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A13%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-27T00:13:22.6645494Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:12:48.592Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:13:20.474Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -4574,17 +4621,17 @@ interactions: connection: - keep-alive content-length: - - '1785' + - '1787' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:54 GMT + - Wed, 26 Feb 2025 23:13:22 GMT mise-correlation-id: - - f5dd88ae-5fc5-4eb2-9cd5-0277aed8dac0 + - f197d6ac-fbec-445a-9c9a-2a1388e3f92c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215654Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007zed + - 20250226T231322Z-167c755789dw9d62hC1SG1x2v800000001sg000000004kp5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4607,7 +4654,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4616,9 +4663,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:55 GMT + - Wed, 26 Feb 2025 23:13:23 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -4634,7 +4681,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 514A8F4931C94F2EAFAD257985D6B662 Ref B: MAA201060516031 Ref C: 2025-02-24T21:56:54Z' + - 'Ref A: 03232F497A844A4F8AD3C836787C7069 Ref B: MAA201060516047 Ref C: 2025-02-26T23:13:22Z' status: code: 200 message: OK @@ -4648,12 +4695,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/06d4ad4b-29db-49fb-999c-d98248bf535d.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A56Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:56:56.4956466Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/6050d677-768a-4460-b48f-5667f85b1123?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:56:56.4960973Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:16.496Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:56:49.538Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/2e7777dd-ac93-4c15-aa46-6713fe6fcdc0.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A13%3A24Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:13:24.896744Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/f12e3eaf-4b9e-4687-a81a-3838c289d9c0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A13%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-27T00:13:24.9076611Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:12:48.592Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:13:20.474Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -4663,17 +4710,17 @@ interactions: connection: - keep-alive content-length: - - '1787' + - '1782' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:56 GMT + - Wed, 26 Feb 2025 23:13:25 GMT mise-correlation-id: - - 9a25e7cf-d56f-42b8-97a5-d8bc06aa84a0 + - 34ade35c-3f96-4f09-a890-cd2718725223 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215655Z-r17775d4f98mc5fbhC1SG1vp2s00000013wg000000008rz0 + - 20250226T231324Z-r17775d4f98dvpdwhC1SG17y380000001a5g0000000049d5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4686,7 +4733,8 @@ interactions: "SystemAssigned", "environmentVariables": {}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "splitAllCSVs": false, "quickStartTest": false, "regionalLoadTestConfig": null}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 90.0, "errorRateTimeWindowInSeconds": - 60}, "baselineTestRunId": null}' + 60}, "baselineTestRunId": null, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": + null}' headers: Accept: - application/json @@ -4695,16 +4743,16 @@ interactions: Connection: - keep-alive Content-Length: - - '414' + - '483' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/06d4ad4b-29db-49fb-999c-d98248bf535d.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A56Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:56:56.8185144Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/6050d677-768a-4460-b48f-5667f85b1123?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:56:56.8187231Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:16.496Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:56:56.81Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/2e7777dd-ac93-4c15-aa46-6713fe6fcdc0.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A49Z&ske=2025-02-27T06%3A09%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A13%3A26Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:13:26.1551024Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/f12e3eaf-4b9e-4687-a81a-3838c289d9c0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A49Z&ske=2025-02-27T06%3A09%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A13%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-27T00:13:26.1554718Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:12:48.592Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:13:26.146Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -4714,17 +4762,17 @@ interactions: connection: - keep-alive content-length: - - '1790' + - '1791' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:56 GMT + - Wed, 26 Feb 2025 23:13:26 GMT mise-correlation-id: - - 69298b70-4c85-4ef3-9ad0-a9bc3c55b06b + - e041818b-5a69-43af-aad9-d855eba3915d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215656Z-r17775d4f98mc5fbhC1SG1vp2s00000013wg000000008s04 + - 20250226T231325Z-r17775d4f98dvpdwhC1SG17y380000001a5g0000000049fu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4742,12 +4790,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/06d4ad4b-29db-49fb-999c-d98248bf535d.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A57Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:06:57.0712608Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/6050d677-768a-4460-b48f-5667f85b1123?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:06:57.0714185Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/2e7777dd-ac93-4c15-aa46-6713fe6fcdc0.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A10Z&ske=2025-02-27T06%3A10%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A23%3A26Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:23:26.4148064Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/f12e3eaf-4b9e-4687-a81a-3838c289d9c0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A10Z&ske=2025-02-27T06%3A10%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A23%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:23:26.414875Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -4757,17 +4805,17 @@ interactions: connection: - keep-alive content-length: - - '1134' + - '1133' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:57 GMT + - Wed, 26 Feb 2025 23:13:26 GMT mise-correlation-id: - - cb88d60d-d5f0-49bb-9930-fe4651e57415 + - 54b50c55-6e14-448c-a886-9bfd2f60ba83 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215656Z-r17775d4f98mc5fbhC1SG1vp2s00000013wg000000008s0h + - 20250226T231326Z-r17775d4f98dvpdwhC1SG17y380000001a5g0000000049m6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4822,14 +4870,14 @@ interactions: Content-Length: - '1756' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview&fileType=URL_TEST_CONFIG + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview&fileType=URL_TEST_CONFIG response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/cd47dffb-be7c-4957-b604-dbbcd8338774?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:06:57.4824852Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/0d40417e-dc60-440f-b5f3-566eede7f59d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A23%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:23:27.4091739Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -4837,19 +4885,19 @@ interactions: connection: - keep-alive content-length: - - '576' + - '580' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:57 GMT + - Wed, 26 Feb 2025 23:13:27 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview mise-correlation-id: - - ecbe5286-4932-4f55-a218-ee06236697b6 + - 25aa3f1a-1013-46e6-ade1-b60344805968 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215657Z-r17775d4f98mc5fbhC1SG1vp2s00000013wg000000008s11 + - 20250226T231326Z-r17775d4f98dvpdwhC1SG17y380000001a5g0000000049n4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4867,55 +4915,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/cd47dffb-be7c-4957-b604-dbbcd8338774?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:06:57.73306Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '580' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 21:56:57 GMT - mise-correlation-id: - - f87c2ff3-1fd1-4c51-aaf1-61604c502223 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T215657Z-r17775d4f98mc5fbhC1SG1vp2s00000013wg000000008s1s - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/cd47dffb-be7c-4957-b604-dbbcd8338774?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:07:02.9937748Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/0d40417e-dc60-440f-b5f3-566eede7f59d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A49Z&ske=2025-02-27T06%3A09%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A23%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:23:27.6646048Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -4925,17 +4930,17 @@ interactions: connection: - keep-alive content-length: - - '578' + - '576' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:03 GMT + - Wed, 26 Feb 2025 23:13:27 GMT mise-correlation-id: - - fd3c94e8-f086-4696-8a9b-043cf8d6703d + - 50f0e94b-f447-4f4b-a184-7ba41195b330 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215702Z-r17775d4f98mc5fbhC1SG1vp2s00000013wg000000008s9s + - 20250226T231327Z-r17775d4f98dvpdwhC1SG17y380000001a5g0000000049r7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4953,12 +4958,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/cd47dffb-be7c-4957-b604-dbbcd8338774?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:07:08.2463152Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/0d40417e-dc60-440f-b5f3-566eede7f59d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A23%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:23:32.9721411Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -4968,17 +4973,17 @@ interactions: connection: - keep-alive content-length: - - '576' + - '580' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:08 GMT + - Wed, 26 Feb 2025 23:13:33 GMT mise-correlation-id: - - 5d075c81-7afe-45e7-b1f9-c719e28c9502 + - 0c588d92-0182-4378-a082-91a7dfed7819 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215708Z-r17775d4f98mc5fbhC1SG1vp2s00000013wg000000008sk7 + - 20250226T231332Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000004a6s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4996,12 +5001,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/cd47dffb-be7c-4957-b604-dbbcd8338774?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:07:13.5050911Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/0d40417e-dc60-440f-b5f3-566eede7f59d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A23%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:23:38.2219843Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5011,17 +5016,17 @@ interactions: connection: - keep-alive content-length: - - '582' + - '578' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:13 GMT + - Wed, 26 Feb 2025 23:13:38 GMT mise-correlation-id: - - fe3622b5-aae8-4709-b6a9-b3264da16c74 + - 5b446b72-2cdb-4281-a953-f318adde593b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215713Z-r17775d4f98mc5fbhC1SG1vp2s00000013wg000000008swd + - 20250226T231338Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000004ar8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5039,12 +5044,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/cd47dffb-be7c-4957-b604-dbbcd8338774?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:07:18.7535696Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/0d40417e-dc60-440f-b5f3-566eede7f59d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A26Z&ske=2025-02-27T06%3A10%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A23%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:23:43.4741567Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5058,13 +5063,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:18 GMT + - Wed, 26 Feb 2025 23:13:43 GMT mise-correlation-id: - - 25952d81-d913-4014-9069-0eedcb5aec35 + - 8dae29fc-ef9a-4549-bdf0-0df058a76951 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215718Z-r17775d4f98mc5fbhC1SG1vp2s00000013wg000000008t4z + - 20250226T231343Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000004b9a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5082,12 +5087,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/cd47dffb-be7c-4957-b604-dbbcd8338774?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:07:24.0082503Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/0d40417e-dc60-440f-b5f3-566eede7f59d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A10Z&ske=2025-02-27T06%3A10%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A23%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:23:48.7246205Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5097,17 +5102,17 @@ interactions: connection: - keep-alive content-length: - - '578' + - '576' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:24 GMT + - Wed, 26 Feb 2025 23:13:48 GMT mise-correlation-id: - - 2b2bdd1a-6cd1-408e-9d8b-3deec4e16015 + - bfa45bf5-081e-48b8-af26-c2e9830a5c2b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215723Z-r17775d4f98mc5fbhC1SG1vp2s00000013wg000000008tdt + - 20250226T231348Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000004bqz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5125,12 +5130,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/cd47dffb-be7c-4957-b604-dbbcd8338774?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:07:29.2563226Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/0d40417e-dc60-440f-b5f3-566eede7f59d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A23%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:23:53.9964295Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5144,13 +5149,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:29 GMT + - Wed, 26 Feb 2025 23:13:54 GMT mise-correlation-id: - - 0493a98f-9d8c-4cae-86a9-72188104e54d + - cbcafce0-83ef-41e8-93ee-18e6fc637ce0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215729Z-r17775d4f98mc5fbhC1SG1vp2s00000013wg000000008tpr + - 20250226T231353Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000004c71 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5168,12 +5173,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-url-requests-updated.json?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/cd47dffb-be7c-4957-b604-dbbcd8338774?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:07:34.5262578Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/0d40417e-dc60-440f-b5f3-566eede7f59d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A23%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-26T23:23:59.2649216Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -5183,17 +5188,17 @@ interactions: connection: - keep-alive content-length: - - '576' + - '578' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:34 GMT + - Wed, 26 Feb 2025 23:13:59 GMT mise-correlation-id: - - 1845af12-6e10-49a8-a627-7b3ef0c39ca3 + - 40dafa05-95e1-4574-acef-4818668fa20e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215734Z-r17775d4f98mc5fbhC1SG1vp2s00000013wg000000008tya + - 20250226T231359Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000004cky x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5211,12 +5216,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/786815bb-ed72-4b71-a171-d7f361678518.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A34Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:57:34.7869371Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/9734c689-5f6b-449d-8495-4d2304185b82/cd47dffb-be7c-4957-b604-dbbcd8338774?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-24T22:57:34.7872288Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:16.496Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:30.03Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/32ced82f-9bb4-4170-b76e-e896d0bb9eb4.jmx?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A49Z&ske=2025-02-27T06%3A09%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A13%3A59Z&sr=b&sp=r&sig=***","fileName":"url_test.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:13:59.5250806Z","validationStatus":"VALIDATION_SUCCESS"},"urlTestConfigFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/9b875b8f-f2fa-43e5-94c1-44b1f6b8d9e2/0d40417e-dc60-440f-b5f3-566eede7f59d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A49Z&ske=2025-02-27T06%3A09%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A13%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-url-requests-updated.json","fileType":"URL_TEST_CONFIG","expireDateTime":"2025-02-27T00:13:59.5254324Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:12:48.592Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:13:57.461Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -5226,17 +5231,17 @@ interactions: connection: - keep-alive content-length: - - '1796' + - '1801' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:34 GMT + - Wed, 26 Feb 2025 23:13:59 GMT mise-correlation-id: - - cb33919f-5959-4c33-9e59-ee5e8c545804 + - 3f5a581d-d1b6-48be-9b18-1e419bf22db3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215734Z-r17775d4f98mc5fbhC1SG1vp2s00000013wg000000008tyr + - 20250226T231359Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000004cmd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5259,7 +5264,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -5268,9 +5273,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:35 GMT + - Wed, 26 Feb 2025 23:13:59 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -5286,7 +5291,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7830AE8533A74A57BE56E3C0AD50B128 Ref B: MAA201060514031 Ref C: 2025-02-24T21:57:35Z' + - 'Ref A: 9211017A6BE44713846B31A1B23D5AC0 Ref B: MAA201060515031 Ref C: 2025-02-26T23:13:59Z' status: code: 200 message: OK @@ -5302,9 +5307,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: string: '' @@ -5315,13 +5320,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:57:36 GMT + - Wed, 26 Feb 2025 23:14:01 GMT mise-correlation-id: - - 0210cb70-90b8-4ef0-87e1-03e1af439c62 + - 432cf484-d44c-481e-9ceb-c80b4cb548b9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215735Z-r17775d4f98p9dsnhC1SG1tym00000000dy000000000a84q + - 20250226T231400Z-167c755789dkxplchC1SG1rzhw00000001yg00000000da4m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5344,7 +5349,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.5326011Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.5326011Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-advnurlload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-advnurlload-000002","name":"clitest-advnurlload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:10.7810709Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:10.7810709Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -5353,9 +5358,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:37 GMT + - Wed, 26 Feb 2025 23:14:02 GMT etag: - - '"4f0195b3-0000-0200-0000-67bcea440000"' + - '"8f011d67-0000-0200-0000-67bf9f2c0000"' expires: - '-1' pragma: @@ -5371,7 +5376,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 90A7330396D1438895C708AF7A4847C7 Ref B: MAA201060516019 Ref C: 2025-02-24T21:57:36Z' + - 'Ref A: 9DD732D5F16E4A0FB86F823AB5C793C1 Ref B: MAA201060513027 Ref C: 2025-02-26T23:14:01Z' status: code: 200 message: OK @@ -5385,9 +5390,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -5401,15 +5406,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:57:38 GMT + - Wed, 26 Feb 2025 23:14:03 GMT mise-correlation-id: - - 6854ed73-21cc-4cbb-9e12-9b053a465dab + - 4c2e57bb-05df-47e9-89f2-21f9e00f5c65 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215737Z-r17775d4f98v6wd6hC1SG1230n00000008rg000000004rdn + - 20250226T231403Z-167c755789dbzxjrhC1SG1x06c00000002b000000000gwdd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5423,7 +5428,8 @@ interactions: body: '{"displayName": "loadtest-advanced-url-case", "kind": "URL", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": {}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false}, - "autoStopCriteria": {}, "baselineTestRunId": null}' + "autoStopCriteria": {}, "baselineTestRunId": null, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -5432,16 +5438,16 @@ interactions: Connection: - keep-alive Content-Length: - - '311' + - '380' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:57:38.764Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:38.764Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:14:03.931Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:14:03.931Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -5453,15 +5459,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:38 GMT + - Wed, 26 Feb 2025 23:14:04 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview mise-correlation-id: - - 4c033e11-9dd2-4a77-96d5-e76530a065b7 + - c39e1098-fbf0-4837-b58f-79adb3ac1400 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215738Z-r17775d4f98v6wd6hC1SG1230n00000008rg000000004ree + - 20250226T231403Z-167c755789dbzxjrhC1SG1x06c00000002b000000000gwg5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5479,9 +5485,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -5498,13 +5504,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:39 GMT + - Wed, 26 Feb 2025 23:14:04 GMT mise-correlation-id: - - eb80f850-fd7d-41fe-9524-7c6ab1353dac + - 73de1a78-6970-4eeb-8aa8-92ac264d0d08 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215738Z-r17775d4f98v6wd6hC1SG1230n00000008rg000000004rev + - 20250226T231404Z-167c755789dbzxjrhC1SG1x06c00000002b000000000gwhp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5613,14 +5619,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=JMX_FILE + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/c055a02c-bdf4-419f-8387-f72853c4b823/591af657-3117-4262-81b4-8410e2cf9117?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:40.4995898Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/7014df39-174d-4685-ae1c-89297ccf1060/97fdb7ad-9c14-43f7-8f1e-bd6c5f05be49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A24%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:24:05.6722582Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -5632,15 +5638,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:40 GMT + - Wed, 26 Feb 2025 23:14:05 GMT location: - - https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - a7545fd2-b9b8-48a3-9d77-298cf5e43f7f + - 2f2cf7c8-9d10-48cd-afb1-89f6666d74dc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215739Z-r17775d4f98v6wd6hC1SG1230n00000008rg000000004rf3 + - 20250226T231404Z-167c755789dbzxjrhC1SG1x06c00000002b000000000gwkq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5658,12 +5664,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/c055a02c-bdf4-419f-8387-f72853c4b823/591af657-3117-4262-81b4-8410e2cf9117?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:40.7570134Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/7014df39-174d-4685-ae1c-89297ccf1060/97fdb7ad-9c14-43f7-8f1e-bd6c5f05be49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A24%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:24:05.9847231Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5673,17 +5679,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:40 GMT + - Wed, 26 Feb 2025 23:14:06 GMT mise-correlation-id: - - c7098e50-7cef-4eea-ab10-bab3857a1eb0 + - b09d97a5-7504-49a8-825a-63f6e144a1df strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215740Z-r17775d4f98v6wd6hC1SG1230n00000008rg000000004rgu + - 20250226T231405Z-167c755789dbzxjrhC1SG1x06c00000002b000000000gws2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5701,12 +5707,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/c055a02c-bdf4-419f-8387-f72853c4b823/591af657-3117-4262-81b4-8410e2cf9117?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:46.0137467Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/7014df39-174d-4685-ae1c-89297ccf1060/97fdb7ad-9c14-43f7-8f1e-bd6c5f05be49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A24%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:24:11.2350932Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5716,17 +5722,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:46 GMT + - Wed, 26 Feb 2025 23:14:11 GMT mise-correlation-id: - - 62078aa2-9f59-44ba-b5c6-83c071cf2da0 + - 46a272e2-a7f3-4169-9d02-fe04d646d4b0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215745Z-r17775d4f98v6wd6hC1SG1230n00000008rg000000004rq8 + - 20250226T231411Z-167c755789dbzxjrhC1SG1x06c00000002b000000000gx9n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5744,12 +5750,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/c055a02c-bdf4-419f-8387-f72853c4b823/591af657-3117-4262-81b4-8410e2cf9117?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:51.2635005Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/7014df39-174d-4685-ae1c-89297ccf1060/97fdb7ad-9c14-43f7-8f1e-bd6c5f05be49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A49Z&ske=2025-02-27T06%3A09%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A24%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:24:16.4870261Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5763,13 +5769,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:51 GMT + - Wed, 26 Feb 2025 23:14:16 GMT mise-correlation-id: - - 7df89e4a-d7b6-4864-a17b-a7ccc9dbfe47 + - 09064c2c-e4e9-46de-ab3d-bb4b8d639027 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215751Z-r17775d4f98v6wd6hC1SG1230n00000008rg000000004ryc + - 20250226T231416Z-167c755789dbzxjrhC1SG1x06c00000002b000000000gxut x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5787,12 +5793,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/c055a02c-bdf4-419f-8387-f72853c4b823/591af657-3117-4262-81b4-8410e2cf9117?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:56.5150935Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/7014df39-174d-4685-ae1c-89297ccf1060/97fdb7ad-9c14-43f7-8f1e-bd6c5f05be49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A24%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:24:21.7407457Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5802,17 +5808,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:56 GMT + - Wed, 26 Feb 2025 23:14:21 GMT mise-correlation-id: - - a7c9d022-150f-42cb-bffd-f9b6b2d2b8a4 + - f87556d1-ea2c-4c16-b4ad-ec530e409804 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215756Z-r17775d4f98v6wd6hC1SG1230n00000008rg000000004s3v + - 20250226T231421Z-167c755789dbzxjrhC1SG1x06c00000002b000000000gyc2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5830,12 +5836,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/c055a02c-bdf4-419f-8387-f72853c4b823/591af657-3117-4262-81b4-8410e2cf9117?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:08:01.7755247Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/7014df39-174d-4685-ae1c-89297ccf1060/97fdb7ad-9c14-43f7-8f1e-bd6c5f05be49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A51Z&ske=2025-02-27T06%3A09%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A24%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:24:27.0078669Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5845,17 +5851,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:01 GMT + - Wed, 26 Feb 2025 23:14:27 GMT mise-correlation-id: - - 5591dcaf-afd5-465a-b53a-7f0676b546eb + - 243195a4-23d2-4c94-897f-7577a64506af strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215801Z-r17775d4f98v6wd6hC1SG1230n00000008rg000000004saw + - 20250226T231426Z-167c755789dbzxjrhC1SG1x06c00000002b000000000gyyq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5873,12 +5879,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/c055a02c-bdf4-419f-8387-f72853c4b823/591af657-3117-4262-81b4-8410e2cf9117?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:08:07.0323781Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/7014df39-174d-4685-ae1c-89297ccf1060/97fdb7ad-9c14-43f7-8f1e-bd6c5f05be49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A24%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:24:32.2591395Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5892,13 +5898,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:07 GMT + - Wed, 26 Feb 2025 23:14:32 GMT mise-correlation-id: - - cdb45b37-c894-4a68-8151-92d90a0800be + - a4804c8c-c748-46ac-b47f-4204fff496f3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215806Z-r17775d4f98v6wd6hC1SG1230n00000008rg000000004smf + - 20250226T231432Z-167c755789dbzxjrhC1SG1x06c00000002b000000000gzfv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5916,12 +5922,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/c055a02c-bdf4-419f-8387-f72853c4b823/591af657-3117-4262-81b4-8410e2cf9117?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A29Z&ske=2025-02-25T04%3A53%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:08:12.2828928Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/7014df39-174d-4685-ae1c-89297ccf1060/97fdb7ad-9c14-43f7-8f1e-bd6c5f05be49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A10Z&ske=2025-02-27T06%3A10%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A24%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:24:37.5119787Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5935,13 +5941,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:12 GMT + - Wed, 26 Feb 2025 23:14:37 GMT mise-correlation-id: - - 4ed54c03-4587-4bff-8d4a-3e6145574b9f + - ae052ea0-acff-4702-9029-fc4f0302c5bf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215812Z-r17775d4f98v6wd6hC1SG1230n00000008rg000000004svm + - 20250226T231437Z-167c755789dbzxjrhC1SG1x06c00000002b000000000h006 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5959,12 +5965,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/c055a02c-bdf4-419f-8387-f72853c4b823/591af657-3117-4262-81b4-8410e2cf9117?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A11Z&ske=2025-02-25T04%3A54%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:08:17.5306915Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/7014df39-174d-4685-ae1c-89297ccf1060/97fdb7ad-9c14-43f7-8f1e-bd6c5f05be49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A04Z&ske=2025-02-27T06%3A10%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A24%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:24:42.7643956Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -5974,17 +5980,17 @@ interactions: connection: - keep-alive content-length: - - '554' + - '566' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:17 GMT + - Wed, 26 Feb 2025 23:14:42 GMT mise-correlation-id: - - 9cdd4e0e-fe01-4e8b-b798-1a4654971236 + - 38d21f12-7c29-4b2a-b318-5e0a504bf45a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215817Z-r17775d4f98v6wd6hC1SG1230n00000008rg000000004t5d + - 20250226T231442Z-167c755789dbzxjrhC1SG1x06c00000002b000000000h0k1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6002,12 +6008,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://cf761f35-6a28-4014-a213-3f6f177bef93.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview + uri: https://86649223-f045-4bd2-bf8c-51302304e167.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-advanced-url-case?api-version=2024-12-01-preview response: body: - string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://mevqpb497gfj44r902cbw40l.z28.blob.storage.azure.net/c055a02c-bdf4-419f-8387-f72853c4b823/591af657-3117-4262-81b4-8410e2cf9117?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:58:17.7952266Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:57:38.764Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:13.231Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://g21t046vtwtln2ddchk6bkas.z41.blob.storage.azure.net/7014df39-174d-4685-ae1c-89297ccf1060/97fdb7ad-9c14-43f7-8f1e-bd6c5f05be49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A50Z&ske=2025-02-27T06%3A09%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A14%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:14:43.0240832Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-advanced-url-case","displayName":"loadtest-advanced-url-case","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:14:03.931Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:14:38.2Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -6017,17 +6023,17 @@ interactions: connection: - keep-alive content-length: - - '1195' + - '1193' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:17 GMT + - Wed, 26 Feb 2025 23:14:43 GMT mise-correlation-id: - - 728fee62-aa03-4cac-ae6b-7b357f92fd82 + - 4265bbda-a238-46ff-a5e6-d897fcd70f2a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215817Z-r17775d4f98v6wd6hC1SG1230n00000008rg000000004t5s + - 20250226T231442Z-167c755789dbzxjrhC1SG1x06c00000002b000000000h0kx x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_app_component.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_app_component.yaml index dee857e15bb..d0d4c6fd730 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_app_component.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_app_component.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003?api-version=2024-01-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","name":"clitestload000003","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2025-02-24T21:56:23.2564814Z","key2":"2025-02-24T21:56:23.2564814Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-02-24T21:56:23.3658554Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-02-24T21:56:23.3658554Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2025-02-24T21:56:23.0689815Z","primaryEndpoints":{"blob":"https://clitestload000003.blob.core.windows.net/","queue":"https://clitestload000003.queue.core.windows.net/","table":"https://clitestload000003.table.core.windows.net/","file":"https://clitestload000003.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","name":"clitestload000003","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2025-02-26T23:07:41.5568864Z","key2":"2025-02-26T23:07:41.5568864Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-02-26T23:07:41.5725117Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-02-26T23:07:41.5725117Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2025-02-26T23:07:41.3850182Z","primaryEndpoints":{"blob":"https://clitestload000003.blob.core.windows.net/","queue":"https://clitestload000003.queue.core.windows.net/","table":"https://clitestload000003.table.core.windows.net/","file":"https://clitestload000003.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:56:44 GMT + - Wed, 26 Feb 2025 23:08:03 GMT expires: - '-1' pragma: @@ -39,9 +39,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 6F01F4174A034C06BEAA5CC60C50EB97 Ref B: MAA201060513019 Ref C: 2025-02-24T21:56:44Z' + - 'Ref A: 32865879C68F46C59CEA07E44424E838 Ref B: MAA201060516009 Ref C: 2025-02-26T23:08:03Z' status: code: 200 message: OK @@ -60,18 +60,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:46.546511Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:46.546511Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:03.8214603Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:03.8214603Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '653' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:45 GMT + - Wed, 26 Feb 2025 23:08:04 GMT etag: - - '"4f01b2c2-0000-0200-0000-67bceaf80000"' + - '"8f019c5f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -87,7 +87,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7EA299AE239E48B486A19CF3E7DE2F31 Ref B: MAA201060515035 Ref C: 2025-02-24T21:56:45Z' + - 'Ref A: 080D3D955E8944BA8E2F43AF6EB72A23 Ref B: MAA201060513029 Ref C: 2025-02-26T23:08:03Z' status: code: 200 message: OK @@ -101,9 +101,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -117,15 +117,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:56:45 GMT + - Wed, 26 Feb 2025 23:08:05 GMT mise-correlation-id: - - 329ecf3d-51bc-46eb-aa70-30f38f87f3df + - 7fdca5be-eabb-42ee-9248-8e59f5d42fd8 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215645Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000098cx + - 20250226T230804Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000fvr9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -141,17 +141,18 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"68caa667-2518-4971-9954-2e72691d25c3": + true}, "passFailCriteria": {"passFailMetrics": {"a2a83024-f2d9-4dda-a053-2318c665a448": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "50e94426-9160-42d2-bdaa-909bc52645b0": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "f7447c54-10fe-493b-b8ed-9aa143d96516": + "78"}, "49b2e696-a55e-4a29-85d6-820cb1bd5bab": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "4393ffd8-5dcf-468f-a496-0e638a70c9e0": {"aggregate": "p75", "clientMetric": "response_time_ms", "condition": ">", "value": - "380"}, "18d51552-2924-44cc-a58b-3ce51e701873": {"aggregate": "p99", "clientMetric": - "response_time_ms", "condition": ">", "value": "520"}, "f2c2d955-e001-404c-a734-8e18e29633f0": + "380"}, "6d6d954c-aa1a-474b-ba7a-ecdf2a6e5b98": {"aggregate": "p99", "clientMetric": + "response_time_ms", "condition": ">", "value": "520"}, "f126eb68-0d55-458d-995b-deeb299ca642": {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", - "value": "540"}, "038a5835-ac9b-4f8d-949c-cc0d2b857a58": {"aggregate": "avg", + "value": "540"}, "c8df28a6-79e5-40df-9987-e33a847fb8ea": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -160,17 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"68caa667-2518-4971-9954-2e72691d25c3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"50e94426-9160-42d2-bdaa-909bc52645b0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f7447c54-10fe-493b-b8ed-9aa143d96516":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"18d51552-2924-44cc-a58b-3ce51e701873":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"f2c2d955-e001-404c-a734-8e18e29633f0":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"038a5835-ac9b-4f8d-949c-cc0d2b857a58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"app-component-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:46.265Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:56:46.265Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a2a83024-f2d9-4dda-a053-2318c665a448":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49b2e696-a55e-4a29-85d6-820cb1bd5bab":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"4393ffd8-5dcf-468f-a496-0e638a70c9e0":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"6d6d954c-aa1a-474b-ba7a-ecdf2a6e5b98":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"f126eb68-0d55-458d-995b-deeb299ca642":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c8df28a6-79e5-40df-9987-e33a847fb8ea":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"app-component-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:05.94Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:05.94Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -178,19 +179,19 @@ interactions: connection: - keep-alive content-length: - - '1654' + - '1652' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:46 GMT + - Wed, 26 Feb 2025 23:08:06 GMT location: - - https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-12-01-preview + - https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-12-01-preview mise-correlation-id: - - 671446c0-df29-40b0-a936-cfae56f1ff5a + - ba7ee3dd-1e65-4efa-9e73-882f8a5c8cb3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215645Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000098dc + - 20250226T230805Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000fvut x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -208,9 +209,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -227,13 +228,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:47 GMT + - Wed, 26 Feb 2025 23:08:06 GMT mise-correlation-id: - - 1ee178f6-555d-44c3-a159-f775861b848c + - 382c1fef-4479-4c75-8e68-ce71a9ff30ae strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215646Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000098dv + - 20250226T230806Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000fvws x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -258,14 +259,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/6b915da0-99f1-403c-859d-1577bc43d554?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:06:47.3746359Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/9eb04db5-efc2-41d6-ab8f-9d7c9916e3fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A06Z&ske=2025-02-27T06%3A08%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A06Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:06.7409557Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -273,19 +274,19 @@ interactions: connection: - keep-alive content-length: - - '573' + - '575' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:47 GMT + - Wed, 26 Feb 2025 23:08:06 GMT location: - - https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 2987be97-0fe8-4aa2-8a06-924ddfa45bf6 + - 6fedc20a-e3f5-4dfb-a071-d5f6c2bfdf55 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215647Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000098f4 + - 20250226T230806Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000fvxu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -303,12 +304,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/6b915da0-99f1-403c-859d-1577bc43d554?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:06:47.6632621Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/9eb04db5-efc2-41d6-ab8f-9d7c9916e3fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A07Z&ske=2025-02-27T06%3A08%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A07Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:07.0507352Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -318,17 +319,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '577' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:47 GMT + - Wed, 26 Feb 2025 23:08:07 GMT mise-correlation-id: - - 80f010d8-2d66-48db-910b-15a1654324c4 + - eceaf14e-239b-4e91-a576-32a8bf9ec17d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215647Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000098ft + - 20250226T230806Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000fvzk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -357,14 +358,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/e838c11e-35ba-4822-bc9a-e46444ecff58?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:06:48.0803349Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/babd61e5-ade4-41db-9104-72244c798ebf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A07Z&ske=2025-02-27T06%3A08%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:07.4910714Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -372,19 +373,19 @@ interactions: connection: - keep-alive content-length: - - '569' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:48 GMT + - Wed, 26 Feb 2025 23:08:07 GMT location: - - https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 6d64ed4d-98de-4a53-a227-b2f830982500 + - ad61303f-9bf9-4a29-82ad-8b8500c22d5e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215647Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000098gn + - 20250226T230807Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000fw0q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -402,12 +403,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/e838c11e-35ba-4822-bc9a-e46444ecff58?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:06:48.3601712Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/babd61e5-ade4-41db-9104-72244c798ebf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A07Z&ske=2025-02-27T06%3A08%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:07.7773755Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -417,17 +418,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:48 GMT + - Wed, 26 Feb 2025 23:08:07 GMT mise-correlation-id: - - 92d902c5-1d2b-40cf-bbb7-2723c74fbf30 + - a66c340d-5e82-4520-b705-e236ee329fc6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215648Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000098h9 + - 20250226T230807Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000fw2e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -536,14 +537,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/1e78a17d-95f2-4d85-988e-f6713401cb5d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:06:48.8284738Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/cc1b9e6e-8ba2-493e-85ed-2afa247ab0ab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A07Z&ske=2025-02-27T06%3A08%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:08.3366275Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -551,19 +552,19 @@ interactions: connection: - keep-alive content-length: - - '559' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:48 GMT + - Wed, 26 Feb 2025 23:08:08 GMT location: - - https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - affd8434-f25d-407e-b586-da7040662602 + - ca611284-e1bf-4b24-a528-5d2e2fba13ad strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215648Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000098hr + - 20250226T230807Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000fw3n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -581,12 +582,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/1e78a17d-95f2-4d85-988e-f6713401cb5d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:06:49.0806653Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/cc1b9e6e-8ba2-493e-85ed-2afa247ab0ab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A06Z&ske=2025-02-27T06%3A08%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:08.5918015Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -596,60 +597,17 @@ interactions: connection: - keep-alive content-length: - - '563' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 21:56:49 GMT - mise-correlation-id: - - 36eb5165-8a94-4b99-a1df-5c7e5ae5cce3 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T215648Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000098ka - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/1e78a17d-95f2-4d85-988e-f6713401cb5d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A54Z&ske=2025-02-25T04%3A56%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:06:54.3672984Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '561' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:54 GMT + - Wed, 26 Feb 2025 23:08:08 GMT mise-correlation-id: - - 5ad314df-c1c1-4e24-8ddb-bb9c7259312a + - fca742ef-413d-45b6-8931-0a18ec784fb1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215654Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000098ry + - 20250226T230808Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000fw5f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -667,12 +625,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/1e78a17d-95f2-4d85-988e-f6713401cb5d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A54Z&ske=2025-02-25T04%3A56%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:06:59.6186718Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/cc1b9e6e-8ba2-493e-85ed-2afa247ab0ab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A07Z&ske=2025-02-27T06%3A08%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:13.8412113Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -682,17 +640,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:59 GMT + - Wed, 26 Feb 2025 23:08:13 GMT mise-correlation-id: - - 23070144-5acf-476d-abb9-95d344b1180e + - 95356080-81fb-40d2-bc90-c108b3b2850d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215659Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000098x5 + - 20250226T230813Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000fwvb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -710,12 +668,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/1e78a17d-95f2-4d85-988e-f6713401cb5d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:04.9591981Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/cc1b9e6e-8ba2-493e-85ed-2afa247ab0ab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A07Z&ske=2025-02-27T06%3A08%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:19.092765Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -725,17 +683,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:05 GMT + - Wed, 26 Feb 2025 23:08:19 GMT mise-correlation-id: - - 57e75d30-2284-4bab-bda6-e1f0f6d009eb + - fa3f7d4c-4bd6-41b6-87f3-e7f45642f4c2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215704Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009938 + - 20250226T230818Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000fxmh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -753,12 +711,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/1e78a17d-95f2-4d85-988e-f6713401cb5d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A54Z&ske=2025-02-25T04%3A56%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:10.2058015Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/cc1b9e6e-8ba2-493e-85ed-2afa247ab0ab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A24Z&ske=2025-02-27T06%3A08%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:24.5157265Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -772,13 +730,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:10 GMT + - Wed, 26 Feb 2025 23:08:24 GMT mise-correlation-id: - - b14acd20-0b57-4ed7-a1a4-d4a95ada310d + - 868abc41-bd59-489b-a231-065035371475 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215710Z-r17775d4f98k7mk2hC1SG1n7700000000rq000000000999t + - 20250226T230824Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000fy9a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -796,12 +754,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/1e78a17d-95f2-4d85-988e-f6713401cb5d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:15.4558682Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/cc1b9e6e-8ba2-493e-85ed-2afa247ab0ab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A24Z&ske=2025-02-27T06%3A08%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:29.7685641Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -815,13 +773,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:15 GMT + - Wed, 26 Feb 2025 23:08:29 GMT mise-correlation-id: - - 578f20ca-c1d4-4bc9-bdd3-3fd2d8b75d82 + - cc0cea2e-41ec-4fcb-8c02-bdf1ad24aafd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215715Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000099fx + - 20250226T230829Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000fz1g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -839,12 +797,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/1e78a17d-95f2-4d85-988e-f6713401cb5d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:20.704384Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/cc1b9e6e-8ba2-493e-85ed-2afa247ab0ab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A35Z&ske=2025-02-27T06%3A08%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:35.0579531Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -854,17 +812,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:20 GMT + - Wed, 26 Feb 2025 23:08:35 GMT mise-correlation-id: - - d9faabc4-33ce-405b-a92a-c8aee9e11b09 + - 88ac2381-6306-4201-a4e2-a4567246e81e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215720Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000099r3 + - 20250226T230834Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000fzq7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -882,12 +840,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/1e78a17d-95f2-4d85-988e-f6713401cb5d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:25.9545397Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/cc1b9e6e-8ba2-493e-85ed-2afa247ab0ab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A07Z&ske=2025-02-27T06%3A08%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:40.3333054Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -897,17 +855,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:26 GMT + - Wed, 26 Feb 2025 23:08:40 GMT mise-correlation-id: - - 0ebd43ca-6af2-47a1-8d5e-2faa013bd90d + - 452813f7-32f1-4e95-8d54-ab96ebb5d3a2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215725Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000099yt + - 20250226T230840Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000g0e4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -925,13 +883,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"68caa667-2518-4971-9954-2e72691d25c3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"50e94426-9160-42d2-bdaa-909bc52645b0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f7447c54-10fe-493b-b8ed-9aa143d96516":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"18d51552-2924-44cc-a58b-3ce51e701873":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"f2c2d955-e001-404c-a734-8e18e29633f0":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"038a5835-ac9b-4f8d-949c-cc0d2b857a58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/1e78a17d-95f2-4d85-988e-f6713401cb5d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:57:26.2056444Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/6b915da0-99f1-403c-859d-1577bc43d554?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A26Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:57:26.206337Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/e838c11e-35ba-4822-bc9a-e46444ecff58?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:57:26.2064889Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"app-component-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:46.265Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:25.619Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a2a83024-f2d9-4dda-a053-2318c665a448":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49b2e696-a55e-4a29-85d6-820cb1bd5bab":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"4393ffd8-5dcf-468f-a496-0e638a70c9e0":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"6d6d954c-aa1a-474b-ba7a-ecdf2a6e5b98":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"f126eb68-0d55-458d-995b-deeb299ca642":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c8df28a6-79e5-40df-9987-e33a847fb8ea":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/cc1b9e6e-8ba2-493e-85ed-2afa247ab0ab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A07Z&ske=2025-02-27T06%3A08%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:40.5992925Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/9eb04db5-efc2-41d6-ab8f-9d7c9916e3fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A07Z&ske=2025-02-27T06%3A08%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A40Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:40.6000755Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/babd61e5-ade4-41db-9104-72244c798ebf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A07Z&ske=2025-02-27T06%3A08%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:40.6004451Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"app-component-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:05.94Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:39.202Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -941,17 +899,17 @@ interactions: connection: - keep-alive content-length: - - '3382' + - '3378' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:26 GMT + - Wed, 26 Feb 2025 23:08:40 GMT mise-correlation-id: - - 1acacbfd-7d1b-4d5d-af89-1c3d631cae43 + - 30b2f464-ad13-4626-9ba7-5dc6b17a8575 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215726Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000099z6 + - 20250226T230840Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000g0f8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -974,18 +932,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:46.546511Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:46.546511Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:03.8214603Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:03.8214603Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '653' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:26 GMT + - Wed, 26 Feb 2025 23:08:41 GMT etag: - - '"4f01b2c2-0000-0200-0000-67bceaf80000"' + - '"8f019c5f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -1001,7 +959,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 55183D9CA87A42A9B48AFEEAB526916F Ref B: MAA201060513017 Ref C: 2025-02-24T21:57:26Z' + - 'Ref A: EEB1ED68F751408EB056F62ED0E8C2DD Ref B: MAA201060516053 Ref C: 2025-02-26T23:08:40Z' status: code: 200 message: OK @@ -1015,13 +973,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"68caa667-2518-4971-9954-2e72691d25c3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"50e94426-9160-42d2-bdaa-909bc52645b0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f7447c54-10fe-493b-b8ed-9aa143d96516":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"18d51552-2924-44cc-a58b-3ce51e701873":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"f2c2d955-e001-404c-a734-8e18e29633f0":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"038a5835-ac9b-4f8d-949c-cc0d2b857a58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/1e78a17d-95f2-4d85-988e-f6713401cb5d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A54Z&ske=2025-02-25T04%3A56%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:57:27.2467506Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/6b915da0-99f1-403c-859d-1577bc43d554?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A54Z&ske=2025-02-25T04%3A56%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A27Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:57:27.2471697Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://ysbg76cmjediyotqhjc04ldo.z38.blob.storage.azure.net/75394c6e-973e-4206-8e09-6c872bbb5925/e838c11e-35ba-4822-bc9a-e46444ecff58?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A54Z&ske=2025-02-25T04%3A56%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:57:27.2472608Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"app-component-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:46.265Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:25.619Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"a2a83024-f2d9-4dda-a053-2318c665a448":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"49b2e696-a55e-4a29-85d6-820cb1bd5bab":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"4393ffd8-5dcf-468f-a496-0e638a70c9e0":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"6d6d954c-aa1a-474b-ba7a-ecdf2a6e5b98":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"f126eb68-0d55-458d-995b-deeb299ca642":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c8df28a6-79e5-40df-9987-e33a847fb8ea":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/cc1b9e6e-8ba2-493e-85ed-2afa247ab0ab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A07Z&ske=2025-02-27T06%3A08%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:42.6273754Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/9eb04db5-efc2-41d6-ab8f-9d7c9916e3fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A07Z&ske=2025-02-27T06%3A08%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A42Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:42.6276581Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://vwl1fqxp28dtqwjxco19r747.z38.blob.storage.azure.net/96553acb-e64d-45f6-8ff6-13a7487ac129/babd61e5-ade4-41db-9104-72244c798ebf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A07Z&ske=2025-02-27T06%3A08%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:42.6277723Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"app-component-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:05.94Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:39.202Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1031,17 +989,17 @@ interactions: connection: - keep-alive content-length: - - '3387' + - '3392' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:27 GMT + - Wed, 26 Feb 2025 23:08:42 GMT mise-correlation-id: - - b0a31a97-3da1-4215-b455-7e414dbf7b6b + - 2839ea49-e502-4f8e-9eef-a5162c84a3b0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215727Z-r17775d4f98lnpwthC1SG1g1zn000000090g000000008aer + - 20250226T230842Z-167c755789dbhjzdhC1SG1t7h800000001r0000000008qky x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1064,18 +1022,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:46.546511Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:46.546511Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:03.8214603Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:03.8214603Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '653' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:27 GMT + - Wed, 26 Feb 2025 23:08:43 GMT etag: - - '"4f01b2c2-0000-0200-0000-67bceaf80000"' + - '"8f019c5f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -1091,14 +1049,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CDC96B6A351E487696D15F1CBA72BEF9 Ref B: MAA201060515009 Ref C: 2025-02-24T21:57:27Z' + - 'Ref A: A275605D230B4F3DB4F2734A230A2D28 Ref B: MAA201060516051 Ref C: 2025-02-26T23:08:42Z' status: code: 200 message: OK - request: - body: '{"testId": "app-component-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-duirtqvxs5apfrpjv/providers/Microsoft.Storage/storageAccounts/clitestloadkd3kcsl2i": - {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-duirtqvxs5apfrpjv/providers/Microsoft.Storage/storageAccounts/clitestloadkd3kcsl2i", - "resourceName": "clitestloadkd3kcsl2i", "resourceType": "Microsoft.Storage/storageAccounts", + body: '{"testId": "app-component-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-ivgpor4rcgc5gmksk/providers/Microsoft.Storage/storageAccounts/clitestloadhimxtvxks": + {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-ivgpor4rcgc5gmksk/providers/Microsoft.Storage/storageAccounts/clitestloadhimxtvxks", + "resourceName": "clitestloadhimxtvxks", "resourceType": "Microsoft.Storage/storageAccounts", "kind": "Storage"}}}' headers: Accept: @@ -1110,14 +1068,14 @@ interactions: Content-Length: - '513' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/merge-patch+json method: PATCH - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-12-01-preview response: body: - string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"app-component-test-case","createdDateTime":"2025-02-24T21:57:28.77Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:28.77Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"app-component-test-case","createdDateTime":"2025-02-26T23:08:44.622Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:44.622Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1125,19 +1083,19 @@ interactions: connection: - keep-alive content-length: - - '733' + - '735' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:28 GMT + - Wed, 26 Feb 2025 23:08:44 GMT location: - - https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-12-01-preview + - https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-12-01-preview mise-correlation-id: - - 3d99d3cc-9b2c-4f65-bf5b-3a73bdfdf5be + - 724934e5-d518-4e08-a6b9-af5da6645446 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215728Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002vfm + - 20250226T230844Z-167c755789dx4ktjhC1SG17mp000000000rg0000000075s2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1160,18 +1118,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:46.546511Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:46.546511Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:03.8214603Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:03.8214603Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '653' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:29 GMT + - Wed, 26 Feb 2025 23:08:45 GMT etag: - - '"4f01b2c2-0000-0200-0000-67bceaf80000"' + - '"8f019c5f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -1187,7 +1145,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 92E8492EE9F14A4FA1B1B07146AF2A3E Ref B: MAA201060516033 Ref C: 2025-02-24T21:57:29Z' + - 'Ref A: 4CC37173B4014B7B9B4701B1550BCC25 Ref B: MAA201060516053 Ref C: 2025-02-26T23:08:44Z' status: code: 200 message: OK @@ -1201,12 +1159,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-12-01-preview response: body: - string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"app-component-test-case","createdDateTime":"2025-02-24T21:57:28.77Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:28.77Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"app-component-test-case","createdDateTime":"2025-02-26T23:08:44.622Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:44.622Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1216,17 +1174,17 @@ interactions: connection: - keep-alive content-length: - - '733' + - '735' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:30 GMT + - Wed, 26 Feb 2025 23:08:46 GMT mise-correlation-id: - - cea9aae6-2cc3-47ca-ac51-874636f473cb + - 6dce952a-0a8f-41c0-9919-b6782901a3bf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215730Z-r17775d4f98p9dsnhC1SG1tym00000000e40000000001zyb + - 20250226T230846Z-167c755789dpktj6hC1SG1nr68000000023g00000000f1ud x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1249,18 +1207,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:46.546511Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:46.546511Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:03.8214603Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:03.8214603Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '653' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:31 GMT + - Wed, 26 Feb 2025 23:08:47 GMT etag: - - '"4f01b2c2-0000-0200-0000-67bceaf80000"' + - '"8f019c5f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -1276,12 +1234,12 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9DB490E160A64315A56125F1EB6F2CB1 Ref B: MAA201060516049 Ref C: 2025-02-24T21:57:31Z' + - 'Ref A: FA03A4D1A07E4771B9ED3B5AFEF66335 Ref B: MAA201060515047 Ref C: 2025-02-26T23:08:46Z' status: code: 200 message: OK - request: - body: '{"testId": "app-component-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-duirtqvxs5apfrpjv/providers/Microsoft.Storage/storageAccounts/clitestloadkd3kcsl2i": + body: '{"testId": "app-component-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-ivgpor4rcgc5gmksk/providers/Microsoft.Storage/storageAccounts/clitestloadhimxtvxks": null}}' headers: Accept: @@ -1293,14 +1251,14 @@ interactions: Content-Length: - '225' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/merge-patch+json method: PATCH - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-12-01-preview response: body: - string: '{"components":{},"testId":"app-component-test-case","createdDateTime":"2025-02-24T21:57:28.77Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:31.749Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{},"testId":"app-component-test-case","createdDateTime":"2025-02-26T23:08:44.622Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:47.788Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1310,17 +1268,17 @@ interactions: connection: - keep-alive content-length: - - '221' + - '222' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:31 GMT + - Wed, 26 Feb 2025 23:08:48 GMT mise-correlation-id: - - 0810e055-2778-4641-a9b1-7fe1f2cf9177 + - 4329762f-12b3-4a15-bc91-983e5bbb8f94 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215731Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000acft + - 20250226T230847Z-r17775d4f98k7mk2hC1SG1n7700000000xyg000000006y55 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1343,18 +1301,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:46.546511Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:46.546511Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:03.8214603Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:03.8214603Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '653' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:32 GMT + - Wed, 26 Feb 2025 23:08:48 GMT etag: - - '"4f01b2c2-0000-0200-0000-67bceaf80000"' + - '"8f019c5f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -1370,7 +1328,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EE195759E5F64EBF966605D4E65D5DDE Ref B: MAA201060514035 Ref C: 2025-02-24T21:57:32Z' + - 'Ref A: 8947ADFFE2264A1098AFF9DDAAAEB235 Ref B: MAA201060515035 Ref C: 2025-02-26T23:08:48Z' status: code: 200 message: OK @@ -1384,12 +1342,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7ddf26a7-5cb0-4bd5-8db5-07da9e112f3c.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-12-01-preview + uri: https://ae6fe55f-c6bd-47c5-9e0d-fbb502bff5d8.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-12-01-preview response: body: - string: '{"components":{},"testId":"app-component-test-case","createdDateTime":"2025-02-24T21:57:28.77Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:31.749Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{},"testId":"app-component-test-case","createdDateTime":"2025-02-26T23:08:44.622Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:47.788Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1399,17 +1357,17 @@ interactions: connection: - keep-alive content-length: - - '221' + - '222' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:33 GMT + - Wed, 26 Feb 2025 23:08:49 GMT mise-correlation-id: - - 99db7e80-cd96-493a-a537-4351154fb297 + - b5d7399c-cb87-49a6-bc19-be56742efc43 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215733Z-r17775d4f98jjkc6hC1SG1dcu800000008m0000000003rb0 + - 20250226T230848Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004qxu x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_autostop.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_autostop.yaml index 35601260b01..e4c4aa90916 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_autostop.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_autostop.yaml @@ -14,7 +14,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:35.1290546Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:35.1290546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:27.0674433Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:27.0674433Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -23,9 +23,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:08 GMT + - Wed, 26 Feb 2025 23:08:00 GMT etag: - - '"4f01bcd0-0000-0200-0000-67bceba30000"' + - '"8f01bc60-0000-0200-0000-67bf9ec50000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2D2D5471DED748AFA2CD32C0C81D6F71 Ref B: MAA201060514045 Ref C: 2025-02-24T21:59:07Z' + - 'Ref A: 471757C7AE2845DD91839141DD96A91E Ref B: MAA201060514035 Ref C: 2025-02-26T23:08:00Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -71,15 +71,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:59:09 GMT + - Wed, 26 Feb 2025 23:08:02 GMT mise-correlation-id: - - 0e1a336b-4e64-4a97-8f3a-f26e2119193b + - 16270010-80c9-425a-930b-0949f243e298 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215908Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008g03 + - 20250226T230801Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000fe7w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -95,17 +95,17 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": - {"dae87f7a-699c-4a5a-8260-9ac039c121ed": {"aggregate": "avg", "clientMetric": - "requests_per_sec", "condition": ">", "value": "78"}, "fa831923-6fbe-470b-9cbc-8f7dffbdfacd": + {"2f27e4f9-155c-4fe5-974c-44da0213cf59": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "8328142e-5c99-4268-9a24-71e5105667d0": {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "dc5e905b-6c22-4abb-ae9d-8762bcd30cf2": {"aggregate": "p75", "clientMetric": - "response_time_ms", "condition": ">", "value": "380"}, "b9981410-a81b-4a30-a122-70c932493664": + "50"}, "37f3411b-5a73-46b2-96d4-7b563d1a8655": {"aggregate": "p75", "clientMetric": + "response_time_ms", "condition": ">", "value": "380"}, "a28ebe72-619f-4c1a-8674-44269b029be0": {"aggregate": "p99", "clientMetric": "response_time_ms", "condition": ">", "value": - "520"}, "c703ae7b-76ca-4b46-9f29-764adbc9cd69": {"aggregate": "p99.9", "clientMetric": - "response_time_ms", "condition": ">", "value": "540"}, "f3e92865-c143-487a-b221-d5d66b835d44": + "520"}, "7e8ebd48-d3fe-45b5-8f62-59d93427df0b": {"aggregate": "p99.9", "clientMetric": + "response_time_ms", "condition": ">", "value": "540"}, "520c277c-5e08-498f-9570-a37075fc885e": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": - true}}' + true}, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,16 +114,16 @@ interactions: Connection: - keep-alive Content-Length: - - '1284' + - '1353' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"dae87f7a-699c-4a5a-8260-9ac039c121ed":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fa831923-6fbe-470b-9cbc-8f7dffbdfacd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dc5e905b-6c22-4abb-ae9d-8762bcd30cf2":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"b9981410-a81b-4a30-a122-70c932493664":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"c703ae7b-76ca-4b46-9f29-764adbc9cd69":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"f3e92865-c143-487a-b221-d5d66b835d44":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:09.403Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2f27e4f9-155c-4fe5-974c-44da0213cf59":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8328142e-5c99-4268-9a24-71e5105667d0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"37f3411b-5a73-46b2-96d4-7b563d1a8655":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a28ebe72-619f-4c1a-8674-44269b029be0":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7e8ebd48-d3fe-45b5-8f62-59d93427df0b":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"520c277c-5e08-498f-9570-a37075fc885e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:02.644Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -135,15 +135,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:09 GMT + - Wed, 26 Feb 2025 23:08:02 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview mise-correlation-id: - - ca245b69-f36b-4c8b-bc41-218d8d481145 + - 76d8a802-4c99-4e61-9f92-f5e9ccadd900 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215909Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008g0r + - 20250226T230802Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000fea1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -161,9 +161,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -180,13 +180,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:09 GMT + - Wed, 26 Feb 2025 23:08:03 GMT mise-correlation-id: - - affca39b-ec92-4f45-84d0-d022abda8687 + - 6f9577e9-2c07-47cf-9656-ca987006f5cf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215909Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008g1m + - 20250226T230802Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000feb6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -211,14 +211,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:09:10.174757Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A03Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:03.5480917Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -226,19 +226,19 @@ interactions: connection: - keep-alive content-length: - - '572' + - '574' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:10 GMT + - Wed, 26 Feb 2025 23:08:03 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - ba743717-7118-47d5-aed9-6009ace07769 + - 865414e8-3128-4973-9c68-07a1fa1d7347 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215909Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008g24 + - 20250226T230803Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000febr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -256,12 +256,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:09:10.5971092Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A03Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:03.8451661Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -271,17 +271,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '574' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:10 GMT + - Wed, 26 Feb 2025 23:08:03 GMT mise-correlation-id: - - 716709d8-86aa-4899-b0e7-382ed6164f6f + - 8fe3dfa9-1adc-4a3c-b166-0c591897a072 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215910Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008g35 + - 20250226T230803Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000fecz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -310,14 +310,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:09:11.1726262Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:04.2859533Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -325,19 +325,19 @@ interactions: connection: - keep-alive content-length: - - '565' + - '564' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:11 GMT + - Wed, 26 Feb 2025 23:08:04 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 8fc7af90-f7f1-47a0-99c9-090ee1eae5c1 + - 2a6382c5-fda4-4c24-b39a-e6c5d0d4d20f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215910Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008g40 + - 20250226T230803Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000fedp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -355,12 +355,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A11Z&ske=2025-02-25T04%3A59%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:09:11.9996853Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:04.6313107Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -370,17 +370,17 @@ interactions: connection: - keep-alive content-length: - - '567' + - '564' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:12 GMT + - Wed, 26 Feb 2025 23:08:04 GMT mise-correlation-id: - - b7b511d4-67a7-45b8-ad3e-fe723963a452 + - 4ee8e309-f419-41be-aff6-ca7363d286e7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215911Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008g55 + - 20250226T230804Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000feec x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -489,14 +489,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:12.4980698Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:05.1663572Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -504,19 +504,19 @@ interactions: connection: - keep-alive content-length: - - '567' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:12 GMT + - Wed, 26 Feb 2025 23:08:05 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - b7d68c37-0391-4757-98e3-e33f7a510768 + - 27d54467-63a3-4102-904c-d9739cf64903 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215912Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008g77 + - 20250226T230804Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000fef6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -534,55 +534,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:13.5300701Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '561' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 21:59:13 GMT - mise-correlation-id: - - 69e9b7b7-e666-4880-bfae-d27826f1c000 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T215912Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008g8v - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:18.7840419Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:05.7355075Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -592,17 +549,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:18 GMT + - Wed, 26 Feb 2025 23:08:05 GMT mise-correlation-id: - - a8c5edec-58a5-4834-b9c1-5ce775b2e51b + - c53345a8-3a80-4b12-b9f9-9ccc5ccd77cb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215918Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008gq0 + - 20250226T230805Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000feg2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -620,12 +577,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:24.0458508Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:11.0231413Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -635,17 +592,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:24 GMT + - Wed, 26 Feb 2025 23:08:11 GMT mise-correlation-id: - - b199ca7e-1d65-485c-9030-828921876be5 + - 35a41dd0-76cd-49bf-8078-4e2b2cedb536 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215923Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008h1e + - 20250226T230810Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000ff0s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -663,12 +620,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:29.2944696Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:16.7734081Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -678,17 +635,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '566' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:29 GMT + - Wed, 26 Feb 2025 23:08:16 GMT mise-correlation-id: - - 197b6a2e-ad2c-4f43-8022-e11cc4d0ec1b + - 4524e439-8df9-429c-91de-7aad75808c21 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215929Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008hbe + - 20250226T230816Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000ffhd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -706,12 +663,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:34.5429511Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:22.0267665Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -721,17 +678,17 @@ interactions: connection: - keep-alive content-length: - - '567' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:34 GMT + - Wed, 26 Feb 2025 23:08:22 GMT mise-correlation-id: - - 7ad1219b-bb60-4e37-a3a5-44197755801e + - 75f1fd91-c6ea-4fa3-bc66-838edc4fbef9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215934Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008hre + - 20250226T230821Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000ffzs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -749,12 +706,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:39.8100733Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:27.2888927Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -764,17 +721,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:39 GMT + - Wed, 26 Feb 2025 23:08:27 GMT mise-correlation-id: - - fb837761-6bcf-42f9-818d-951b98226308 + - ad1ec4a6-66b3-41b0-a4a0-b79d010639aa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215939Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008k40 + - 20250226T230827Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000fgc8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -792,12 +749,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:45.062655Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:32.5414926Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -811,56 +768,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:45 GMT - mise-correlation-id: - - 8c5f023d-c422-4144-8ee7-51563aa59382 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T215944Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008kez - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:50.3134864Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '561' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 21:59:50 GMT + - Wed, 26 Feb 2025 23:08:32 GMT mise-correlation-id: - - 3fc8b875-118b-4bba-8950-70831f1690f6 + - 4b945bcc-f214-4f7f-b78b-abd5b33ad54e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215950Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008kua + - 20250226T230832Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000fgwt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -878,12 +792,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:55.5647443Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:37.7999279Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -893,17 +807,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:55 GMT + - Wed, 26 Feb 2025 23:08:37 GMT mise-correlation-id: - - 825c57bb-ab62-4df8-b4b4-fc821d554b9a + - eb10cc39-60b3-49e6-b192-ef39040e709a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215955Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008m5s + - 20250226T230837Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000fhdv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -921,12 +835,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"dae87f7a-699c-4a5a-8260-9ac039c121ed":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fa831923-6fbe-470b-9cbc-8f7dffbdfacd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dc5e905b-6c22-4abb-ae9d-8762bcd30cf2":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"b9981410-a81b-4a30-a122-70c932493664":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"c703ae7b-76ca-4b46-9f29-764adbc9cd69":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"f3e92865-c143-487a-b221-d5d66b835d44":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:59:55.8137917Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:55.8143111Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:59:55.8144361Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:55.365Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2f27e4f9-155c-4fe5-974c-44da0213cf59":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8328142e-5c99-4268-9a24-71e5105667d0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"37f3411b-5a73-46b2-96d4-7b563d1a8655":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a28ebe72-619f-4c1a-8674-44269b029be0":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7e8ebd48-d3fe-45b5-8f62-59d93427df0b":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"520c277c-5e08-498f-9570-a37075fc885e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:38.0552897Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A38Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:38.0556968Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:38.05588Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:35.815Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -936,17 +850,17 @@ interactions: connection: - keep-alive content-length: - - '3351' + - '3346' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:55 GMT + - Wed, 26 Feb 2025 23:08:38 GMT mise-correlation-id: - - 392b73ae-1488-463e-a7ac-e0dca91a8652 + - 65994a87-3a5a-458a-bf00-9ca2f59a3354 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215955Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008m6c + - 20250226T230837Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000fhep x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -969,7 +883,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:35.1290546Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:35.1290546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:27.0674433Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:27.0674433Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -978,9 +892,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:56 GMT + - Wed, 26 Feb 2025 23:08:38 GMT etag: - - '"4f01bcd0-0000-0200-0000-67bceba30000"' + - '"8f01bc60-0000-0200-0000-67bf9ec50000"' expires: - '-1' pragma: @@ -996,7 +910,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5B2C9EE1363E400D897FA29C63488049 Ref B: MAA201060514027 Ref C: 2025-02-24T21:59:56Z' + - 'Ref A: C89D219742094FF3AD16168D0FE737E2 Ref B: MAA201060515033 Ref C: 2025-02-26T23:08:38Z' status: code: 200 message: OK @@ -1010,12 +924,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"dae87f7a-699c-4a5a-8260-9ac039c121ed":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fa831923-6fbe-470b-9cbc-8f7dffbdfacd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dc5e905b-6c22-4abb-ae9d-8762bcd30cf2":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"b9981410-a81b-4a30-a122-70c932493664":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"c703ae7b-76ca-4b46-9f29-764adbc9cd69":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"f3e92865-c143-487a-b221-d5d66b835d44":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:59:57.2731914Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A57Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:57.2736035Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:59:57.2737872Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:55.365Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2f27e4f9-155c-4fe5-974c-44da0213cf59":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8328142e-5c99-4268-9a24-71e5105667d0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"37f3411b-5a73-46b2-96d4-7b563d1a8655":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a28ebe72-619f-4c1a-8674-44269b029be0":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7e8ebd48-d3fe-45b5-8f62-59d93427df0b":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"520c277c-5e08-498f-9570-a37075fc885e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:39.1739846Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A39Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:39.1744223Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:39.1747641Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:35.815Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1025,17 +939,17 @@ interactions: connection: - keep-alive content-length: - - '3353' + - '3350' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:57 GMT + - Wed, 26 Feb 2025 23:08:39 GMT mise-correlation-id: - - 719ec314-533f-4776-aa2f-3ba433b3e8c3 + - 74da7030-777c-4b53-a80b-af69e5b3470b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215956Z-r17775d4f98jjkc6hC1SG1dcu800000008m0000000003yee + - 20250226T230839Z-167c755789dbzxjrhC1SG1x06c00000002b000000000fvdc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1049,7 +963,8 @@ interactions: "environmentVariables": {"rps": "1"}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "splitAllCSVs": true, "quickStartTest": false, "regionalLoadTestConfig": null}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 77.5, "errorRateTimeWindowInSeconds": - 90}, "baselineTestRunId": null}' + 90}, "baselineTestRunId": null, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": + null}' headers: Accept: - application/json @@ -1058,16 +973,16 @@ interactions: Connection: - keep-alive Content-Length: - - '463' + - '532' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"dae87f7a-699c-4a5a-8260-9ac039c121ed":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fa831923-6fbe-470b-9cbc-8f7dffbdfacd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dc5e905b-6c22-4abb-ae9d-8762bcd30cf2":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"b9981410-a81b-4a30-a122-70c932493664":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"c703ae7b-76ca-4b46-9f29-764adbc9cd69":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"f3e92865-c143-487a-b221-d5d66b835d44":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:59:57.6247322Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A57Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:57.6251053Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:59:57.625239Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:57.615Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2f27e4f9-155c-4fe5-974c-44da0213cf59":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8328142e-5c99-4268-9a24-71e5105667d0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"37f3411b-5a73-46b2-96d4-7b563d1a8655":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a28ebe72-619f-4c1a-8674-44269b029be0":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7e8ebd48-d3fe-45b5-8f62-59d93427df0b":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"520c277c-5e08-498f-9570-a37075fc885e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:39.5724048Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A39Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:39.5726961Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:39.5727681Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:39.563Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1081,13 +996,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:57 GMT + - Wed, 26 Feb 2025 23:08:39 GMT mise-correlation-id: - - bbfb8c84-e3be-407a-9e3f-24b9ae210e2a + - dffe0b8e-dd30-4957-a63a-d68f91fd0c60 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215957Z-r17775d4f98jjkc6hC1SG1dcu800000008m0000000003yfc + - 20250226T230839Z-167c755789dbzxjrhC1SG1x06c00000002b000000000fved x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1105,12 +1020,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:57.8810423Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A57Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:09:57.8812348Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:09:57.8814385Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:39.8356342Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A39Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:39.8358015Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:39.8359715Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1120,17 +1035,17 @@ interactions: connection: - keep-alive content-length: - - '1716' + - '1713' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:57 GMT + - Wed, 26 Feb 2025 23:08:39 GMT mise-correlation-id: - - 27bb6fc8-af40-4098-879c-aad445d3a840 + - 2405a351-992d-4658-b1b4-63357e0f55db strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215957Z-r17775d4f98jjkc6hC1SG1dcu800000008m0000000003yg3 + - 20250226T230839Z-167c755789dbzxjrhC1SG1x06c00000002b000000000fvf6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1148,12 +1063,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"dae87f7a-699c-4a5a-8260-9ac039c121ed":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fa831923-6fbe-470b-9cbc-8f7dffbdfacd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dc5e905b-6c22-4abb-ae9d-8762bcd30cf2":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"b9981410-a81b-4a30-a122-70c932493664":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"c703ae7b-76ca-4b46-9f29-764adbc9cd69":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"f3e92865-c143-487a-b221-d5d66b835d44":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:59:58.1372207Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A58Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:58.1380143Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:59:58.138112Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:57.615Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2f27e4f9-155c-4fe5-974c-44da0213cf59":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8328142e-5c99-4268-9a24-71e5105667d0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"37f3411b-5a73-46b2-96d4-7b563d1a8655":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a28ebe72-619f-4c1a-8674-44269b029be0":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7e8ebd48-d3fe-45b5-8f62-59d93427df0b":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"520c277c-5e08-498f-9570-a37075fc885e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:40.1125622Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A40Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:40.1128451Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:40.1129645Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:39.563Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1163,17 +1078,17 @@ interactions: connection: - keep-alive content-length: - - '3351' + - '3347' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:58 GMT + - Wed, 26 Feb 2025 23:08:40 GMT mise-correlation-id: - - 8ce81a2c-e904-4736-ba94-896a9b89cc02 + - c5b61859-8cd4-436d-aac2-ec94cdb6ffa1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215957Z-r17775d4f98jjkc6hC1SG1dcu800000008m0000000003ygq + - 20250226T230839Z-167c755789dbzxjrhC1SG1x06c00000002b000000000fvg7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1196,7 +1111,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:35.1290546Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:35.1290546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:27.0674433Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:27.0674433Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1205,9 +1120,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:58 GMT + - Wed, 26 Feb 2025 23:08:40 GMT etag: - - '"4f01bcd0-0000-0200-0000-67bceba30000"' + - '"8f01bc60-0000-0200-0000-67bf9ec50000"' expires: - '-1' pragma: @@ -1223,7 +1138,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B0AA6D6B3DB94D08AB8E16D36D4536B8 Ref B: MAA201060513019 Ref C: 2025-02-24T21:59:58Z' + - 'Ref A: AE0D7042170740C18D5FADEF38F29EC1 Ref B: MAA201060515021 Ref C: 2025-02-26T23:08:40Z' status: code: 200 message: OK @@ -1237,12 +1152,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"dae87f7a-699c-4a5a-8260-9ac039c121ed":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fa831923-6fbe-470b-9cbc-8f7dffbdfacd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dc5e905b-6c22-4abb-ae9d-8762bcd30cf2":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"b9981410-a81b-4a30-a122-70c932493664":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"c703ae7b-76ca-4b46-9f29-764adbc9cd69":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"f3e92865-c143-487a-b221-d5d66b835d44":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A11Z&ske=2025-02-25T04%3A59%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:59:59.6077422Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A11Z&ske=2025-02-25T04%3A59%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A59Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:59.6084271Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A11Z&ske=2025-02-25T04%3A59%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:59:59.608597Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:57.615Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2f27e4f9-155c-4fe5-974c-44da0213cf59":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8328142e-5c99-4268-9a24-71e5105667d0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"37f3411b-5a73-46b2-96d4-7b563d1a8655":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a28ebe72-619f-4c1a-8674-44269b029be0":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7e8ebd48-d3fe-45b5-8f62-59d93427df0b":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"520c277c-5e08-498f-9570-a37075fc885e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:41.892911Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:41.8933002Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:41.8934678Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:39.563Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1252,17 +1167,17 @@ interactions: connection: - keep-alive content-length: - - '3345' + - '3354' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:59 GMT + - Wed, 26 Feb 2025 23:08:42 GMT mise-correlation-id: - - b6d4bf13-8534-417c-9664-b59d8b5e1b78 + - d7f7d23b-0734-460b-b56a-3563fc608357 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215959Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000007um6 + - 20250226T230841Z-167c755789dkxplchC1SG1rzhw000000023g000000000xff x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1276,7 +1191,8 @@ interactions: "environmentVariables": {"rps": "1"}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "splitAllCSVs": true, "quickStartTest": false, "regionalLoadTestConfig": null}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 75.0, "errorRateTimeWindowInSeconds": - 90}, "baselineTestRunId": null}' + 90}, "baselineTestRunId": null, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": + null}' headers: Accept: - application/json @@ -1285,16 +1201,16 @@ interactions: Connection: - keep-alive Content-Length: - - '463' + - '532' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"dae87f7a-699c-4a5a-8260-9ac039c121ed":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fa831923-6fbe-470b-9cbc-8f7dffbdfacd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dc5e905b-6c22-4abb-ae9d-8762bcd30cf2":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"b9981410-a81b-4a30-a122-70c932493664":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"c703ae7b-76ca-4b46-9f29-764adbc9cd69":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"f3e92865-c143-487a-b221-d5d66b835d44":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:00.0131302Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:00.0210633Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:00.0212855Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:00Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2f27e4f9-155c-4fe5-974c-44da0213cf59":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8328142e-5c99-4268-9a24-71e5105667d0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"37f3411b-5a73-46b2-96d4-7b563d1a8655":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a28ebe72-619f-4c1a-8674-44269b029be0":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7e8ebd48-d3fe-45b5-8f62-59d93427df0b":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"520c277c-5e08-498f-9570-a37075fc885e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:42.6096684Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A42Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:42.610036Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:42.6101326Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:42.6Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1304,17 +1220,17 @@ interactions: connection: - keep-alive content-length: - - '3352' + - '3340' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:00 GMT + - Wed, 26 Feb 2025 23:08:42 GMT mise-correlation-id: - - b3b24df5-1bd5-460e-b0ba-cb1acc22036a + - 115eae72-8a03-431b-a550-ec0a5657bbd9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215959Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000007un8 + - 20250226T230842Z-167c755789dkxplchC1SG1rzhw000000023g000000000xhe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1332,12 +1248,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:00.2816236Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:10:00.2817265Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:10:00.2818281Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:43.7974367Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A43Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:43.7975925Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:43.7977211Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1347,17 +1263,17 @@ interactions: connection: - keep-alive content-length: - - '1720' + - '1715' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:00 GMT + - Wed, 26 Feb 2025 23:08:43 GMT mise-correlation-id: - - a477de6e-5558-47af-9467-a1f060e45161 + - 38f4267f-6339-4c3d-9aa9-19318881abd7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220000Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000007up2 + - 20250226T230842Z-167c755789dkxplchC1SG1rzhw000000023g000000000xkw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1375,12 +1291,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"dae87f7a-699c-4a5a-8260-9ac039c121ed":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fa831923-6fbe-470b-9cbc-8f7dffbdfacd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dc5e905b-6c22-4abb-ae9d-8762bcd30cf2":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"b9981410-a81b-4a30-a122-70c932493664":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"c703ae7b-76ca-4b46-9f29-764adbc9cd69":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"f3e92865-c143-487a-b221-d5d66b835d44":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:00.5357565Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:00.5363706Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:00.5366307Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:00Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2f27e4f9-155c-4fe5-974c-44da0213cf59":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8328142e-5c99-4268-9a24-71e5105667d0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"37f3411b-5a73-46b2-96d4-7b563d1a8655":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a28ebe72-619f-4c1a-8674-44269b029be0":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7e8ebd48-d3fe-45b5-8f62-59d93427df0b":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"520c277c-5e08-498f-9570-a37075fc885e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:44.0659276Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A44Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:44.0664907Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:44.0666784Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:42.6Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1390,17 +1306,17 @@ interactions: connection: - keep-alive content-length: - - '3352' + - '3341' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:00 GMT + - Wed, 26 Feb 2025 23:08:44 GMT mise-correlation-id: - - 4e488f1c-7a33-43c2-9806-ab9b1209f0b3 + - 15f3a993-3281-4703-ae42-f9ad6a3d26b8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220000Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000007upr + - 20250226T230843Z-167c755789dkxplchC1SG1rzhw000000023g000000000xqv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1423,7 +1339,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:35.1290546Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:35.1290546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:27.0674433Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:27.0674433Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1432,9 +1348,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:01 GMT + - Wed, 26 Feb 2025 23:08:44 GMT etag: - - '"4f01bcd0-0000-0200-0000-67bceba30000"' + - '"8f01bc60-0000-0200-0000-67bf9ec50000"' expires: - '-1' pragma: @@ -1450,7 +1366,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F717D4212A3C4451B55ADE3FD51BC36B Ref B: MAA201060513017 Ref C: 2025-02-24T22:00:00Z' + - 'Ref A: D2FF13C936E24337B4A7AF2BA4EA0947 Ref B: MAA201060514023 Ref C: 2025-02-26T23:08:44Z' status: code: 200 message: OK @@ -1464,12 +1380,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"dae87f7a-699c-4a5a-8260-9ac039c121ed":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fa831923-6fbe-470b-9cbc-8f7dffbdfacd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dc5e905b-6c22-4abb-ae9d-8762bcd30cf2":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"b9981410-a81b-4a30-a122-70c932493664":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"c703ae7b-76ca-4b46-9f29-764adbc9cd69":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"f3e92865-c143-487a-b221-d5d66b835d44":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:02.4651482Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:02.465578Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:02.4656411Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:00Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2f27e4f9-155c-4fe5-974c-44da0213cf59":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8328142e-5c99-4268-9a24-71e5105667d0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"37f3411b-5a73-46b2-96d4-7b563d1a8655":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a28ebe72-619f-4c1a-8674-44269b029be0":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7e8ebd48-d3fe-45b5-8f62-59d93427df0b":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"520c277c-5e08-498f-9570-a37075fc885e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:45.5495149Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A45Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:45.5500507Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:45.5503108Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:42.6Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1479,17 +1395,17 @@ interactions: connection: - keep-alive content-length: - - '3341' + - '3347' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:02 GMT + - Wed, 26 Feb 2025 23:08:45 GMT mise-correlation-id: - - 4515fbca-159e-4532-a8d6-24f94d3f28f7 + - 8ae48fc5-cd76-4a75-86a2-37e0c570c661 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220001Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000b5k + - 20250226T230845Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000cap4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1503,7 +1419,8 @@ interactions: "environmentVariables": {"rps": "1"}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "splitAllCSVs": true, "quickStartTest": false, "regionalLoadTestConfig": null}, "autoStopCriteria": {"autoStopDisabled": true, "errorRate": 75.0, "errorRateTimeWindowInSeconds": - 90}, "baselineTestRunId": null}' + 90}, "baselineTestRunId": null, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": + null}' headers: Accept: - application/json @@ -1512,16 +1429,16 @@ interactions: Connection: - keep-alive Content-Length: - - '462' + - '531' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"dae87f7a-699c-4a5a-8260-9ac039c121ed":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fa831923-6fbe-470b-9cbc-8f7dffbdfacd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dc5e905b-6c22-4abb-ae9d-8762bcd30cf2":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"b9981410-a81b-4a30-a122-70c932493664":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"c703ae7b-76ca-4b46-9f29-764adbc9cd69":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"f3e92865-c143-487a-b221-d5d66b835d44":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:02.87096Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:02.8711599Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:02.8712246Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:02.86Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2f27e4f9-155c-4fe5-974c-44da0213cf59":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8328142e-5c99-4268-9a24-71e5105667d0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"37f3411b-5a73-46b2-96d4-7b563d1a8655":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a28ebe72-619f-4c1a-8674-44269b029be0":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7e8ebd48-d3fe-45b5-8f62-59d93427df0b":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"520c277c-5e08-498f-9570-a37075fc885e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:45.9197196Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A45Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:45.9200816Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:45.920289Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:45.911Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1531,17 +1448,17 @@ interactions: connection: - keep-alive content-length: - - '3342' + - '3345' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:03 GMT + - Wed, 26 Feb 2025 23:08:46 GMT mise-correlation-id: - - e9b1a871-53f5-44ab-a3cf-e65efd987922 + - 194c3d41-678c-419c-be4b-925c60f1773a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220002Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000b6v + - 20250226T230845Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000capx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1559,12 +1476,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:03.1672319Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A03Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:10:03.1673169Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:10:03.1673944Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:46.1724733Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A46Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:46.1725881Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:46.1726856Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1574,17 +1491,17 @@ interactions: connection: - keep-alive content-length: - - '1716' + - '1713' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:03 GMT + - Wed, 26 Feb 2025 23:08:46 GMT mise-correlation-id: - - 47075fe2-366f-47af-bd21-1212b3ea805b + - bbf5ead0-b083-475d-b26b-082cff9d9e3d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220003Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000b7q + - 20250226T230846Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000caqh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1602,12 +1519,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"dae87f7a-699c-4a5a-8260-9ac039c121ed":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fa831923-6fbe-470b-9cbc-8f7dffbdfacd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dc5e905b-6c22-4abb-ae9d-8762bcd30cf2":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"b9981410-a81b-4a30-a122-70c932493664":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"c703ae7b-76ca-4b46-9f29-764adbc9cd69":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"f3e92865-c143-487a-b221-d5d66b835d44":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:03.4447055Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A03Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:03.4449888Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:03.4450748Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:02.86Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2f27e4f9-155c-4fe5-974c-44da0213cf59":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8328142e-5c99-4268-9a24-71e5105667d0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"37f3411b-5a73-46b2-96d4-7b563d1a8655":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a28ebe72-619f-4c1a-8674-44269b029be0":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7e8ebd48-d3fe-45b5-8f62-59d93427df0b":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"520c277c-5e08-498f-9570-a37075fc885e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:46.4315711Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A46Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:46.4318758Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:46.4319403Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:45.911Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1617,17 +1534,17 @@ interactions: connection: - keep-alive content-length: - - '3350' + - '3344' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:03 GMT + - Wed, 26 Feb 2025 23:08:46 GMT mise-correlation-id: - - 69b5699b-cb65-4a3c-851e-6acaf9892f57 + - eb3efe10-605d-4e56-8f17-95dbf8f6aa7b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220003Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000b7z + - 20250226T230846Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000carh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1650,7 +1567,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:35.1290546Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:35.1290546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:27.0674433Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:27.0674433Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1659,9 +1576,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:04 GMT + - Wed, 26 Feb 2025 23:08:46 GMT etag: - - '"4f01bcd0-0000-0200-0000-67bceba30000"' + - '"8f01bc60-0000-0200-0000-67bf9ec50000"' expires: - '-1' pragma: @@ -1675,9 +1592,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 18D416AABAA44ABF97DEF6733CF5E427 Ref B: MAA201060515051 Ref C: 2025-02-24T22:00:03Z' + - 'Ref A: AD83E66C9DD349D58C8C0478C675769F Ref B: MAA201060514051 Ref C: 2025-02-26T23:08:46Z' status: code: 200 message: OK @@ -1691,12 +1608,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"dae87f7a-699c-4a5a-8260-9ac039c121ed":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fa831923-6fbe-470b-9cbc-8f7dffbdfacd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dc5e905b-6c22-4abb-ae9d-8762bcd30cf2":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"b9981410-a81b-4a30-a122-70c932493664":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"c703ae7b-76ca-4b46-9f29-764adbc9cd69":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"f3e92865-c143-487a-b221-d5d66b835d44":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:05.346323Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:05.346834Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:05.3474638Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:02.86Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2f27e4f9-155c-4fe5-974c-44da0213cf59":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8328142e-5c99-4268-9a24-71e5105667d0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"37f3411b-5a73-46b2-96d4-7b563d1a8655":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a28ebe72-619f-4c1a-8674-44269b029be0":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7e8ebd48-d3fe-45b5-8f62-59d93427df0b":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"520c277c-5e08-498f-9570-a37075fc885e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":75.0,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:47.601056Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:47.6015545Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:47.6017566Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:45.911Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1706,17 +1623,17 @@ interactions: connection: - keep-alive content-length: - - '3356' + - '3341' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:05 GMT + - Wed, 26 Feb 2025 23:08:47 GMT mise-correlation-id: - - c9570dad-a185-469a-9add-b2787d533c11 + - 223fe5b3-3f3c-4f98-a72b-04a84ff1f099 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220004Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000ame6 + - 20250226T230847Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000qsf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1730,16 +1647,16 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": - {"dae87f7a-699c-4a5a-8260-9ac039c121ed": null, "fa831923-6fbe-470b-9cbc-8f7dffbdfacd": - null, "dc5e905b-6c22-4abb-ae9d-8762bcd30cf2": null, "b9981410-a81b-4a30-a122-70c932493664": - null, "c703ae7b-76ca-4b46-9f29-764adbc9cd69": null, "f3e92865-c143-487a-b221-d5d66b835d44": - null, "2684f036-d9aa-4d0c-b881-afc0971d3b05": {"aggregate": "avg", "clientMetric": - "requests_per_sec", "condition": ">", "value": "78"}, "b6f91b74-1807-4322-b7c1-5f9e46f29ba5": + {"2f27e4f9-155c-4fe5-974c-44da0213cf59": null, "8328142e-5c99-4268-9a24-71e5105667d0": + null, "37f3411b-5a73-46b2-96d4-7b563d1a8655": null, "a28ebe72-619f-4c1a-8674-44269b029be0": + null, "7e8ebd48-d3fe-45b5-8f62-59d93427df0b": null, "520c277c-5e08-498f-9570-a37075fc885e": + null, "a26896cc-b14c-4bb3-a3fa-82cbe64fe913": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "0dd051c9-0287-4562-b31b-f55ed7cf5225": {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "e2743036-f8b8-48fe-ad0b-5ea962621b5b": {"aggregate": "avg", "clientMetric": + "50"}, "1af82d12-4d4d-496d-9288-01191588fbf7": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 85, "errorRateTimeWindowInSeconds": - 120}}' + 120}, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -1748,17 +1665,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1235' + - '1304' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e2743036-f8b8-48fe-ad0b-5ea962621b5b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"b6f91b74-1807-4322-b7c1-5f9e46f29ba5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2684f036-d9aa-4d0c-b881-afc0971d3b05":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":85.0,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:05.6667964Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:05.6670641Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:05.6673653Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:05.657Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1af82d12-4d4d-496d-9288-01191588fbf7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"0dd051c9-0287-4562-b31b-f55ed7cf5225":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a26896cc-b14c-4bb3-a3fa-82cbe64fe913":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":85.0,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:47.9224219Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:47.9226369Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:47.9227369Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:47.912Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1768,17 +1685,17 @@ interactions: connection: - keep-alive content-length: - - '2947' + - '2936' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:05 GMT + - Wed, 26 Feb 2025 23:08:48 GMT mise-correlation-id: - - 82b82a1a-f8e4-4b94-aa63-7c3a5f835643 + - 391007c9-b82e-4b31-8096-0aa28266f352 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220005Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000amfg + - 20250226T230847Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000qu4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1796,12 +1713,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b61ca349-9cfc-43c8-ae7d-287c2b509ca1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:05.921338Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/1423f98a-54c1-40ac-b08e-cd7d5811aa02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:10:05.9214273Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/bad4c41f-79a3-4c18-be69-e6657d707829?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:10:05.9215125Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/65061de7-f6f2-4307-93e2-b6c8276ac564?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:48.1842648Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/7f3fa5fa-d080-4520-9e2f-df6a06ac9a1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A48Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:48.1844451Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/8381023b-8098-45c8-8b9b-117d07087b49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:48.1846237Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1811,17 +1728,17 @@ interactions: connection: - keep-alive content-length: - - '1713' + - '1719' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:06 GMT + - Wed, 26 Feb 2025 23:08:48 GMT mise-correlation-id: - - 7c12794c-aeb9-497a-bab0-1f375d9eee3a + - 0620f5de-f72e-4f84-abf7-bd0d7fa6382d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220005Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000amg6 + - 20250226T230848Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000qv3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1841,9 +1758,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: string: '' @@ -1854,13 +1771,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:00:06 GMT + - Wed, 26 Feb 2025 23:08:48 GMT mise-correlation-id: - - 900a842b-fe13-46d7-a2c0-c64d7d2c046d + - dc2ce5a4-5441-454a-98ed-fad130bfc472 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220006Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000amh1 + - 20250226T230848Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000qvx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1885,14 +1802,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/a152f52f-80e8-42fc-9323-91c456cc4487?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A06Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:10:06.6616788Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/d302cb24-b693-44de-aaf8-4dc879219985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A48Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:48.9085013Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1900,19 +1817,19 @@ interactions: connection: - keep-alive content-length: - - '573' + - '570' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:06 GMT + - Wed, 26 Feb 2025 23:08:49 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 48a38096-4ff2-448f-b4cd-1e6dc7d1c5e1 + - d23de404-1918-49ec-9017-96b114e9fb00 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220006Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000amhq + - 20250226T230848Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000qwx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1930,12 +1847,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/a152f52f-80e8-42fc-9323-91c456cc4487?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A11Z&ske=2025-02-25T04%3A59%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A07Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:10:07.0916864Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/d302cb24-b693-44de-aaf8-4dc879219985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:49.1614996Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -1945,17 +1862,17 @@ interactions: connection: - keep-alive content-length: - - '575' + - '570' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:07 GMT + - Wed, 26 Feb 2025 23:08:49 GMT mise-correlation-id: - - ebe92d97-bb75-4be2-aaba-8d07a642ac70 + - c8603b8a-ef84-4fdc-bc7d-597e1deed97b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220006Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000amkc + - 20250226T230849Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000qxw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1975,9 +1892,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: string: '' @@ -1988,13 +1905,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:00:07 GMT + - Wed, 26 Feb 2025 23:08:49 GMT mise-correlation-id: - - d4b4a9f3-e4a0-4b4d-8671-7ea0863f169b + - de694eb1-85c4-4d50-b29b-becaaab234bb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220007Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000amkw + - 20250226T230849Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000qye x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2023,14 +1940,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/8dd4925d-3bbc-401f-aeb2-c591b8aed292?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:10:07.8041953Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/f935598d-429b-46b7-b5ed-afe4bec062de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:50.8742222Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -2038,19 +1955,19 @@ interactions: connection: - keep-alive content-length: - - '561' + - '566' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:07 GMT + - Wed, 26 Feb 2025 23:08:50 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 3f51ca42-7cb2-4669-b33f-ea8d5d0e3d30 + - a8c4f9de-b4d9-4d8b-af06-aa580fe2caa5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220007Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000amm7 + - 20250226T230849Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000qz8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2068,12 +1985,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/8dd4925d-3bbc-401f-aeb2-c591b8aed292?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:10:08.0586141Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/f935598d-429b-46b7-b5ed-afe4bec062de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:51.1270304Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -2083,17 +2000,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:08 GMT + - Wed, 26 Feb 2025 23:08:51 GMT mise-correlation-id: - - 3009a399-4401-4286-bb19-8ca4fb561027 + - a7477c6a-97db-4348-b822-d1186c92487d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220007Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000ammu + - 20250226T230850Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000r3z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2113,9 +2030,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: string: '' @@ -2126,13 +2043,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:00:08 GMT + - Wed, 26 Feb 2025 23:08:51 GMT mise-correlation-id: - - 646ea5ab-0b7b-4025-a1ba-d55bdf4286ef + - a75fa5ac-2d89-4bb1-b1b6-ca9050bf0747 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220008Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000ammz + - 20250226T230851Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000r4v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2241,14 +2158,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/5598aaa4-7f28-435b-b8dd-000ba49f8ec2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:08.8316506Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/2f9b95f8-6179-453b-9124-14c1b6d835c8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:51.9255245Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -2256,19 +2173,19 @@ interactions: connection: - keep-alive content-length: - - '559' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:08 GMT + - Wed, 26 Feb 2025 23:08:52 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 01349c94-c63d-48f8-9467-babb6c0e48b8 + - 41735484-c478-4c95-8392-adb1be4f8494 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220008Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000amn9 + - 20250226T230851Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000r5q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2286,12 +2203,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/5598aaa4-7f28-435b-b8dd-000ba49f8ec2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:09.0819454Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/2f9b95f8-6179-453b-9124-14c1b6d835c8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:52.1738322Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2301,17 +2218,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:09 GMT + - Wed, 26 Feb 2025 23:08:52 GMT mise-correlation-id: - - cbcc717d-9875-460e-ad80-1ff716acee0f + - 02d54810-584d-40cc-af3c-dd86854f6902 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220008Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000amnq + - 20250226T230852Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000r70 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2329,12 +2246,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/5598aaa4-7f28-435b-b8dd-000ba49f8ec2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:14.350042Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/2f9b95f8-6179-453b-9124-14c1b6d835c8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:57.432791Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2344,17 +2261,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:14 GMT + - Wed, 26 Feb 2025 23:08:57 GMT mise-correlation-id: - - bb5a0676-df7c-4a7b-a7d3-a109800bc414 + - 309cb512-662e-4f01-9714-b46ab1bd3b88 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220014Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000amxd + - 20250226T230857Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000rws x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2372,12 +2289,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/5598aaa4-7f28-435b-b8dd-000ba49f8ec2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:19.6073448Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/2f9b95f8-6179-453b-9124-14c1b6d835c8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:02.7282871Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2387,17 +2304,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:19 GMT + - Wed, 26 Feb 2025 23:09:02 GMT mise-correlation-id: - - fa5522a7-9adc-4da8-9c53-42eaa2371af6 + - 5ff5098c-8973-41c5-bced-f074977026c8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220019Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000an8p + - 20250226T230902Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000sgv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2415,12 +2332,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/5598aaa4-7f28-435b-b8dd-000ba49f8ec2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:24.883748Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/2f9b95f8-6179-453b-9124-14c1b6d835c8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:07.9779578Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2430,17 +2347,17 @@ interactions: connection: - keep-alive content-length: - - '566' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:24 GMT + - Wed, 26 Feb 2025 23:09:08 GMT mise-correlation-id: - - 946d7a5d-a7aa-4e7a-9b8d-fce7d0e1e02a + - a42c6676-e0bc-4852-90cb-dc08a107688b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220024Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000ank4 + - 20250226T230907Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000t3u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2458,12 +2375,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/5598aaa4-7f28-435b-b8dd-000ba49f8ec2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:30.1407685Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/2f9b95f8-6179-453b-9124-14c1b6d835c8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:13.7007724Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2473,17 +2390,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '564' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:30 GMT + - Wed, 26 Feb 2025 23:09:13 GMT mise-correlation-id: - - 83957db8-af12-495a-9322-8490635ee9be + - 6c84be91-5d34-4bb3-82c7-ee2b91c1beae strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220030Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000ansm + - 20250226T230913Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000tmf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2501,12 +2418,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/5598aaa4-7f28-435b-b8dd-000ba49f8ec2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:35.391Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/2f9b95f8-6179-453b-9124-14c1b6d835c8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:19.9536437Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2516,17 +2433,17 @@ interactions: connection: - keep-alive content-length: - - '555' + - '564' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:35 GMT + - Wed, 26 Feb 2025 23:09:20 GMT mise-correlation-id: - - b93b2fab-6c73-4192-83a6-e0c380c66c9f + - ea615a22-51f8-4f4a-a1a8-3fe2f80fabcd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220035Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000ap1e + - 20250226T230918Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000ug8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2544,12 +2461,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/5598aaa4-7f28-435b-b8dd-000ba49f8ec2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:40.6446273Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/2f9b95f8-6179-453b-9124-14c1b6d835c8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:25.2135424Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2559,17 +2476,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:40 GMT + - Wed, 26 Feb 2025 23:09:25 GMT mise-correlation-id: - - 4c3616ed-d0ab-433a-acc9-b91ec322e082 + - a7d89ae7-c01c-4530-aa8f-7b8ba709fe18 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220040Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000ap90 + - 20250226T230925Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000v8s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2587,12 +2504,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/5598aaa4-7f28-435b-b8dd-000ba49f8ec2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:45.8962938Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/2f9b95f8-6179-453b-9124-14c1b6d835c8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:30.4876311Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -2602,17 +2519,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:46 GMT + - Wed, 26 Feb 2025 23:09:30 GMT mise-correlation-id: - - 61eba1cf-b9d9-4160-a0f2-b2000ed505bb + - 85037c83-bf50-4ce9-bc01-638bf46b1d76 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220045Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000apmd + - 20250226T230930Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000vur x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2630,13 +2547,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e2743036-f8b8-48fe-ad0b-5ea962621b5b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"b6f91b74-1807-4322-b7c1-5f9e46f29ba5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2684f036-d9aa-4d0c-b881-afc0971d3b05":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":85.0,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/5598aaa4-7f28-435b-b8dd-000ba49f8ec2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:46.153531Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/a152f52f-80e8-42fc-9323-91c456cc4487?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A46Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:46.153913Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/8dd4925d-3bbc-401f-aeb2-c591b8aed292?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:46.1540802Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:42.807Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1af82d12-4d4d-496d-9288-01191588fbf7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"0dd051c9-0287-4562-b31b-f55ed7cf5225":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a26896cc-b14c-4bb3-a3fa-82cbe64fe913":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":85.0,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/2f9b95f8-6179-453b-9124-14c1b6d835c8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:30.746824Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/d302cb24-b693-44de-aaf8-4dc879219985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A30Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:09:30.7471939Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/f935598d-429b-46b7-b5ed-afe4bec062de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:30.747336Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:25.368Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2646,17 +2563,17 @@ interactions: connection: - keep-alive content-length: - - '2933' + - '2936' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:46 GMT + - Wed, 26 Feb 2025 23:09:30 GMT mise-correlation-id: - - b5aeecdc-ab40-43d0-ae90-eda88da48d9d + - 129b84f7-3f60-4176-9c45-a42ab582a521 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220046Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000apmz + - 20250226T230930Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000vvf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2679,7 +2596,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:35.1290546Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:35.1290546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:27.0674433Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:27.0674433Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2688,9 +2605,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:46 GMT + - Wed, 26 Feb 2025 23:09:31 GMT etag: - - '"4f01bcd0-0000-0200-0000-67bceba30000"' + - '"8f01bc60-0000-0200-0000-67bf9ec50000"' expires: - '-1' pragma: @@ -2706,7 +2623,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BF992C5E9AFB427082ED25ACE3706506 Ref B: MAA201060516049 Ref C: 2025-02-24T22:00:46Z' + - 'Ref A: B0EDBFC061E14FC3AF8ED6962ADD60F1 Ref B: MAA201060516047 Ref C: 2025-02-26T23:09:31Z' status: code: 200 message: OK @@ -2720,13 +2637,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e2743036-f8b8-48fe-ad0b-5ea962621b5b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"b6f91b74-1807-4322-b7c1-5f9e46f29ba5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2684f036-d9aa-4d0c-b881-afc0971d3b05":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":85.0,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/5598aaa4-7f28-435b-b8dd-000ba49f8ec2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:48.0797857Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/a152f52f-80e8-42fc-9323-91c456cc4487?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A48Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:48.080092Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/8dd4925d-3bbc-401f-aeb2-c591b8aed292?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:48.0801655Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:42.807Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1af82d12-4d4d-496d-9288-01191588fbf7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"0dd051c9-0287-4562-b31b-f55ed7cf5225":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a26896cc-b14c-4bb3-a3fa-82cbe64fe913":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":85.0,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/2f9b95f8-6179-453b-9124-14c1b6d835c8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:32.6920888Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/d302cb24-b693-44de-aaf8-4dc879219985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A32Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:09:32.6925625Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/f935598d-429b-46b7-b5ed-afe4bec062de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:32.6927998Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:25.368Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2736,17 +2653,17 @@ interactions: connection: - keep-alive content-length: - - '2934' + - '2928' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:48 GMT + - Wed, 26 Feb 2025 23:09:32 GMT mise-correlation-id: - - 19543e87-240f-4cd6-bbac-c5c8366309cf + - 28c5068a-d65f-4c6d-a22f-bd66f4518a0f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220047Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000036c4 + - 20250226T230932Z-167c755789ddg659hC1SG1f79g0000000200000000007mqt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2760,14 +2677,15 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": - {"e2743036-f8b8-48fe-ad0b-5ea962621b5b": null, "b6f91b74-1807-4322-b7c1-5f9e46f29ba5": - null, "2684f036-d9aa-4d0c-b881-afc0971d3b05": null, "c024b29a-0066-41f6-9fee-15c04f9997ea": + {"1af82d12-4d4d-496d-9288-01191588fbf7": null, "0dd051c9-0287-4562-b31b-f55ed7cf5225": + null, "a26896cc-b14c-4bb3-a3fa-82cbe64fe913": null, "a59e5195-d163-4173-9de3-05ae2eee2d9f": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "c09b9751-0662-48d5-afa2-3f7b9193ad57": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "9b1e04a0-7109-46b5-8d8c-6a0972668427": + "78"}, "7440d809-3804-423b-acf3-2d200a9332f4": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "3835d381-b46e-444a-bbeb-775b8d2b2965": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": - false, "errorRate": 98.5, "errorRateTimeWindowInSeconds": 120}}' + false, "errorRate": 98.5, "errorRateTimeWindowInSeconds": 120}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -2776,17 +2694,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1081' + - '1150' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"9b1e04a0-7109-46b5-8d8c-6a0972668427":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"c09b9751-0662-48d5-afa2-3f7b9193ad57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c024b29a-0066-41f6-9fee-15c04f9997ea":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/5598aaa4-7f28-435b-b8dd-000ba49f8ec2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:48.612922Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/a152f52f-80e8-42fc-9323-91c456cc4487?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A48Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:48.6131357Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/8dd4925d-3bbc-401f-aeb2-c591b8aed292?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:48.6132107Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:48.604Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"3835d381-b46e-444a-bbeb-775b8d2b2965":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"7440d809-3804-423b-acf3-2d200a9332f4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a59e5195-d163-4173-9de3-05ae2eee2d9f":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/2f9b95f8-6179-453b-9124-14c1b6d835c8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:33.0021009Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/d302cb24-b693-44de-aaf8-4dc879219985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A33Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:09:33.0023222Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/f935598d-429b-46b7-b5ed-afe4bec062de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:33.0024538Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:32.993Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2796,17 +2714,17 @@ interactions: connection: - keep-alive content-length: - - '2916' + - '2914' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:48 GMT + - Wed, 26 Feb 2025 23:09:33 GMT mise-correlation-id: - - 93334a98-8261-4205-935e-ef56158748a7 + - b4c4c41a-bb14-4a67-9e28-9b72a006fa15 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220048Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000036dq + - 20250226T230932Z-167c755789ddg659hC1SG1f79g0000000200000000007mt1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2824,12 +2742,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/5598aaa4-7f28-435b-b8dd-000ba49f8ec2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:49.1651868Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/a152f52f-80e8-42fc-9323-91c456cc4487?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:10:49.1652536Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/8dd4925d-3bbc-401f-aeb2-c591b8aed292?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:10:49.1653142Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/2f9b95f8-6179-453b-9124-14c1b6d835c8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:33.268953Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/d302cb24-b693-44de-aaf8-4dc879219985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A33Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:33.2691928Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/f935598d-429b-46b7-b5ed-afe4bec062de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:33.2693712Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -2839,17 +2757,17 @@ interactions: connection: - keep-alive content-length: - - '1718' + - '1714' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:49 GMT + - Wed, 26 Feb 2025 23:09:33 GMT mise-correlation-id: - - 0fc7f2ca-5574-44db-858c-927c595cad6d + - 3deac400-cfe5-4d05-8282-f2d3a6fab107 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220048Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000036gc + - 20250226T230933Z-167c755789ddg659hC1SG1f79g0000000200000000007mu7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2869,9 +2787,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: string: '' @@ -2882,13 +2800,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:00:49 GMT + - Wed, 26 Feb 2025 23:09:33 GMT mise-correlation-id: - - 60b4eeda-67af-436b-8b4a-2b1d77ab6812 + - a7154d96-5ab8-4ff9-956b-3fb6955b0271 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220049Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000036hh + - 20250226T230933Z-167c755789ddg659hC1SG1f79g0000000200000000007mvk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2913,14 +2831,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/6f925930-74fd-40bb-925c-9298518972e9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:10:49.8594888Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3044c514-ef99-4ce5-b2e4-f5af9443c0fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A34Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:34.0398407Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -2928,19 +2846,19 @@ interactions: connection: - keep-alive content-length: - - '573' + - '570' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:49 GMT + - Wed, 26 Feb 2025 23:09:34 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - b818119e-1681-46b8-bc17-5ab2a655f2cb + - 44a59c6e-e357-4d5d-bfd0-8f5b9b2451c9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220049Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000036k2 + - 20250226T230933Z-167c755789ddg659hC1SG1f79g0000000200000000007mwg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2958,12 +2876,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/6f925930-74fd-40bb-925c-9298518972e9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A50Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:10:50.1081282Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3044c514-ef99-4ce5-b2e4-f5af9443c0fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A34Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:34.2931042Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -2973,17 +2891,17 @@ interactions: connection: - keep-alive content-length: - - '579' + - '578' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:50 GMT + - Wed, 26 Feb 2025 23:09:34 GMT mise-correlation-id: - - 8a2f6956-ed17-4c81-934e-d5cdd06e1f0d + - d8e782b2-73c8-446c-9dcc-deedf1ee70e0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220049Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000036km + - 20250226T230934Z-167c755789ddg659hC1SG1f79g0000000200000000007mxs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3003,9 +2921,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: string: '' @@ -3016,13 +2934,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:00:50 GMT + - Wed, 26 Feb 2025 23:09:34 GMT mise-correlation-id: - - 9b4056f1-7317-4851-bce1-2fb60c5ea6b8 + - 12067c71-53cb-41b2-9d7d-718880a995f7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220050Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000036kz + - 20250226T230934Z-167c755789ddg659hC1SG1f79g0000000200000000007myz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3051,14 +2969,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b23a5511-cc30-4f36-8520-901160a4f59e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:10:50.8843191Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/87b6adc0-697c-412e-82b7-fefe9aec93da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:35.0832746Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -3066,19 +2984,19 @@ interactions: connection: - keep-alive content-length: - - '561' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:50 GMT + - Wed, 26 Feb 2025 23:09:35 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - dea50a9b-31f9-4ccd-9ad5-ee5954707f78 + - 8a9c489a-b728-488b-b367-8f54046f0a66 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220050Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000036mn + - 20250226T230934Z-167c755789ddg659hC1SG1f79g0000000200000000007mzz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3096,12 +3014,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b23a5511-cc30-4f36-8520-901160a4f59e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:10:51.1415834Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/87b6adc0-697c-412e-82b7-fefe9aec93da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:35.339042Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -3115,13 +3033,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:51 GMT + - Wed, 26 Feb 2025 23:09:35 GMT mise-correlation-id: - - 20635ffe-7f10-47b7-b74b-f4035846fa49 + - d17bd994-0263-48a4-9de2-f99a9caf6464 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220051Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000036n6 + - 20250226T230935Z-167c755789ddg659hC1SG1f79g0000000200000000007n13 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3141,9 +3059,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: string: '' @@ -3154,13 +3072,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:00:51 GMT + - Wed, 26 Feb 2025 23:09:35 GMT mise-correlation-id: - - 51d47135-bf7f-4a7e-aa85-f84d650d5345 + - f522125e-101f-4ba7-be3e-b2c502a92722 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220051Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000036nh + - 20250226T230935Z-167c755789ddg659hC1SG1f79g0000000200000000007n21 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3269,14 +3187,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/94338b1b-df00-4e52-890e-adb48d5ddeff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:51.9268925Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/cb27e69e-0579-4cbe-941b-9199c41b6e06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:36.2089637Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -3284,19 +3202,19 @@ interactions: connection: - keep-alive content-length: - - '565' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:52 GMT + - Wed, 26 Feb 2025 23:09:36 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 79542267-060c-4aa7-8b18-df509c7b41b2 + - 0dd10870-c29b-47e8-b922-7e3e40abfdb9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220051Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000036p4 + - 20250226T230935Z-167c755789ddg659hC1SG1f79g0000000200000000007n38 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3314,55 +3232,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/94338b1b-df00-4e52-890e-adb48d5ddeff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:52.2264809Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '567' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 22:00:52 GMT - mise-correlation-id: - - dbbeb018-d24b-45be-8fd6-fd41fcb85362 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T220052Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000036py - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/94338b1b-df00-4e52-890e-adb48d5ddeff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:57.4804688Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/cb27e69e-0579-4cbe-941b-9199c41b6e06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:36.4639755Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3372,17 +3247,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:57 GMT + - Wed, 26 Feb 2025 23:09:36 GMT mise-correlation-id: - - 7cbe5ef0-2ed0-4b0a-97aa-20091c67d096 + - cbb8f85e-7a36-4c00-8e04-af6a343955e2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220057Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000036z7 + - 20250226T230936Z-167c755789ddg659hC1SG1f79g0000000200000000007n4y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3400,12 +3275,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/94338b1b-df00-4e52-890e-adb48d5ddeff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:11:02.7388074Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/cb27e69e-0579-4cbe-941b-9199c41b6e06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:41.7161676Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3415,17 +3290,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '566' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:02 GMT + - Wed, 26 Feb 2025 23:09:41 GMT mise-correlation-id: - - c2beea7f-1348-4742-a8d7-628ab4dfb75b + - 7d53f207-9c93-4c88-8d48-e936e94724b4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220102Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng00000000378n + - 20250226T230941Z-167c755789ddg659hC1SG1f79g0000000200000000007nq6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3443,12 +3318,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/94338b1b-df00-4e52-890e-adb48d5ddeff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:11:07.9933705Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/cb27e69e-0579-4cbe-941b-9199c41b6e06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:46.9708628Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3458,17 +3333,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:08 GMT + - Wed, 26 Feb 2025 23:09:47 GMT mise-correlation-id: - - 86843baf-5d31-461f-aa4a-2a27aa9c6cc6 + - 724eeef8-0f62-4cb3-a82d-b88eaf703dcc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220107Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000037h1 + - 20250226T230946Z-167c755789ddg659hC1SG1f79g0000000200000000007p67 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3486,12 +3361,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/94338b1b-df00-4e52-890e-adb48d5ddeff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:11:13.2432931Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/cb27e69e-0579-4cbe-941b-9199c41b6e06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:52.2204737Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3501,17 +3376,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:13 GMT + - Wed, 26 Feb 2025 23:09:52 GMT mise-correlation-id: - - 65dd8b10-08a6-486b-8e99-143dd01cc6ac + - 787f8f7e-1951-4760-aab5-0e385ef9c133 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220113Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000037xn + - 20250226T230952Z-167c755789ddg659hC1SG1f79g0000000200000000007prs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3529,12 +3404,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/94338b1b-df00-4e52-890e-adb48d5ddeff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:11:18.4918199Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/cb27e69e-0579-4cbe-941b-9199c41b6e06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:57.4696011Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3544,17 +3419,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:18 GMT + - Wed, 26 Feb 2025 23:09:57 GMT mise-correlation-id: - - 4a6a5d07-8e8f-4609-a2bf-373316bd4924 + - ad189d87-da93-4ab1-ac12-7f494e2c78a5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220118Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng00000000386u + - 20250226T230957Z-167c755789ddg659hC1SG1f79g0000000200000000007q9u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3572,12 +3447,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/94338b1b-df00-4e52-890e-adb48d5ddeff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:11:23.7454525Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/cb27e69e-0579-4cbe-941b-9199c41b6e06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:02.72572Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3587,17 +3462,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:23 GMT + - Wed, 26 Feb 2025 23:10:02 GMT mise-correlation-id: - - eb76f89e-0c05-473f-8c33-32dd8146455a + - 12cc1d5d-2aa2-41fa-a0f5-01e3d97433ab strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220123Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000038fm + - 20250226T231002Z-167c755789ddg659hC1SG1f79g0000000200000000007qrs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3615,12 +3490,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/94338b1b-df00-4e52-890e-adb48d5ddeff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A11Z&ske=2025-02-25T04%3A59%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:11:30.0497452Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/cb27e69e-0579-4cbe-941b-9199c41b6e06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:07.9804242Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -3630,17 +3505,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:30 GMT + - Wed, 26 Feb 2025 23:10:08 GMT mise-correlation-id: - - 5cd2b219-790d-4dfa-979c-fd3de02a6f7e + - b61f5b7a-2dcd-47bf-b05b-f52d5ca31002 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220128Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000038rz + - 20250226T231007Z-167c755789ddg659hC1SG1f79g0000000200000000007r90 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3658,13 +3533,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"9b1e04a0-7109-46b5-8d8c-6a0972668427":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"c09b9751-0662-48d5-afa2-3f7b9193ad57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c024b29a-0066-41f6-9fee-15c04f9997ea":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/94338b1b-df00-4e52-890e-adb48d5ddeff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:30.3123826Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/6f925930-74fd-40bb-925c-9298518972e9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A30Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:30.3126387Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b23a5511-cc30-4f36-8520-901160a4f59e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:30.3127145Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:24Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"3835d381-b46e-444a-bbeb-775b8d2b2965":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"7440d809-3804-423b-acf3-2d200a9332f4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a59e5195-d163-4173-9de3-05ae2eee2d9f":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/cb27e69e-0579-4cbe-941b-9199c41b6e06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:08.2344274Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3044c514-ef99-4ce5-b2e4-f5af9443c0fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A08Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:08.2348829Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/87b6adc0-697c-412e-82b7-fefe9aec93da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:08.235009Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:07.554Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3674,17 +3549,17 @@ interactions: connection: - keep-alive content-length: - - '2915' + - '2919' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:30 GMT + - Wed, 26 Feb 2025 23:10:08 GMT mise-correlation-id: - - c7d99293-eb86-45db-b5be-db74e096a1a9 + - adbeff19-6bf3-45bf-81c7-10dbb5f326ea strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220130Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng0000000038tt + - 20250226T231008Z-167c755789ddg659hC1SG1f79g0000000200000000007r9p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3707,7 +3582,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:35.1290546Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:35.1290546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:27.0674433Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:27.0674433Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3716,9 +3591,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:31 GMT + - Wed, 26 Feb 2025 23:10:08 GMT etag: - - '"4f01bcd0-0000-0200-0000-67bceba30000"' + - '"8f01bc60-0000-0200-0000-67bf9ec50000"' expires: - '-1' pragma: @@ -3734,7 +3609,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5CDDA81883C74F79983621218DCF0935 Ref B: MAA201060513017 Ref C: 2025-02-24T22:01:30Z' + - 'Ref A: 0CFF763382ED42B88294BA5C7CBB6815 Ref B: MAA201060513045 Ref C: 2025-02-26T23:10:08Z' status: code: 200 message: OK @@ -3748,13 +3623,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"9b1e04a0-7109-46b5-8d8c-6a0972668427":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"c09b9751-0662-48d5-afa2-3f7b9193ad57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c024b29a-0066-41f6-9fee-15c04f9997ea":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/94338b1b-df00-4e52-890e-adb48d5ddeff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:32.2509297Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/6f925930-74fd-40bb-925c-9298518972e9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A32Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:32.2513445Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b23a5511-cc30-4f36-8520-901160a4f59e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:32.2515247Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:24Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"3835d381-b46e-444a-bbeb-775b8d2b2965":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"7440d809-3804-423b-acf3-2d200a9332f4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a59e5195-d163-4173-9de3-05ae2eee2d9f":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":120},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/cb27e69e-0579-4cbe-941b-9199c41b6e06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:09.7360419Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3044c514-ef99-4ce5-b2e4-f5af9443c0fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A09Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:09.7367333Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/87b6adc0-697c-412e-82b7-fefe9aec93da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:09.7368322Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:07.554Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3764,17 +3639,17 @@ interactions: connection: - keep-alive content-length: - - '2921' + - '2916' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:32 GMT + - Wed, 26 Feb 2025 23:10:09 GMT mise-correlation-id: - - d2d21d09-3b6d-4b81-b0ee-2d99f1b1c6e6 + - 682a9a8a-b7d1-45b4-999c-240b1ca551c1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220131Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000007xu + - 20250226T231009Z-167c755789dw9d62hC1SG1x2v800000001ug0000000004cq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3788,14 +3663,15 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": - {"9b1e04a0-7109-46b5-8d8c-6a0972668427": null, "c09b9751-0662-48d5-afa2-3f7b9193ad57": - null, "c024b29a-0066-41f6-9fee-15c04f9997ea": null, "8449669a-a8db-4cdf-9c80-628f5855fd25": + {"3835d381-b46e-444a-bbeb-775b8d2b2965": null, "7440d809-3804-423b-acf3-2d200a9332f4": + null, "a59e5195-d163-4173-9de3-05ae2eee2d9f": null, "d5f273ec-21a2-499a-95c9-a64a1f9aa081": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "13162d02-fa07-4ec3-8189-a145aafb7ed1": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "fedc97a3-4303-40e9-8af8-0401759643f8": + "78"}, "7b734865-25ba-4a78-9215-dfcf1a2e47aa": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "ac87ea33-2e3a-4931-af53-27e35c864dd8": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": - false, "errorRateTimeWindowInSeconds": 250, "errorRate": 98.5}}' + false, "errorRateTimeWindowInSeconds": 250, "errorRate": 98.5}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -3804,17 +3680,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1081' + - '1150' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fedc97a3-4303-40e9-8af8-0401759643f8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"13162d02-fa07-4ec3-8189-a145aafb7ed1":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"8449669a-a8db-4cdf-9c80-628f5855fd25":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":250},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/94338b1b-df00-4e52-890e-adb48d5ddeff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:32.5853006Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/6f925930-74fd-40bb-925c-9298518972e9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A32Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:32.5861008Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b23a5511-cc30-4f36-8520-901160a4f59e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:32.5864689Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:32.576Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"ac87ea33-2e3a-4931-af53-27e35c864dd8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"7b734865-25ba-4a78-9215-dfcf1a2e47aa":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d5f273ec-21a2-499a-95c9-a64a1f9aa081":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":250},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/cb27e69e-0579-4cbe-941b-9199c41b6e06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:10.0859545Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3044c514-ef99-4ce5-b2e4-f5af9443c0fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:10.0865178Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/87b6adc0-697c-412e-82b7-fefe9aec93da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:10.0866546Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:10.077Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3824,17 +3700,17 @@ interactions: connection: - keep-alive content-length: - - '2925' + - '2914' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:32 GMT + - Wed, 26 Feb 2025 23:10:10 GMT mise-correlation-id: - - 0d7eee10-4378-4a1d-ba6f-215b141fe617 + - 177ec01e-6816-486b-a20b-2e27b744a2e2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220132Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000007z3 + - 20250226T231009Z-167c755789dw9d62hC1SG1x2v800000001ug0000000004d3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3852,12 +3728,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/94338b1b-df00-4e52-890e-adb48d5ddeff?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:11:32.8632747Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/6f925930-74fd-40bb-925c-9298518972e9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A32Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:11:32.8633578Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/b23a5511-cc30-4f36-8520-901160a4f59e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:11:32.8634393Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/cb27e69e-0579-4cbe-941b-9199c41b6e06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:10.8630803Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3044c514-ef99-4ce5-b2e4-f5af9443c0fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:10.8631656Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/87b6adc0-697c-412e-82b7-fefe9aec93da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:10.863247Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -3867,17 +3743,17 @@ interactions: connection: - keep-alive content-length: - - '1710' + - '1708' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:32 GMT + - Wed, 26 Feb 2025 23:10:10 GMT mise-correlation-id: - - 755d4f4e-fc53-445b-9f7b-413852240236 + - 1520152e-f08f-4798-994e-014cc01ea20d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220132Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000007ze + - 20250226T231010Z-167c755789dw9d62hC1SG1x2v800000001ug0000000004dx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3897,9 +3773,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: string: '' @@ -3910,13 +3786,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:01:33 GMT + - Wed, 26 Feb 2025 23:10:11 GMT mise-correlation-id: - - acd7766b-b63f-4abf-9900-968f2ac2f75d + - 91a3dd72-1828-4a38-997c-f0306f013efc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220132Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000007zv + - 20250226T231010Z-167c755789dw9d62hC1SG1x2v800000001ug0000000004f4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3941,14 +3817,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/7e6cc1d6-0783-4d72-ac8e-10d909477361?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A11Z&ske=2025-02-25T04%3A59%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A34Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:11:34.1240759Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/37291585-139a-4bac-930d-3f215eb4c0be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A11Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:11.5896218Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -3956,19 +3832,19 @@ interactions: connection: - keep-alive content-length: - - '573' + - '570' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:34 GMT + - Wed, 26 Feb 2025 23:10:11 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - e232ae70-0180-4fa3-b71a-b971b1f03713 + - 3eb77a2c-e337-4f4a-829a-5be40be96cd4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220133Z-r17775d4f98kr5knhC1SG1nvrw00000007xg000000000803 + - 20250226T231011Z-167c755789dw9d62hC1SG1x2v800000001ug0000000004fv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3986,12 +3862,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/7e6cc1d6-0783-4d72-ac8e-10d909477361?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A34Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:11:34.3800128Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/37291585-139a-4bac-930d-3f215eb4c0be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A11Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:11.8441651Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -4001,17 +3877,17 @@ interactions: connection: - keep-alive content-length: - - '583' + - '574' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:34 GMT + - Wed, 26 Feb 2025 23:10:11 GMT mise-correlation-id: - - 95f2e5f4-9827-4525-82e9-4b4ab4b285dd + - d92dbb9e-0fe4-4526-84b9-a36667dd4c73 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220134Z-r17775d4f98kr5knhC1SG1nvrw00000007xg000000000817 + - 20250226T231011Z-167c755789dw9d62hC1SG1x2v800000001ug0000000004gs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4031,9 +3907,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: string: '' @@ -4044,13 +3920,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:01:35 GMT + - Wed, 26 Feb 2025 23:10:12 GMT mise-correlation-id: - - 18b349b1-15c4-4abc-a040-9f94f82b8d45 + - 8f78c088-884e-4d9c-98e2-bf0059ee6f9b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220134Z-r17775d4f98kr5knhC1SG1nvrw00000007xg00000000081h + - 20250226T231011Z-167c755789dw9d62hC1SG1x2v800000001ug0000000004hb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4079,14 +3955,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/080ca611-9d00-4f93-9be6-33da0e2909d8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:11:35.3751487Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/d3282514-10e6-4319-ab5f-0b8c67d78a72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:12.6087104Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -4094,19 +3970,19 @@ interactions: connection: - keep-alive content-length: - - '561' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:35 GMT + - Wed, 26 Feb 2025 23:10:12 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 2807b223-c6d9-4b08-98e4-29bdfa9c748f + - 958e99b0-2dc7-486a-ae5a-1dbff4870058 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220135Z-r17775d4f98kr5knhC1SG1nvrw00000007xg00000000082m + - 20250226T231012Z-167c755789dw9d62hC1SG1x2v800000001ug0000000004k4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4124,12 +4000,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/080ca611-9d00-4f93-9be6-33da0e2909d8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:11:35.6265761Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/d3282514-10e6-4319-ab5f-0b8c67d78a72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:12.8591377Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -4139,17 +4015,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:35 GMT + - Wed, 26 Feb 2025 23:10:12 GMT mise-correlation-id: - - 218d3715-ad1d-4b5c-8c6a-eeae387272ee + - e7e636ba-1fa9-4d53-a902-f7337982d01c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220135Z-r17775d4f98kr5knhC1SG1nvrw00000007xg00000000083b + - 20250226T231012Z-167c755789dw9d62hC1SG1x2v800000001ug0000000004m7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4169,9 +4045,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: string: '' @@ -4182,13 +4058,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:01:36 GMT + - Wed, 26 Feb 2025 23:10:13 GMT mise-correlation-id: - - ba5e1b79-8f29-42cb-9000-555a3a972875 + - 369e54ae-d9bb-430b-9ff4-d71a317516b4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220135Z-r17775d4f98kr5knhC1SG1nvrw00000007xg00000000083r + - 20250226T231012Z-167c755789dw9d62hC1SG1x2v800000001ug0000000004my x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4297,14 +4173,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/c899ef91-06f4-4101-b998-b62f983259fb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:11:37.7836553Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/64bf547e-0a6d-46c1-9858-5c694682cd31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:13.7003562Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -4312,19 +4188,19 @@ interactions: connection: - keep-alive content-length: - - '559' + - '564' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:37 GMT + - Wed, 26 Feb 2025 23:10:13 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 221fa3b0-72e8-487e-917a-79fb2eb1ddd5 + - 5788bc64-72b6-4d89-9ebb-732105aa5ec4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220136Z-r17775d4f98kr5knhC1SG1nvrw00000007xg000000000843 + - 20250226T231013Z-167c755789dw9d62hC1SG1x2v800000001ug0000000004nk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4342,12 +4218,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/c899ef91-06f4-4101-b998-b62f983259fb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:11:38.0332338Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/64bf547e-0a6d-46c1-9858-5c694682cd31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:13.9631857Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -4357,17 +4233,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:38 GMT + - Wed, 26 Feb 2025 23:10:14 GMT mise-correlation-id: - - 955f74ac-1ef5-48b7-845e-a13ddb023d31 + - 9c0cae8a-2ad0-4925-939b-901a2f44e2a1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220137Z-r17775d4f98kr5knhC1SG1nvrw00000007xg00000000088e + - 20250226T231013Z-167c755789dw9d62hC1SG1x2v800000001ug0000000004q2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4385,12 +4261,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/c899ef91-06f4-4101-b998-b62f983259fb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:11:43.2866631Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/64bf547e-0a6d-46c1-9858-5c694682cd31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:19.2124918Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -4400,17 +4276,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:43 GMT + - Wed, 26 Feb 2025 23:10:19 GMT mise-correlation-id: - - 265a42e1-8b6d-4384-a8cd-fabb59ceef10 + - 5c8154df-6195-4235-8b7c-5306bdaf8076 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220143Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000008fh + - 20250226T231019Z-167c755789dw9d62hC1SG1x2v800000001ug0000000004zs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4428,12 +4304,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/c899ef91-06f4-4101-b998-b62f983259fb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A11Z&ske=2025-02-25T04%3A59%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:11:48.5363637Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/64bf547e-0a6d-46c1-9858-5c694682cd31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:24.4700325Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -4443,17 +4319,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:48 GMT + - Wed, 26 Feb 2025 23:10:24 GMT mise-correlation-id: - - b6e689f1-9737-43cb-b0b6-c814e95b4277 + - ec16a6ca-7705-41ce-ae11-d8162945aaf2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220148Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000008ts + - 20250226T231024Z-167c755789dw9d62hC1SG1x2v800000001ug000000000585 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4471,12 +4347,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/c899ef91-06f4-4101-b998-b62f983259fb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:11:53.9283906Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/64bf547e-0a6d-46c1-9858-5c694682cd31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:29.7332067Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -4486,17 +4362,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:54 GMT + - Wed, 26 Feb 2025 23:10:29 GMT mise-correlation-id: - - 8c343081-4b5c-4bdd-ad51-326a869ac4f8 + - c0db977a-6c5a-4fe5-baa2-f63d4337c5f7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220153Z-r17775d4f98kr5knhC1SG1nvrw00000007xg00000000093f + - 20250226T231029Z-167c755789dw9d62hC1SG1x2v800000001ug0000000005k3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4514,12 +4390,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/c899ef91-06f4-4101-b998-b62f983259fb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A11%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:11:59.180707Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/64bf547e-0a6d-46c1-9858-5c694682cd31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:35.0053942Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -4529,17 +4405,17 @@ interactions: connection: - keep-alive content-length: - - '564' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:59 GMT + - Wed, 26 Feb 2025 23:10:35 GMT mise-correlation-id: - - fd3885c8-be91-4ee1-ac25-465dcaf91177 + - e25a5940-d5d7-447f-8b2d-21b2599aaad8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220159Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000009b0 + - 20250226T231034Z-167c755789dw9d62hC1SG1x2v800000001ug0000000005wq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4557,12 +4433,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/c899ef91-06f4-4101-b998-b62f983259fb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:12:04.4312217Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/64bf547e-0a6d-46c1-9858-5c694682cd31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:40.2623316Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -4572,17 +4448,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:04 GMT + - Wed, 26 Feb 2025 23:10:40 GMT mise-correlation-id: - - 3f7a40a1-c01c-4749-a2ee-3ca09bf5fc02 + - 015924ea-5d58-470d-a3d9-1c1339e60071 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220204Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000009ph + - 20250226T231040Z-167c755789dw9d62hC1SG1x2v800000001ug00000000065d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4600,12 +4476,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/c899ef91-06f4-4101-b998-b62f983259fb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:12:09.6867203Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/64bf547e-0a6d-46c1-9858-5c694682cd31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:45.5322647Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -4615,17 +4491,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:09 GMT + - Wed, 26 Feb 2025 23:10:45 GMT mise-correlation-id: - - 257fef5d-c740-4d33-b4f5-fef06f91aea9 + - cdfb9ccf-42a4-4263-99d1-585e6d831fc6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220209Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000009zm + - 20250226T231045Z-167c755789dw9d62hC1SG1x2v800000001ug0000000006ep x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4643,12 +4519,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/c899ef91-06f4-4101-b998-b62f983259fb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:12:14.9477326Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/64bf547e-0a6d-46c1-9858-5c694682cd31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:50.7868438Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -4658,17 +4534,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:15 GMT + - Wed, 26 Feb 2025 23:10:50 GMT mise-correlation-id: - - fa9a5aa6-db1a-45c3-b4f6-bc2f0f538b4f + - d0c6db96-2f41-4249-a158-455ee3224ab8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220214Z-r17775d4f98kr5knhC1SG1nvrw00000007xg000000000aan + - 20250226T231050Z-167c755789dw9d62hC1SG1x2v800000001ug0000000006qv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4686,13 +4562,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fedc97a3-4303-40e9-8af8-0401759643f8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"13162d02-fa07-4ec3-8189-a145aafb7ed1":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"8449669a-a8db-4cdf-9c80-628f5855fd25":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":250},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/c899ef91-06f4-4101-b998-b62f983259fb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:15.2068121Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/7e6cc1d6-0783-4d72-ac8e-10d909477361?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:15.2070218Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/080ca611-9d00-4f93-9be6-33da0e2909d8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:15.2071144Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:02:11.372Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"ac87ea33-2e3a-4931-af53-27e35c864dd8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"7b734865-25ba-4a78-9215-dfcf1a2e47aa":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d5f273ec-21a2-499a-95c9-a64a1f9aa081":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":250},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/64bf547e-0a6d-46c1-9858-5c694682cd31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:51.0420506Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/37291585-139a-4bac-930d-3f215eb4c0be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A51Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:51.0426455Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/d3282514-10e6-4319-ab5f-0b8c67d78a72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:51.0430306Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:47.094Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -4702,17 +4578,17 @@ interactions: connection: - keep-alive content-length: - - '2919' + - '2916' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:15 GMT + - Wed, 26 Feb 2025 23:10:51 GMT mise-correlation-id: - - f452d920-6ef0-4936-9374-55555a19e8c3 + - 26e3710d-731f-4daf-8a81-0a48885ad2d8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220215Z-r17775d4f98kr5knhC1SG1nvrw00000007xg000000000aaz + - 20250226T231050Z-167c755789dw9d62hC1SG1x2v800000001ug0000000006rg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4735,7 +4611,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:35.1290546Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:35.1290546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:27.0674433Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:27.0674433Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4744,9 +4620,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:15 GMT + - Wed, 26 Feb 2025 23:10:52 GMT etag: - - '"4f01bcd0-0000-0200-0000-67bceba30000"' + - '"8f01bc60-0000-0200-0000-67bf9ec50000"' expires: - '-1' pragma: @@ -4762,7 +4638,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B5275D40EA0E4DCF8E863868DC10036F Ref B: MAA201060515051 Ref C: 2025-02-24T22:02:15Z' + - 'Ref A: 89891CFC7DD7454A9881E9206FE2A208 Ref B: MAA201060515023 Ref C: 2025-02-26T23:10:51Z' status: code: 200 message: OK @@ -4776,13 +4652,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fedc97a3-4303-40e9-8af8-0401759643f8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"13162d02-fa07-4ec3-8189-a145aafb7ed1":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"8449669a-a8db-4cdf-9c80-628f5855fd25":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":250},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/c899ef91-06f4-4101-b998-b62f983259fb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:17.1300344Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/7e6cc1d6-0783-4d72-ac8e-10d909477361?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A17Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:17.1304312Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/080ca611-9d00-4f93-9be6-33da0e2909d8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:17.1305685Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:02:11.372Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"ac87ea33-2e3a-4931-af53-27e35c864dd8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"7b734865-25ba-4a78-9215-dfcf1a2e47aa":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d5f273ec-21a2-499a-95c9-a64a1f9aa081":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":98.5,"errorRateTimeWindowInSeconds":250},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/64bf547e-0a6d-46c1-9858-5c694682cd31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:52.9715666Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/37291585-139a-4bac-930d-3f215eb4c0be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A52Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:52.9718844Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/d3282514-10e6-4319-ab5f-0b8c67d78a72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:52.9719631Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:47.094Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -4792,17 +4668,17 @@ interactions: connection: - keep-alive content-length: - - '2915' + - '2924' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:17 GMT + - Wed, 26 Feb 2025 23:10:53 GMT mise-correlation-id: - - 59c4f9c3-41f7-41a8-851f-eeb33aea1554 + - 364e06ee-6a6d-4cb6-8c73-740ad27b0827 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220216Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003cf5 + - 20250226T231052Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003x4t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4816,14 +4692,15 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": - {"fedc97a3-4303-40e9-8af8-0401759643f8": null, "13162d02-fa07-4ec3-8189-a145aafb7ed1": - null, "8449669a-a8db-4cdf-9c80-628f5855fd25": null, "9f35ce68-aa16-406e-8942-34b02df2dbbd": + {"ac87ea33-2e3a-4931-af53-27e35c864dd8": null, "7b734865-25ba-4a78-9215-dfcf1a2e47aa": + null, "d5f273ec-21a2-499a-95c9-a64a1f9aa081": null, "322cd5c4-6da8-410d-8740-d567362fcf17": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "e3bff7f2-578e-4058-b73b-9a98779017ed": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "dc269a4b-702a-4fec-b46b-adf798816d9e": + "78"}, "782376a3-9879-47cc-bd9f-cf9ce1ef24cb": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "54bbbd0a-7795-41f3-ad16-a8e62d12de11": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": - false, "errorRate": 77.5, "errorRateTimeWindowInSeconds": 90}}' + false, "errorRate": 77.5, "errorRateTimeWindowInSeconds": 90}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -4832,17 +4709,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1098' + - '1167' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"dc269a4b-702a-4fec-b46b-adf798816d9e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"e3bff7f2-578e-4058-b73b-9a98779017ed":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9f35ce68-aa16-406e-8942-34b02df2dbbd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/c899ef91-06f4-4101-b998-b62f983259fb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:17.4697118Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/7e6cc1d6-0783-4d72-ac8e-10d909477361?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A17Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:17.4700534Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/080ca611-9d00-4f93-9be6-33da0e2909d8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:17.4701518Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:02:17.461Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54bbbd0a-7795-41f3-ad16-a8e62d12de11":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"782376a3-9879-47cc-bd9f-cf9ce1ef24cb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"322cd5c4-6da8-410d-8740-d567362fcf17":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/64bf547e-0a6d-46c1-9858-5c694682cd31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:53.2891294Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/37291585-139a-4bac-930d-3f215eb4c0be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A53Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:53.2895Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/d3282514-10e6-4319-ab5f-0b8c67d78a72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:53.2896733Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:53.279Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -4852,17 +4729,17 @@ interactions: connection: - keep-alive content-length: - - '2940' + - '2930' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:17 GMT + - Wed, 26 Feb 2025 23:10:53 GMT mise-correlation-id: - - 002515c6-51fb-46e5-baea-4074305365a1 + - 460cd525-5706-4fff-b1f5-aa5df96055f4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220217Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003cga + - 20250226T231053Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003x64 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4880,12 +4757,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/c899ef91-06f4-4101-b998-b62f983259fb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:12:17.7266256Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/7e6cc1d6-0783-4d72-ac8e-10d909477361?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A17Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:12:17.7268197Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/080ca611-9d00-4f93-9be6-33da0e2909d8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:12:17.7269918Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/64bf547e-0a6d-46c1-9858-5c694682cd31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:53.5501655Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/37291585-139a-4bac-930d-3f215eb4c0be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A53Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:53.550335Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/d3282514-10e6-4319-ab5f-0b8c67d78a72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:53.5505065Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -4899,13 +4776,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:17 GMT + - Wed, 26 Feb 2025 23:10:53 GMT mise-correlation-id: - - a39ba1d8-52ed-49b3-8f4f-f9d993639bb7 + - 98d880bb-187d-4f10-9480-cb5d4388352f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220217Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003cgu + - 20250226T231053Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003x6g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4925,9 +4802,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: string: '' @@ -4938,13 +4815,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:02:19 GMT + - Wed, 26 Feb 2025 23:10:54 GMT mise-correlation-id: - - 24b57760-eda7-4d11-af40-01b032f16a1a + - ae725353-0102-4846-9107-703294237061 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220217Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003ch5 + - 20250226T231053Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003x6w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4969,14 +4846,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/6e3fa48f-5c50-46e6-9197-e4e14c78c5a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A11Z&ske=2025-02-25T04%3A59%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A19Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:12:19.241787Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/80da1340-bc23-4f5e-8e79-d627aae47f17?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A54Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:54.3064595Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -4984,19 +4861,19 @@ interactions: connection: - keep-alive content-length: - - '572' + - '574' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:19 GMT + - Wed, 26 Feb 2025 23:10:54 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 8f6e4db5-c5be-4750-80e1-04bb7de11fe0 + - a0619694-48f5-4f8a-9779-829eeaf05798 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220219Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003cm8 + - 20250226T231054Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003x7s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5014,12 +4891,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/6e3fa48f-5c50-46e6-9197-e4e14c78c5a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A19Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:12:19.4928115Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/80da1340-bc23-4f5e-8e79-d627aae47f17?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A54Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:54.5600908Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -5029,17 +4906,17 @@ interactions: connection: - keep-alive content-length: - - '575' + - '570' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:19 GMT + - Wed, 26 Feb 2025 23:10:54 GMT mise-correlation-id: - - 48417371-8d78-463f-a5d0-a526d12aec55 + - 2aeb6eae-2c14-43cc-b070-6dca4bf3c0e5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220219Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003cn8 + - 20250226T231054Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003x8u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5059,9 +4936,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: string: '' @@ -5072,13 +4949,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:02:19 GMT + - Wed, 26 Feb 2025 23:10:55 GMT mise-correlation-id: - - 2ec4f98b-76ad-4d34-9ddf-6a2c37f0e374 + - 63cc2f72-8542-47f5-9d9b-7d74d9944261 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220219Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003cnu + - 20250226T231054Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003x9u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5107,14 +4984,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/cf0a7778-23ab-44c2-a225-dc3521b3e24b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:12:20.2339664Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/62c1ca33-6255-401b-b7aa-588047eda288?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:55.9338332Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -5122,19 +4999,19 @@ interactions: connection: - keep-alive content-length: - - '561' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:20 GMT + - Wed, 26 Feb 2025 23:10:56 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 64e383fc-38cc-4e1a-8c2b-1b1b1b2a22a6 + - ac341ae9-9f68-4cde-8760-b179b03f684b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220219Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003cpa + - 20250226T231055Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003xb7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5152,12 +5029,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/cf0a7778-23ab-44c2-a225-dc3521b3e24b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:12:20.4860032Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/62c1ca33-6255-401b-b7aa-588047eda288?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:56.1917365Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -5167,17 +5044,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '564' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:20 GMT + - Wed, 26 Feb 2025 23:10:56 GMT mise-correlation-id: - - 75561364-d906-46e1-b9c7-5dfc80c42377 + - 811211fe-b480-4544-a670-a235106d43c1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220220Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003cq2 + - 20250226T231056Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003xg6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5197,9 +5074,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: string: '' @@ -5210,13 +5087,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:02:20 GMT + - Wed, 26 Feb 2025 23:10:56 GMT mise-correlation-id: - - b0a88df2-05b5-4e70-980d-66d4ca76bab6 + - 3619c226-e08a-4e1e-ac23-8460ac08133e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220220Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003cqc + - 20250226T231056Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003xha x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5325,14 +5202,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/aac80e52-2ed6-459d-976d-9c5efe08b406?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:12:21.8442125Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3f575c08-63fa-4fe2-8c3a-0926e8843e3e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:57.0332369Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -5340,19 +5217,19 @@ interactions: connection: - keep-alive content-length: - - '559' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:21 GMT + - Wed, 26 Feb 2025 23:10:57 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 02471074-993b-41bf-9f43-c0f7fda22e8f + - 264005fa-ca48-4599-b438-d138fbf90420 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220220Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003cqq + - 20250226T231056Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003xm1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5370,98 +5247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/aac80e52-2ed6-459d-976d-9c5efe08b406?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:12:22.1676Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 22:02:22 GMT - mise-correlation-id: - - fc4c9f95-ee94-458f-8b32-fd0e5eafd4ca - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T220221Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003cs5 - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/aac80e52-2ed6-459d-976d-9c5efe08b406?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:12:27.4200743Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 22:02:27 GMT - mise-correlation-id: - - bc8184ad-a0b5-4102-a69f-8d87087447b5 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T220227Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003d08 - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/aac80e52-2ed6-459d-976d-9c5efe08b406?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:12:32.670545Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3f575c08-63fa-4fe2-8c3a-0926e8843e3e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:57.2876484Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5471,17 +5262,17 @@ interactions: connection: - keep-alive content-length: - - '564' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:32 GMT + - Wed, 26 Feb 2025 23:10:57 GMT mise-correlation-id: - - 17a85855-9a52-4282-9c83-5ba1f696593c + - 01515f57-6cf2-4406-8c3e-f490230acb45 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220232Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003d8g + - 20250226T231057Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003xpb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5499,12 +5290,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/aac80e52-2ed6-459d-976d-9c5efe08b406?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:12:37.9194507Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3f575c08-63fa-4fe2-8c3a-0926e8843e3e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:02.5400345Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5514,17 +5305,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:38 GMT + - Wed, 26 Feb 2025 23:11:02 GMT mise-correlation-id: - - 1af82efe-8f6c-465c-8e8b-15882091756d + - 70b27f4e-370c-469a-b8a3-4eda4a413452 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220237Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003dgs + - 20250226T231102Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003y2t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5542,12 +5333,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/aac80e52-2ed6-459d-976d-9c5efe08b406?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:12:43.1695989Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3f575c08-63fa-4fe2-8c3a-0926e8843e3e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:07.8450641Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5557,17 +5348,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:43 GMT + - Wed, 26 Feb 2025 23:11:07 GMT mise-correlation-id: - - 7bc0e227-0a90-4a55-b319-715ec678d352 + - bc1d4a25-c440-4aa2-97b2-0fc143061a31 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220243Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003dtt + - 20250226T231107Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003ydb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5585,12 +5376,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/aac80e52-2ed6-459d-976d-9c5efe08b406?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:12:48.4386331Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3f575c08-63fa-4fe2-8c3a-0926e8843e3e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:13.0973616Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5600,17 +5391,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '564' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:48 GMT + - Wed, 26 Feb 2025 23:11:13 GMT mise-correlation-id: - - 497f6877-8593-4d40-901d-d701a9cf6a2b + - fcf7e9d7-a95a-42d7-9fbd-f12642c8f916 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220248Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003e1u + - 20250226T231112Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003ywb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5628,12 +5419,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/aac80e52-2ed6-459d-976d-9c5efe08b406?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A11Z&ske=2025-02-25T04%3A59%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:12:53.6895335Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3f575c08-63fa-4fe2-8c3a-0926e8843e3e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:18.3643367Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5643,17 +5434,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:53 GMT + - Wed, 26 Feb 2025 23:11:18 GMT mise-correlation-id: - - d5396314-d572-4c60-8d3b-e68c5dd20501 + - 0d5d13eb-4c6b-4cc0-81c9-173592f9b46a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220253Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003ebm + - 20250226T231118Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003z99 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5671,12 +5462,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/aac80e52-2ed6-459d-976d-9c5efe08b406?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A12%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:12:58.941323Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3f575c08-63fa-4fe2-8c3a-0926e8843e3e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:23.6136679Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5686,17 +5477,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '564' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:59 GMT + - Wed, 26 Feb 2025 23:11:23 GMT mise-correlation-id: - - 58ba2032-2366-4339-a907-8c77e3d43ef0 + - 3aac038b-1ea3-43df-be95-72ac05aabf12 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220258Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003emq + - 20250226T231123Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003zr1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5714,12 +5505,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/aac80e52-2ed6-459d-976d-9c5efe08b406?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:13:04.1913418Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3f575c08-63fa-4fe2-8c3a-0926e8843e3e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:28.865395Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -5733,13 +5524,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:04 GMT + - Wed, 26 Feb 2025 23:11:28 GMT mise-correlation-id: - - f24ff621-7b5f-4cc3-b499-351b717bf922 + - f0079de0-2510-48ce-a134-e66647f89eb9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220304Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003euz + - 20250226T231128Z-r17775d4f98dvpdwhC1SG17y380000001a5g00000000402v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5757,12 +5548,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/aac80e52-2ed6-459d-976d-9c5efe08b406?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:13:09.4876545Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3f575c08-63fa-4fe2-8c3a-0926e8843e3e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:34.122455Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -5772,17 +5563,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:09 GMT + - Wed, 26 Feb 2025 23:11:34 GMT mise-correlation-id: - - 54f980f7-a2f4-4b68-bd8f-fa5f6a4aac67 + - b39548ff-9706-4109-9201-f982f8985d5b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220309Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003f36 + - 20250226T231133Z-r17775d4f98dvpdwhC1SG17y380000001a5g0000000040dx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5800,13 +5591,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"dc269a4b-702a-4fec-b46b-adf798816d9e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"e3bff7f2-578e-4058-b73b-9a98779017ed":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9f35ce68-aa16-406e-8942-34b02df2dbbd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/aac80e52-2ed6-459d-976d-9c5efe08b406?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:03:09.74911Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/6e3fa48f-5c50-46e6-9197-e4e14c78c5a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A09Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:09.7497885Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/cf0a7778-23ab-44c2-a225-dc3521b3e24b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:03:09.7498855Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:03:05.929Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54bbbd0a-7795-41f3-ad16-a8e62d12de11":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"782376a3-9879-47cc-bd9f-cf9ce1ef24cb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"322cd5c4-6da8-410d-8740-d567362fcf17":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3f575c08-63fa-4fe2-8c3a-0926e8843e3e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:11:34.3795846Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/80da1340-bc23-4f5e-8e79-d627aae47f17?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A34Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:11:34.3800305Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/62c1ca33-6255-401b-b7aa-588047eda288?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:11:34.3802413Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:30.063Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -5816,17 +5607,17 @@ interactions: connection: - keep-alive content-length: - - '2936' + - '2945' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:09 GMT + - Wed, 26 Feb 2025 23:11:34 GMT mise-correlation-id: - - 46a38120-ca76-4334-9fdf-640ce713d830 + - 025c1752-578c-497a-b5c8-5e25db49a8aa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220309Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000003f3q + - 20250226T231134Z-r17775d4f98dvpdwhC1SG17y380000001a5g0000000040ek x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5849,7 +5640,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:35.1290546Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:35.1290546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:27.0674433Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:27.0674433Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -5858,9 +5649,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:10 GMT + - Wed, 26 Feb 2025 23:11:34 GMT etag: - - '"4f01bcd0-0000-0200-0000-67bceba30000"' + - '"8f01bc60-0000-0200-0000-67bf9ec50000"' expires: - '-1' pragma: @@ -5876,7 +5667,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 991653C60B31470A85BB63FCEE52D085 Ref B: MAA201060514035 Ref C: 2025-02-24T22:03:10Z' + - 'Ref A: 4F12F48E00024463B46D2D8516A92CB9 Ref B: MAA201060515033 Ref C: 2025-02-26T23:11:34Z' status: code: 200 message: OK @@ -5890,13 +5681,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"dc269a4b-702a-4fec-b46b-adf798816d9e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"e3bff7f2-578e-4058-b73b-9a98779017ed":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9f35ce68-aa16-406e-8942-34b02df2dbbd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/aac80e52-2ed6-459d-976d-9c5efe08b406?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:03:11.9014849Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/6e3fa48f-5c50-46e6-9197-e4e14c78c5a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A11Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:11.903176Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/cf0a7778-23ab-44c2-a225-dc3521b3e24b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:03:11.9033354Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:03:05.929Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"54bbbd0a-7795-41f3-ad16-a8e62d12de11":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"782376a3-9879-47cc-bd9f-cf9ce1ef24cb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"322cd5c4-6da8-410d-8740-d567362fcf17":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3f575c08-63fa-4fe2-8c3a-0926e8843e3e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:11:35.8398136Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/80da1340-bc23-4f5e-8e79-d627aae47f17?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A35Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:11:35.8400814Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/62c1ca33-6255-401b-b7aa-588047eda288?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:11:35.8401786Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:30.063Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -5906,17 +5697,17 @@ interactions: connection: - keep-alive content-length: - - '2943' + - '2935' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:12 GMT + - Wed, 26 Feb 2025 23:11:35 GMT mise-correlation-id: - - b9ee020a-f219-4b98-b82f-4aa27c60e5e1 + - cc0a3c20-db65-4e29-91b6-70af9d639a2a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220311Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000032bc + - 20250226T231135Z-167c755789dx4ktjhC1SG17mp000000000rg000000007q9u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5930,14 +5721,15 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": - {"dc269a4b-702a-4fec-b46b-adf798816d9e": null, "e3bff7f2-578e-4058-b73b-9a98779017ed": - null, "9f35ce68-aa16-406e-8942-34b02df2dbbd": null, "a9329625-da78-43a9-bc91-e9d4fbde8ede": + {"54bbbd0a-7795-41f3-ad16-a8e62d12de11": null, "782376a3-9879-47cc-bd9f-cf9ce1ef24cb": + null, "322cd5c4-6da8-410d-8740-d567362fcf17": null, "c6749199-a17e-4c62-8bc9-bae36d3d93f9": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "334c12c6-c608-40bd-b406-631e2934ab2b": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "5f45afff-6814-427d-852e-9e3b1203f18b": + "78"}, "b50b5795-77f5-40f0-a35c-c0ac34752330": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "4e459a2c-a25f-4d3a-b3be-8235c39bec0e": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": - true, "errorRate": 77.5, "errorRateTimeWindowInSeconds": 90}}' + true, "errorRate": 77.5, "errorRateTimeWindowInSeconds": 90}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -5946,17 +5738,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1097' + - '1166' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f45afff-6814-427d-852e-9e3b1203f18b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"334c12c6-c608-40bd-b406-631e2934ab2b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a9329625-da78-43a9-bc91-e9d4fbde8ede":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/aac80e52-2ed6-459d-976d-9c5efe08b406?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:03:12.2622544Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/6e3fa48f-5c50-46e6-9197-e4e14c78c5a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A12Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:12.2625368Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/cf0a7778-23ab-44c2-a225-dc3521b3e24b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:03:12.2626004Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:03:12.253Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4e459a2c-a25f-4d3a-b3be-8235c39bec0e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"b50b5795-77f5-40f0-a35c-c0ac34752330":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c6749199-a17e-4c62-8bc9-bae36d3d93f9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3f575c08-63fa-4fe2-8c3a-0926e8843e3e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:11:36.1616877Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/80da1340-bc23-4f5e-8e79-d627aae47f17?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A36Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:11:36.1619065Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/62c1ca33-6255-401b-b7aa-588047eda288?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:11:36.1619992Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:36.149Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -5966,17 +5758,17 @@ interactions: connection: - keep-alive content-length: - - '2933' + - '2930' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:12 GMT + - Wed, 26 Feb 2025 23:11:36 GMT mise-correlation-id: - - cb9a82a2-56b7-4d50-8c12-845bd92cbfd3 + - 7b7f3442-c7ed-4974-90b1-690254f01b10 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220312Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000032d5 + - 20250226T231135Z-167c755789dx4ktjhC1SG17mp000000000rg000000007qbv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -5994,12 +5786,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/aac80e52-2ed6-459d-976d-9c5efe08b406?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:13:12.5170076Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/6e3fa48f-5c50-46e6-9197-e4e14c78c5a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A12Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:13:12.5171113Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/cf0a7778-23ab-44c2-a225-dc3521b3e24b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:13:12.5172073Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/3f575c08-63fa-4fe2-8c3a-0926e8843e3e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:36.4141987Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/80da1340-bc23-4f5e-8e79-d627aae47f17?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A36Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:21:36.4142886Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/62c1ca33-6255-401b-b7aa-588047eda288?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:21:36.4143743Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -6009,17 +5801,17 @@ interactions: connection: - keep-alive content-length: - - '1714' + - '1713' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:12 GMT + - Wed, 26 Feb 2025 23:11:36 GMT mise-correlation-id: - - 2c97646c-5230-4191-a1a7-1c7ce3010603 + - 712a554b-5330-4ea1-baee-4d807a98c110 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220312Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000032dt + - 20250226T231136Z-167c755789dx4ktjhC1SG17mp000000000rg000000007qd1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6039,9 +5831,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: string: '' @@ -6052,13 +5844,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:03:12 GMT + - Wed, 26 Feb 2025 23:11:36 GMT mise-correlation-id: - - 273d423f-d847-41c7-bca6-c035b09f38bd + - c0268b6f-cdcf-47ff-83f8-16cb673fee24 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220312Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000032e6 + - 20250226T231136Z-167c755789dx4ktjhC1SG17mp000000000rg000000007qdz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6083,14 +5875,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/d0e6f02d-e5bb-4e36-bb23-a6e9541265e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:13:13.2377192Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/92dba408-0475-4457-b4ab-337ec3a40195?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A37Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:21:37.184818Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -6102,15 +5894,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:13 GMT + - Wed, 26 Feb 2025 23:11:37 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 6e23275f-054a-458b-ac15-445cff1bebe4 + - 45409e14-0767-4fc8-9931-f0576742c929 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220312Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000032ev + - 20250226T231136Z-167c755789dx4ktjhC1SG17mp000000000rg000000007qev x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6128,12 +5920,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/d0e6f02d-e5bb-4e36-bb23-a6e9541265e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A11Z&ske=2025-02-25T04%3A59%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:13:13.4983109Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/92dba408-0475-4457-b4ab-337ec3a40195?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A37Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:21:37.4344998Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -6143,17 +5935,17 @@ interactions: connection: - keep-alive content-length: - - '571' + - '576' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:13 GMT + - Wed, 26 Feb 2025 23:11:37 GMT mise-correlation-id: - - c0c752fb-058f-44d5-9390-45e9894ff90b + - eccd14d7-6fca-4558-9cee-5a114ea49c92 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220313Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000032fc + - 20250226T231137Z-167c755789dx4ktjhC1SG17mp000000000rg000000007qg2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6173,9 +5965,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: string: '' @@ -6186,13 +5978,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:03:13 GMT + - Wed, 26 Feb 2025 23:11:37 GMT mise-correlation-id: - - 3d4fb246-ac2b-4138-87d8-07843d5989dc + - 4395632d-deee-475e-ada6-f4799ceb69e1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220313Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000032ft + - 20250226T231137Z-167c755789dx4ktjhC1SG17mp000000000rg000000007qgr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6221,14 +6013,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/82d49d6d-ee16-4eb5-b952-0629b8415a0e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:13:14.2224465Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/a430490a-ff5a-4c8a-abbb-f42bf2a6d43e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:21:38.1557997Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -6236,19 +6028,19 @@ interactions: connection: - keep-alive content-length: - - '563' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:14 GMT + - Wed, 26 Feb 2025 23:11:38 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 74c5cc83-9610-4b34-bd09-50868c27281e + - 8e267d9d-f056-4485-9fb4-4283cf106ce2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220313Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000032g3 + - 20250226T231137Z-167c755789dx4ktjhC1SG17mp000000000rg000000007qha x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6266,12 +6058,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/82d49d6d-ee16-4eb5-b952-0629b8415a0e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:13:14.5201552Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/a430490a-ff5a-4c8a-abbb-f42bf2a6d43e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:21:38.4081633Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -6281,17 +6073,17 @@ interactions: connection: - keep-alive content-length: - - '567' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:14 GMT + - Wed, 26 Feb 2025 23:11:38 GMT mise-correlation-id: - - c6db0657-03d7-4936-8938-2d1242be58a4 + - bc0242bb-50ae-40f3-9be7-6e8867480f04 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220314Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000032gc + - 20250226T231138Z-167c755789dx4ktjhC1SG17mp000000000rg000000007qka x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6311,9 +6103,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: string: '' @@ -6324,13 +6116,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:03:14 GMT + - Wed, 26 Feb 2025 23:11:38 GMT mise-correlation-id: - - adcccdeb-947b-4d8c-a059-fbe0377b6ed9 + - a612a091-3fe3-420f-8640-1a1fea65c013 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220314Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000032h1 + - 20250226T231138Z-167c755789dx4ktjhC1SG17mp000000000rg000000007qm8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6439,14 +6231,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/641fd944-759c-4b73-b210-532a4c296465?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:13:15.3202143Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/ffed8e26-c2ad-430c-875a-54d7f7119b31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:39.246254Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -6458,15 +6250,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:15 GMT + - Wed, 26 Feb 2025 23:11:39 GMT location: - - https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 05347b04-ac6a-45b9-9672-2cc58de437f3 + - 4df9b6da-175a-4c2b-8e15-131e38d1d009 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220314Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000032hc + - 20250226T231138Z-167c755789dx4ktjhC1SG17mp000000000rg000000007qn3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6484,12 +6276,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/641fd944-759c-4b73-b210-532a4c296465?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:13:15.5730266Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/ffed8e26-c2ad-430c-875a-54d7f7119b31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:39.499659Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -6499,17 +6291,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:15 GMT + - Wed, 26 Feb 2025 23:11:39 GMT mise-correlation-id: - - 309854aa-259e-4039-aab7-2fca2045ff2a + - 95b07827-c2d2-43ba-9a60-a03761c2c7f8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220315Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000032k4 + - 20250226T231139Z-167c755789dx4ktjhC1SG17mp000000000rg000000007qp9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6527,12 +6319,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/641fd944-759c-4b73-b210-532a4c296465?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:13:20.8300204Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/ffed8e26-c2ad-430c-875a-54d7f7119b31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:44.775408Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -6542,17 +6334,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '569' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:20 GMT + - Wed, 26 Feb 2025 23:11:44 GMT mise-correlation-id: - - 16946d5d-778c-48d3-98ba-a0ad6b8b33a2 + - 24ff0a7e-bbed-4e49-965e-a8b4e7fee218 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220320Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000032v5 + - 20250226T231144Z-167c755789dx4ktjhC1SG17mp000000000rg000000007r36 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6570,12 +6362,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/641fd944-759c-4b73-b210-532a4c296465?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:13:26.0823319Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/ffed8e26-c2ad-430c-875a-54d7f7119b31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:50.026632Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -6589,13 +6381,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:26 GMT + - Wed, 26 Feb 2025 23:11:50 GMT mise-correlation-id: - - ed692d4b-f048-46c4-979a-286e27273d0a + - db728970-e705-4d72-9b4d-997c7ecdc5a1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220325Z-r17775d4f98mc5fbhC1SG1vp2s000000140g00000000334n + - 20250226T231149Z-167c755789dx4ktjhC1SG17mp000000000rg000000007rkt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6613,12 +6405,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/641fd944-759c-4b73-b210-532a4c296465?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:13:31.368654Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/ffed8e26-c2ad-430c-875a-54d7f7119b31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:55.2759214Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -6632,13 +6424,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:31 GMT + - Wed, 26 Feb 2025 23:11:55 GMT mise-correlation-id: - - b95fac25-8ed8-4f78-964a-6ddc8b8cdd0d + - 65881318-4983-4e89-9d84-d1220eeb7e7a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220331Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000033c8 + - 20250226T231155Z-167c755789dx4ktjhC1SG17mp000000000rg000000007s1k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6656,12 +6448,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/641fd944-759c-4b73-b210-532a4c296465?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A11Z&ske=2025-02-25T04%3A59%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:13:36.6218638Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/ffed8e26-c2ad-430c-875a-54d7f7119b31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:22:00.5307912Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -6671,17 +6463,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:36 GMT + - Wed, 26 Feb 2025 23:12:00 GMT mise-correlation-id: - - 4c27f6ee-67f2-46f3-bfa5-312f35d2586a + - 951c4efc-39ae-4069-a5bd-3096f3535a99 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220336Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000033s7 + - 20250226T231200Z-167c755789dx4ktjhC1SG17mp000000000rg000000007sfu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6699,12 +6491,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/641fd944-759c-4b73-b210-532a4c296465?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:13:41.871747Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/ffed8e26-c2ad-430c-875a-54d7f7119b31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:22:05.7825096Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -6714,17 +6506,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:41 GMT + - Wed, 26 Feb 2025 23:12:05 GMT mise-correlation-id: - - 5d26246a-6288-49ee-a21f-dec51e980e3e + - a5a01048-60af-4a9c-aba9-4d90fda3ce9a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220341Z-r17775d4f98mc5fbhC1SG1vp2s000000140g00000000341g + - 20250226T231205Z-167c755789dx4ktjhC1SG17mp000000000rg000000007svd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6742,12 +6534,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/641fd944-759c-4b73-b210-532a4c296465?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:13:47.1214113Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/ffed8e26-c2ad-430c-875a-54d7f7119b31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:22:11.0347154Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -6757,17 +6549,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:47 GMT + - Wed, 26 Feb 2025 23:12:11 GMT mise-correlation-id: - - 0fc3b415-473b-40c8-9ebf-1f6102582f61 + - 20f0c954-9cf7-4a0d-a002-029ac31fa266 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220346Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000034e0 + - 20250226T231210Z-167c755789dx4ktjhC1SG17mp000000000rg000000007tc2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6785,12 +6577,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/641fd944-759c-4b73-b210-532a4c296465?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A12Z&ske=2025-02-25T04%3A59%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A13%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:13:52.9797357Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/ffed8e26-c2ad-430c-875a-54d7f7119b31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A22%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:22:16.2970319Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -6800,17 +6592,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:53 GMT + - Wed, 26 Feb 2025 23:12:16 GMT mise-correlation-id: - - 0247312f-7171-4cee-953f-69f40a2778eb + - 461e51ef-daf8-4e52-9242-9ae3865b71a6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220352Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000034sa + - 20250226T231216Z-167c755789dx4ktjhC1SG17mp000000000rg000000007tua x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6828,13 +6620,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f45afff-6814-427d-852e-9e3b1203f18b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"334c12c6-c608-40bd-b406-631e2934ab2b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a9329625-da78-43a9-bc91-e9d4fbde8ede":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/641fd944-759c-4b73-b210-532a4c296465?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:03:53.8749142Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/d0e6f02d-e5bb-4e36-bb23-a6e9541265e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A53Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:53.8761034Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/82d49d6d-ee16-4eb5-b952-0629b8415a0e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:03:53.8763154Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:03:47.889Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4e459a2c-a25f-4d3a-b3be-8235c39bec0e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"b50b5795-77f5-40f0-a35c-c0ac34752330":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c6749199-a17e-4c62-8bc9-bae36d3d93f9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/ffed8e26-c2ad-430c-875a-54d7f7119b31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:12:16.5532995Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/92dba408-0475-4457-b4ab-337ec3a40195?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:12:16.5536693Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/a430490a-ff5a-4c8a-abbb-f42bf2a6d43e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:12:16.553803Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:12:14.9Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -6844,17 +6636,17 @@ interactions: connection: - keep-alive content-length: - - '2939' + - '2929' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:53 GMT + - Wed, 26 Feb 2025 23:12:16 GMT mise-correlation-id: - - 814d218d-2851-429e-991d-f26bc50cc748 + - 13fe36e8-852e-4bdf-a455-045e745cee28 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220353Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000034ua + - 20250226T231216Z-167c755789dx4ktjhC1SG17mp000000000rg000000007tuw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6877,7 +6669,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:35.1290546Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:35.1290546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:27.0674433Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:27.0674433Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -6886,9 +6678,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:54 GMT + - Wed, 26 Feb 2025 23:12:17 GMT etag: - - '"4f01bcd0-0000-0200-0000-67bceba30000"' + - '"8f01bc60-0000-0200-0000-67bf9ec50000"' expires: - '-1' pragma: @@ -6904,7 +6696,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0B36BD18434940788BB8BD1E9C93E15F Ref B: MAA201060515049 Ref C: 2025-02-24T22:03:54Z' + - 'Ref A: 6D5FC665EF764EFD97D969F0172EDDBA Ref B: MAA201060515031 Ref C: 2025-02-26T23:12:17Z' status: code: 200 message: OK @@ -6918,13 +6710,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f45afff-6814-427d-852e-9e3b1203f18b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"334c12c6-c608-40bd-b406-631e2934ab2b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a9329625-da78-43a9-bc91-e9d4fbde8ede":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/641fd944-759c-4b73-b210-532a4c296465?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A11Z&ske=2025-02-25T04%3A59%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:03:55.9932071Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/d0e6f02d-e5bb-4e36-bb23-a6e9541265e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A11Z&ske=2025-02-25T04%3A59%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:55.9937534Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/82d49d6d-ee16-4eb5-b952-0629b8415a0e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A11Z&ske=2025-02-25T04%3A59%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:03:55.9939665Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:03:47.889Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4e459a2c-a25f-4d3a-b3be-8235c39bec0e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"b50b5795-77f5-40f0-a35c-c0ac34752330":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c6749199-a17e-4c62-8bc9-bae36d3d93f9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/ffed8e26-c2ad-430c-875a-54d7f7119b31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:12:18.248373Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/92dba408-0475-4457-b4ab-337ec3a40195?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A18Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:12:18.2487036Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/a430490a-ff5a-4c8a-abbb-f42bf2a6d43e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:12:18.248799Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:12:14.9Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -6934,17 +6726,17 @@ interactions: connection: - keep-alive content-length: - - '2933' + - '2928' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:56 GMT + - Wed, 26 Feb 2025 23:12:18 GMT mise-correlation-id: - - 9b7b6ac2-356c-4daf-a43a-7b8a3d9ffd9f + - ff688412-6362-430c-9a3d-c8949feda8ae strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220355Z-r17775d4f98ccgs6hC1SG1tvpn00000008fg00000000ak39 + - 20250226T231218Z-167c755789dkxplchC1SG1rzhw000000020000000000aebe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -6967,7 +6759,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:35.1290546Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:35.1290546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:27.0674433Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:27.0674433Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -6976,9 +6768,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:56 GMT + - Wed, 26 Feb 2025 23:12:19 GMT etag: - - '"4f01bcd0-0000-0200-0000-67bceba30000"' + - '"8f01bc60-0000-0200-0000-67bf9ec50000"' expires: - '-1' pragma: @@ -6994,7 +6786,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D7037A8E1EC74496B8962B2B80799026 Ref B: MAA201060516017 Ref C: 2025-02-24T22:03:56Z' + - 'Ref A: 4ADB1C3C17C84318B57D07FF11849242 Ref B: MAA201060513027 Ref C: 2025-02-26T23:12:18Z' status: code: 200 message: OK @@ -7008,13 +6800,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f45afff-6814-427d-852e-9e3b1203f18b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"334c12c6-c608-40bd-b406-631e2934ab2b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a9329625-da78-43a9-bc91-e9d4fbde8ede":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/641fd944-759c-4b73-b210-532a4c296465?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:03:57.464455Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/d0e6f02d-e5bb-4e36-bb23-a6e9541265e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A57Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:57.4652132Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/82d49d6d-ee16-4eb5-b952-0629b8415a0e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:03:57.4653791Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:03:47.889Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4e459a2c-a25f-4d3a-b3be-8235c39bec0e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"b50b5795-77f5-40f0-a35c-c0ac34752330":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c6749199-a17e-4c62-8bc9-bae36d3d93f9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/ffed8e26-c2ad-430c-875a-54d7f7119b31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:12:19.3355651Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/92dba408-0475-4457-b4ab-337ec3a40195?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A19Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:12:19.3358822Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/a430490a-ff5a-4c8a-abbb-f42bf2a6d43e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:12:19.3359809Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:12:14.9Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -7024,17 +6816,17 @@ interactions: connection: - keep-alive content-length: - - '2940' + - '2928' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:57 GMT + - Wed, 26 Feb 2025 23:12:19 GMT mise-correlation-id: - - 12943bfb-8388-4d99-9ed6-c853050cb71c + - 315eb60b-9946-4b64-bcda-3ac416ca1ca5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220356Z-r17775d4f98lnpwthC1SG1g1zn000000093g00000000537v + - 20250226T231219Z-167c755789dw9d62hC1SG1x2v800000001sg000000004bt5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -7057,7 +6849,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:35.1290546Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:35.1290546Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-autostopload-000001/providers/Microsoft.LoadTestService/loadTests/clitest-autostopload-000002","name":"clitest-autostopload-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:27.0674433Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:27.0674433Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -7066,9 +6858,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:58 GMT + - Wed, 26 Feb 2025 23:12:20 GMT etag: - - '"4f01bcd0-0000-0200-0000-67bceba30000"' + - '"8f01bc60-0000-0200-0000-67bf9ec50000"' expires: - '-1' pragma: @@ -7084,7 +6876,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 123BEEE3B20242F499A211052D319B2C Ref B: MAA201060514025 Ref C: 2025-02-24T22:03:57Z' + - 'Ref A: C56C46D516B740689800C2B8CE042035 Ref B: MAA201060513047 Ref C: 2025-02-26T23:12:19Z' status: code: 200 message: OK @@ -7098,13 +6890,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0ad69ae0-5c3f-4fb7-89b0-929e0c61ad99.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://64fb39a5-1276-4a5c-ba15-608f4d833878.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f45afff-6814-427d-852e-9e3b1203f18b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"334c12c6-c608-40bd-b406-631e2934ab2b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a9329625-da78-43a9-bc91-e9d4fbde8ede":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/641fd944-759c-4b73-b210-532a4c296465?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:03:59.4001102Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/d0e6f02d-e5bb-4e36-bb23-a6e9541265e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A59Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:59.400574Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t6yw6iucirbeoy69zknjngdf.z25.blob.storage.azure.net/888b6150-0802-4056-9da6-38a807080e09/82d49d6d-ee16-4eb5-b952-0629b8415a0e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A10Z&ske=2025-02-25T04%3A59%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:03:59.4006721Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:09.403Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:03:47.889Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4e459a2c-a25f-4d3a-b3be-8235c39bec0e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"b50b5795-77f5-40f0-a35c-c0ac34752330":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c6749199-a17e-4c62-8bc9-bae36d3d93f9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":77.5,"errorRateTimeWindowInSeconds":90},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/ffed8e26-c2ad-430c-875a-54d7f7119b31?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:12:20.779289Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/92dba408-0475-4457-b4ab-337ec3a40195?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A20Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:12:20.7796467Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cfy82bdy9zl9ryxebe56t91t.z4.blob.storage.azure.net/391eee58-bc8a-4622-bb8c-9614893a87eb/a430490a-ff5a-4c8a-abbb-f42bf2a6d43e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A04Z&ske=2025-02-27T06%3A08%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A12%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:12:20.7797918Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test-Autostop-Criteria","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:02.644Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:12:14.9Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -7114,17 +6906,17 @@ interactions: connection: - keep-alive content-length: - - '2934' + - '2929' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:59 GMT + - Wed, 26 Feb 2025 23:12:20 GMT mise-correlation-id: - - 707aa771-21f2-49f3-a628-a358cc3f096c + - 7cf68cef-60c6-400b-a3d4-6d8582f9b3f9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220358Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000003hy1 + - 20250226T231220Z-167c755789d9f6qshC1SG1fkqn00000002kg0000000000k2 x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_create.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_create.yaml index 10987469a62..7d1d7197f5b 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_create.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_create.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --vnet-name User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets?api-version=2024-01-01 response: body: - string: '{"value":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","etag":"W/\"ebe0de67-08f0-421b-a289-ceb7d8d9eb39\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}]}' + string: '{"value":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","etag":"W/\"7bf082cf-7db5-4632-a0f5-051ec0842d6d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}]}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:49 GMT + - Wed, 26 Feb 2025 23:08:11 GMT expires: - '-1' pragma: @@ -39,11 +39,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 60c3d794-0ae7-4619-b5c9-4a7d11637eda + - e5fb69e8-b551-4b7a-adb7-d460a294f56b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4125ABDE563F4C60A4B2FE02051241CB Ref B: MAA201060515023 Ref C: 2025-02-24T21:53:49Z' + - 'Ref A: F5E060066F5442ECB4800574F05179E3 Ref B: MAA201060514029 Ref C: 2025-02-26T23:08:11Z' status: code: 200 message: OK @@ -62,7 +62,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4245059Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4245059Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.8093403Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.8093403Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -71,9 +71,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:50 GMT + - Wed, 26 Feb 2025 23:08:12 GMT etag: - - '"4f017db3-0000-0200-0000-67bcea430000"' + - '"8f019e5f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -89,7 +89,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6D6BF521309B4768A8C18BBF5FCDCFB8 Ref B: MAA201060513033 Ref C: 2025-02-24T21:53:50Z' + - 'Ref A: AE24E051211843A8A6AAAC6E399AA193 Ref B: MAA201060515031 Ref C: 2025-02-26T23:08:12Z' status: code: 200 message: OK @@ -103,9 +103,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -119,15 +119,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:53:51 GMT + - Wed, 26 Feb 2025 23:08:14 GMT mise-correlation-id: - - 0b2fc8e2-a987-4596-8f49-0849a27d89eb + - 2dfdc5f2-b41e-40b9-a881-8a87a6aa6d30 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215351Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009w14 + - 20250226T230813Z-167c755789dkxplchC1SG1rzhw00000001yg00000000ca6t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -141,24 +141,24 @@ interactions: body: '{"displayName": "Sample_test_display_name", "kind": null, "description": "Sample_test_description", "keyvaultReferenceIdentityType": "UserAssigned", "keyvaultReferenceIdentityId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi", - "publicIPDisabled": true, "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-z5kobpuine65fgc55/providers/Microsoft.Network/virtualNetworks/clitest-load-twl43qptpuho37ulc/subnets/default", + "publicIPDisabled": true, "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-litwahi6hrivnj37y/providers/Microsoft.Network/virtualNetworks/clitest-load-pg6xggvwsaeh4lzad/subnets/default", "environmentVariables": {"rps": "10"}, "secrets": {"secret_name1": {"type": "AKV_SECRET_URI", "value": "https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757"}, "secret_name2": {"type": "AKV_SECRET_URI", "value": "https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757"}}, "certificate": {"name": "cert", "type": "AKV_CERT_URI", "value": "https://sample-kv.vault.azure.net/certificates/cert-name/0e35fd2807ce44368cf54274dd6f35cc"}, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": - {"3bb6992e-8d20-4cec-a78f-656d9ddf9d47": {"aggregate": "avg", "clientMetric": - "requests_per_sec", "condition": ">", "value": "78"}, "2bd531af-2661-4bc8-a7ff-a2308c923552": + {"332c1a6f-93b7-4a57-9230-32af2f24af49": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "b571d53e-fe92-4a21-933a-956e41276f55": {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "c57c2b37-503e-4fdc-b2f3-18ebe4f743b4": {"aggregate": "p75", "clientMetric": - "response_time_ms", "condition": ">", "value": "380"}, "693e847a-dc62-41c6-90cd-281db5161686": + "50"}, "5fd4e329-e2e7-41a1-9ab0-063787345eae": {"aggregate": "p75", "clientMetric": + "response_time_ms", "condition": ">", "value": "380"}, "1679f4a2-c00c-4ffe-8345-badd5c6e64d2": {"aggregate": "p99", "clientMetric": "response_time_ms", "condition": ">", "value": - "520"}, "0f7a05bd-14b6-4de3-8751-ef8eafca5e09": {"aggregate": "p99.9", "clientMetric": - "response_time_ms", "condition": ">", "value": "540"}, "fb355657-607f-4057-8e4c-3dab1b7e0baf": + "520"}, "8edc1d3b-9ae1-46e8-89c2-1547baadfd02": {"aggregate": "p99.9", "clientMetric": + "response_time_ms", "condition": ">", "value": "540"}, "700e7776-dd7c-425b-9ebd-2aa252a355f0": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": - true}}' + true}, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -167,16 +167,16 @@ interactions: Connection: - keep-alive Content-Length: - - '2092' + - '2161' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"3bb6992e-8d20-4cec-a78f-656d9ddf9d47":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2bd531af-2661-4bc8-a7ff-a2308c923552":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c57c2b37-503e-4fdc-b2f3-18ebe4f743b4":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"693e847a-dc62-41c6-90cd-281db5161686":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0f7a05bd-14b6-4de3-8751-ef8eafca5e09":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"fb355657-607f-4057-8e4c-3dab1b7e0baf":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"secrets":{"secret_name1":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757"},"secret_name2":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757"}},"certificate":{"value":"https://sample-kv.vault.azure.net/certificates/cert-name/0e35fd2807ce44368cf54274dd6f35cc","type":"AKV_CERT_URI","name":"cert"},"environmentVariables":{"rps":"10"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-24T21:53:53.122Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:53:53.122Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"332c1a6f-93b7-4a57-9230-32af2f24af49":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b571d53e-fe92-4a21-933a-956e41276f55":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5fd4e329-e2e7-41a1-9ab0-063787345eae":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1679f4a2-c00c-4ffe-8345-badd5c6e64d2":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"8edc1d3b-9ae1-46e8-89c2-1547baadfd02":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"700e7776-dd7c-425b-9ebd-2aa252a355f0":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"secrets":{"secret_name1":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757"},"secret_name2":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757"}},"certificate":{"value":"https://sample-kv.vault.azure.net/certificates/cert-name/0e35fd2807ce44368cf54274dd6f35cc","type":"AKV_CERT_URI","name":"cert"},"environmentVariables":{"rps":"10"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-26T23:08:15.202Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:15.202Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -188,15 +188,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:53 GMT + - Wed, 26 Feb 2025 23:08:15 GMT location: - - https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + - https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview mise-correlation-id: - - 4478c213-dfbb-4d9d-ab1c-6a3b0656613a + - 4022366b-c220-426b-ab70-957d70a62218 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215352Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009w2h + - 20250226T230814Z-167c755789dkxplchC1SG1rzhw00000001yg00000000ca94 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -214,9 +214,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -233,13 +233,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:53 GMT + - Wed, 26 Feb 2025 23:08:15 GMT mise-correlation-id: - - 03bbbff8-c0e0-4872-8dce-097326d473fd + - f7128dd7-35b5-4d0e-ad6f-8eaa287405f0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215353Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009w4c + - 20250226T230815Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cacu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -264,14 +264,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/657a0d85-0f85-40f1-982e-9fe9fa780ded?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A54Z&ske=2025-02-25T04%3A53%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A54Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:03:54.5594942Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/af5a76a7-4eb8-4f47-8bb7-232ffb50a09d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A15Z&ske=2025-02-27T06%3A08%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:15.9847905Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -279,19 +279,19 @@ interactions: connection: - keep-alive content-length: - - '577' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:54 GMT + - Wed, 26 Feb 2025 23:08:16 GMT location: - - https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - d809da12-d973-44b7-bf3a-e1a887d86f79 + - 4baacec8-74c7-49bc-bcb2-ec8df577623b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215353Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009w4w + - 20250226T230815Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cae1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -309,12 +309,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/657a0d85-0f85-40f1-982e-9fe9fa780ded?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A54Z&ske=2025-02-25T04%3A53%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A54Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:03:54.8575662Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/af5a76a7-4eb8-4f47-8bb7-232ffb50a09d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A15Z&ske=2025-02-27T06%3A08%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:16.2365417Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -324,17 +324,17 @@ interactions: connection: - keep-alive content-length: - - '577' + - '573' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:54 GMT + - Wed, 26 Feb 2025 23:08:16 GMT mise-correlation-id: - - a348bbfb-a287-4f84-9e66-6806ac78c0ed + - ac3ca096-9dd6-4c3f-a08a-79d73021fc29 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215354Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009w7c + - 20250226T230816Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cafe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -363,14 +363,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/20b19e33-5cd6-49e0-93e6-132190fe3d2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:03:56.8171557Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/bb8ea299-7e7b-44b9-a5f0-8a66438d1ed7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A16Z&ske=2025-02-27T06%3A08%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:16.6652803Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -378,19 +378,19 @@ interactions: connection: - keep-alive content-length: - - '561' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:56 GMT + - Wed, 26 Feb 2025 23:08:16 GMT location: - - https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - e824bf0b-2473-4796-bec6-7051d93bfff5 + - fcb68f9e-10e0-4e13-abce-eb769abf945f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215354Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009w82 + - 20250226T230816Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cag4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -408,12 +408,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/20b19e33-5cd6-49e0-93e6-132190fe3d2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A57Z&ske=2025-02-25T04%3A53%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:03:57.695875Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/bb8ea299-7e7b-44b9-a5f0-8a66438d1ed7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A16Z&ske=2025-02-27T06%3A08%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:16.941461Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -423,17 +423,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:57 GMT + - Wed, 26 Feb 2025 23:08:17 GMT mise-correlation-id: - - 8855f530-3879-455a-9d40-f9091b7d7939 + - d5486bd3-6daa-4ecf-b775-2bed2346a091 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215356Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009wbv + - 20250226T230816Z-167c755789dkxplchC1SG1rzhw00000001yg00000000caha x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -542,14 +542,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/07bf01d6-1deb-49c6-a071-8946b0509761?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A57Z&ske=2025-02-25T04%3A53%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:58.1851623Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/cc276d96-9181-41c2-8914-c73b30b167e3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A15Z&ske=2025-02-27T06%3A08%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:17.4686327Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -561,15 +561,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:58 GMT + - Wed, 26 Feb 2025 23:08:17 GMT location: - - https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 7697de82-e032-484a-8e50-e3ae635708be + - 3b68ce00-a7a0-4abc-9661-fa5892ad2b49 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215357Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009wd8 + - 20250226T230817Z-167c755789dkxplchC1SG1rzhw00000001yg00000000camc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -587,12 +587,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/07bf01d6-1deb-49c6-a071-8946b0509761?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A54Z&ske=2025-02-25T04%3A53%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:58.4374337Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/cc276d96-9181-41c2-8914-c73b30b167e3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A16Z&ske=2025-02-27T06%3A08%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:17.7215129Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -602,17 +602,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:58 GMT + - Wed, 26 Feb 2025 23:08:17 GMT mise-correlation-id: - - 91f3461f-cd8b-40a3-b12f-b13f25a63bc7 + - 1b83be6a-b392-41c9-b477-4fae17499998 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215358Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009wdt + - 20250226T230817Z-167c755789dkxplchC1SG1rzhw00000001yg00000000canp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -630,12 +630,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/07bf01d6-1deb-49c6-a071-8946b0509761?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A03Z&ske=2025-02-25T04%3A54%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:05.4052864Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/cc276d96-9181-41c2-8914-c73b30b167e3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A15Z&ske=2025-02-27T06%3A08%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:22.9747774Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -645,17 +645,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:05 GMT + - Wed, 26 Feb 2025 23:08:23 GMT mise-correlation-id: - - 8a08136a-d00f-4f92-b6e1-5aa2ddec74d6 + - 8c5aa79e-8552-44a9-ae16-1600adbf9933 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215403Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009wrc + - 20250226T230822Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cb4f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -673,12 +673,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/07bf01d6-1deb-49c6-a071-8946b0509761?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:10.6614332Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/cc276d96-9181-41c2-8914-c73b30b167e3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A28Z&ske=2025-02-27T06%3A08%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:28.7874193Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -688,17 +688,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:10 GMT + - Wed, 26 Feb 2025 23:08:28 GMT mise-correlation-id: - - 17313ab6-8d2e-482b-830b-121e850bcfb2 + - a5d480f4-0401-4814-b31f-7bf550615e07 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215410Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009x3w + - 20250226T230828Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cbs8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -716,12 +716,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/07bf01d6-1deb-49c6-a071-8946b0509761?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A57Z&ske=2025-02-25T04%3A53%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:15.927058Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/cc276d96-9181-41c2-8914-c73b30b167e3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A28Z&ske=2025-02-27T06%3A08%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:34.0446615Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -731,17 +731,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:16 GMT + - Wed, 26 Feb 2025 23:08:34 GMT mise-correlation-id: - - 43936f42-875b-4e98-87b5-6fb87a3b1a01 + - a8d62fa7-abc5-4a5e-b26f-e3d70c39584d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215415Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009xbs + - 20250226T230833Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cc6n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -759,12 +759,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/07bf01d6-1deb-49c6-a071-8946b0509761?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:21.1761Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/cc276d96-9181-41c2-8914-c73b30b167e3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A16Z&ske=2025-02-27T06%3A08%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:39.2951762Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -774,17 +774,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:21 GMT + - Wed, 26 Feb 2025 23:08:39 GMT mise-correlation-id: - - a9c60529-f84e-4fe8-b8c1-1f0216f5077b + - 0bcd77fb-4339-49cd-a689-2821947946f8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215421Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009xna + - 20250226T230839Z-167c755789dkxplchC1SG1rzhw00000001yg00000000ccna x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -802,12 +802,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/07bf01d6-1deb-49c6-a071-8946b0509761?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A57Z&ske=2025-02-25T04%3A53%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:26.4263597Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/cc276d96-9181-41c2-8914-c73b30b167e3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A44Z&ske=2025-02-27T06%3A08%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:44.605582Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -817,17 +817,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:26 GMT + - Wed, 26 Feb 2025 23:08:44 GMT mise-correlation-id: - - 939f0e5f-997e-4d5c-bd93-c95985250ad9 + - d1a6ebfd-85d8-4228-b480-079502d92c9a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215426Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009xxg + - 20250226T230844Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cd2a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -845,12 +845,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/07bf01d6-1deb-49c6-a071-8946b0509761?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A54Z&ske=2025-02-25T04%3A53%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:31.6767468Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/cc276d96-9181-41c2-8914-c73b30b167e3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A49Z&ske=2025-02-27T06%3A08%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:49.8827994Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -860,17 +860,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:31 GMT + - Wed, 26 Feb 2025 23:08:49 GMT mise-correlation-id: - - dbaa3eac-b91f-4bfb-9e8a-24f6d1dee038 + - 9e5ab428-7c15-4697-a3de-7583e81a649e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215431Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009y70 + - 20250226T230849Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cdht x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -888,12 +888,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"3bb6992e-8d20-4cec-a78f-656d9ddf9d47":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2bd531af-2661-4bc8-a7ff-a2308c923552":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c57c2b37-503e-4fdc-b2f3-18ebe4f743b4":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"693e847a-dc62-41c6-90cd-281db5161686":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0f7a05bd-14b6-4de3-8751-ef8eafca5e09":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"fb355657-607f-4057-8e4c-3dab1b7e0baf":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"secrets":{"secret_name1":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757"},"secret_name2":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757"}},"certificate":{"value":"https://sample-kv.vault.azure.net/certificates/cert-name/0e35fd2807ce44368cf54274dd6f35cc","type":"AKV_CERT_URI","name":"cert"},"environmentVariables":{"rps":"10"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/07bf01d6-1deb-49c6-a071-8946b0509761?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:54:31.9343247Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/657a0d85-0f85-40f1-982e-9fe9fa780ded?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:54:31.9348966Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/20b19e33-5cd6-49e0-93e6-132190fe3d2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:54:31.935093Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-24T21:53:53.122Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:28.154Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"332c1a6f-93b7-4a57-9230-32af2f24af49":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b571d53e-fe92-4a21-933a-956e41276f55":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5fd4e329-e2e7-41a1-9ab0-063787345eae":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1679f4a2-c00c-4ffe-8345-badd5c6e64d2":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"8edc1d3b-9ae1-46e8-89c2-1547baadfd02":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"700e7776-dd7c-425b-9ebd-2aa252a355f0":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"secrets":{"secret_name1":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757"},"secret_name2":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757"}},"certificate":{"value":"https://sample-kv.vault.azure.net/certificates/cert-name/0e35fd2807ce44368cf54274dd6f35cc","type":"AKV_CERT_URI","name":"cert"},"environmentVariables":{"rps":"10"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/cc276d96-9181-41c2-8914-c73b30b167e3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A28Z&ske=2025-02-27T06%3A08%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:50.1353023Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/af5a76a7-4eb8-4f47-8bb7-232ffb50a09d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A28Z&ske=2025-02-27T06%3A08%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A50Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:50.1358716Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/bb8ea299-7e7b-44b9-a5f0-8a66438d1ed7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A28Z&ske=2025-02-27T06%3A08%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:50.1360047Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-26T23:08:15.202Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:48.232Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -903,17 +903,17 @@ interactions: connection: - keep-alive content-length: - - '4148' + - '4153' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:32 GMT + - Wed, 26 Feb 2025 23:08:50 GMT mise-correlation-id: - - 0b5e6f7a-6518-4e27-9318-616d60676d30 + - e3d21074-5a46-4972-88b2-6c07e5bdf531 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215431Z-r17775d4f98qp6vvhC1SG1r7180000000hn0000000009y7h + - 20250226T230850Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cdkd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -936,7 +936,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4245059Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4245059Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.8093403Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.8093403Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -945,9 +945,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:31 GMT + - Wed, 26 Feb 2025 23:08:50 GMT etag: - - '"4f017db3-0000-0200-0000-67bcea430000"' + - '"8f019e5f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -961,9 +961,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16497' + - '16499' x-msedge-ref: - - 'Ref A: 2115BF690F5F49D3A207F41DB5808588 Ref B: MAA201060516045 Ref C: 2025-02-24T21:54:32Z' + - 'Ref A: BC9F6FA5720549AB8C7F918A99A504F5 Ref B: MAA201060513031 Ref C: 2025-02-26T23:08:50Z' status: code: 200 message: OK @@ -977,12 +977,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"3bb6992e-8d20-4cec-a78f-656d9ddf9d47":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2bd531af-2661-4bc8-a7ff-a2308c923552":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c57c2b37-503e-4fdc-b2f3-18ebe4f743b4":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"693e847a-dc62-41c6-90cd-281db5161686":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0f7a05bd-14b6-4de3-8751-ef8eafca5e09":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"fb355657-607f-4057-8e4c-3dab1b7e0baf":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"secrets":{"secret_name1":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757"},"secret_name2":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757"}},"certificate":{"value":"https://sample-kv.vault.azure.net/certificates/cert-name/0e35fd2807ce44368cf54274dd6f35cc","type":"AKV_CERT_URI","name":"cert"},"environmentVariables":{"rps":"10"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/07bf01d6-1deb-49c6-a071-8946b0509761?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A54Z&ske=2025-02-25T04%3A53%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:54:33.528599Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/657a0d85-0f85-40f1-982e-9fe9fa780ded?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A54Z&ske=2025-02-25T04%3A53%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A33Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:54:33.5290476Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/5be2e63f-22e6-436d-b141-3e133c90db3f/20b19e33-5cd6-49e0-93e6-132190fe3d2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A54Z&ske=2025-02-25T04%3A53%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:54:33.5292153Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-24T21:53:53.122Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:28.154Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"332c1a6f-93b7-4a57-9230-32af2f24af49":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b571d53e-fe92-4a21-933a-956e41276f55":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5fd4e329-e2e7-41a1-9ab0-063787345eae":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1679f4a2-c00c-4ffe-8345-badd5c6e64d2":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"8edc1d3b-9ae1-46e8-89c2-1547baadfd02":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"700e7776-dd7c-425b-9ebd-2aa252a355f0":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"secrets":{"secret_name1":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757"},"secret_name2":{"type":"AKV_SECRET_URI","value":"https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757"}},"certificate":{"value":"https://sample-kv.vault.azure.net/certificates/cert-name/0e35fd2807ce44368cf54274dd6f35cc","type":"AKV_CERT_URI","name":"cert"},"environmentVariables":{"rps":"10"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/cc276d96-9181-41c2-8914-c73b30b167e3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A16Z&ske=2025-02-27T06%3A08%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:51.1763314Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/af5a76a7-4eb8-4f47-8bb7-232ffb50a09d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A16Z&ske=2025-02-27T06%3A08%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A51Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:51.1766472Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/364d7784-b6e6-42f4-abb0-fbe674bbb84f/bb8ea299-7e7b-44b9-a5f0-8a66438d1ed7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A16Z&ske=2025-02-27T06%3A08%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:51.1767546Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-test-case","description":"Sample_test_description","displayName":"Sample_test_display_name","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-26T23:08:15.202Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:48.232Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -992,17 +992,17 @@ interactions: connection: - keep-alive content-length: - - '4148' + - '4153' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:33 GMT + - Wed, 26 Feb 2025 23:08:51 GMT mise-correlation-id: - - a779cac7-ae22-428d-96e2-ce8e031e65c4 + - 380c3d44-ac15-462a-9eda-eca72c00e9ed strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215432Z-r17775d4f98p9dsnhC1SG1tym00000000dy000000000a05y + - 20250226T230851Z-167c755789dpktj6hC1SG1nr68000000023g00000000f25k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1025,7 +1025,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4245059Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4245059Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.8093403Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.8093403Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1034,9 +1034,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:34 GMT + - Wed, 26 Feb 2025 23:08:52 GMT etag: - - '"4f017db3-0000-0200-0000-67bcea430000"' + - '"8f019e5f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -1052,7 +1052,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0DF74D6F6ECB47219D7673B4127820CE Ref B: MAA201060516009 Ref C: 2025-02-24T21:54:34Z' + - 'Ref A: B1F0A7AE426047CE938D898A3997F831 Ref B: MAA201060513035 Ref C: 2025-02-26T23:08:51Z' status: code: 200 message: OK @@ -1066,9 +1066,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-pf-test-case?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-pf-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -1082,15 +1082,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:54:35 GMT + - Wed, 26 Feb 2025 23:08:53 GMT mise-correlation-id: - - c6729d82-7147-4a71-8f74-f2f9704f3304 + - 7341168e-ff63-4e1a-97a9-eae558e32f22 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215435Z-r17775d4f98ksdkhhC1SG17z7g00000014b000000000707m + - 20250226T230852Z-167c755789dbzxjrhC1SG1x06c00000002f00000000076eq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1115,7 +1115,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4245059Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4245059Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.8093403Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.8093403Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1124,9 +1124,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:37 GMT + - Wed, 26 Feb 2025 23:08:54 GMT etag: - - '"4f017db3-0000-0200-0000-67bcea430000"' + - '"8f019e5f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -1142,7 +1142,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 910D8E8126544C788ABEEEA9D6E16AA1 Ref B: MAA201060515053 Ref C: 2025-02-24T21:54:36Z' + - 'Ref A: 505C8134A429409583D5BBFD8DF21466 Ref B: MAA201060515037 Ref C: 2025-02-26T23:08:54Z' status: code: 200 message: OK @@ -1156,9 +1156,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -1172,15 +1172,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:54:37 GMT + - Wed, 26 Feb 2025 23:08:55 GMT mise-correlation-id: - - 4f898569-5e89-42e4-95e6-085d69717745 + - c3fd8b4a-e236-4913-a353-7093754678ae strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215437Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abcc + - 20250226T230855Z-167c755789dw9d62hC1SG1x2v800000001ug00000000009x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1196,13 +1196,13 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": - {"e3748c10-3957-446a-82e5-aab94ca9bae6": {"aggregate": "avg", "clientMetric": - "requests_per_sec", "condition": ">", "value": "78"}, "e84ad4d8-2afc-4cc8-aabf-d0b48719fe65": + {"2c11c7dc-8db2-4320-8c40-222f192bd42d": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "674fe7fa-a08c-4b7f-a752-af4cfc995f81": {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "663db46a-79a7-42fd-a4dd-8f89a3dd4d4e": {"aggregate": "avg", "clientMetric": + "50"}, "ab2cc6be-41e2-4190-9969-8f1e7cd03e99": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 90, "errorRateTimeWindowInSeconds": - 60}}' + 60}, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -1211,17 +1211,17 @@ interactions: Connection: - keep-alive Content-Length: - - '939' + - '1008' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e3748c10-3957-446a-82e5-aab94ca9bae6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e84ad4d8-2afc-4cc8-aabf-d0b48719fe65":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"663db46a-79a7-42fd-a4dd-8f89a3dd4d4e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"invalid-zip-count-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:54:37.809Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:37.809Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2c11c7dc-8db2-4320-8c40-222f192bd42d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"674fe7fa-a08c-4b7f-a752-af4cfc995f81":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ab2cc6be-41e2-4190-9969-8f1e7cd03e99":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"invalid-zip-count-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:56.897Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:56.897Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1233,15 +1233,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:37 GMT + - Wed, 26 Feb 2025 23:08:57 GMT location: - - https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-12-01-preview + - https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-12-01-preview mise-correlation-id: - - 54d89151-e5d1-4e73-9bc1-88bd3746d79e + - a14bd576-f4c9-4f9a-9b89-4a3801c8da70 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215437Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abcv + - 20250226T230855Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000ay x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1259,9 +1259,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -1278,13 +1278,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:38 GMT + - Wed, 26 Feb 2025 23:08:57 GMT mise-correlation-id: - - df53cfc5-6552-4cd0-9cba-6aa562f4df99 + - f37cf9f7-0430-4cbb-81f1-58559558656f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215437Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abdu + - 20250226T230857Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000cp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1313,14 +1313,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/cd5a2f61-728d-4477-8fce-4cdcde9dc880?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A54Z&ske=2025-02-25T04%3A53%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:39.4558065Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/68543212-9a56-46a7-b2e1-9cecbdf58f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A16Z&ske=2025-02-27T06%3A08%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:59.4149825Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1332,15 +1332,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:39 GMT + - Wed, 26 Feb 2025 23:08:59 GMT location: - - https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 088ee9f4-a7f8-47b6-a73c-358462713e33 + - a7270153-3683-4989-a422-897275c52d8d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215438Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abe3 + - 20250226T230857Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000d0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1358,12 +1358,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/cd5a2f61-728d-4477-8fce-4cdcde9dc880?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:39.7198731Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/68543212-9a56-46a7-b2e1-9cecbdf58f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A15Z&ske=2025-02-27T06%3A08%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:59.6662339Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -1373,17 +1373,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:39 GMT + - Wed, 26 Feb 2025 23:08:59 GMT mise-correlation-id: - - e31b8cae-09c2-4b05-820c-6a35706d2a88 + - ece77ac4-4a92-4b02-b6af-4dcb2021d96e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215439Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abgp + - 20250226T230859Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000h2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1412,14 +1412,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/f4891e9d-9739-4a9f-9149-be21796a1890?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A57Z&ske=2025-02-25T04%3A53%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A40Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:40.0959075Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/f9f321dd-5916-4d99-9a16-d080198cbb09?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A28Z&ske=2025-02-27T06%3A08%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:00.0454324Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1427,19 +1427,19 @@ interactions: connection: - keep-alive content-length: - - '571' + - '569' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:40 GMT + - Wed, 26 Feb 2025 23:09:00 GMT location: - - https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-12-01-preview + - https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-12-01-preview mise-correlation-id: - - 5a4e7d46-ced7-417a-a28b-16501547733b + - 6c6bca68-30bb-42ac-9e8d-2a0249582f0c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215439Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abh4 + - 20250226T230859Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000hc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1457,12 +1457,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/f4891e9d-9739-4a9f-9149-be21796a1890?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A03Z&ske=2025-02-25T04%3A54%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A40Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:40.3454606Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/f9f321dd-5916-4d99-9a16-d080198cbb09?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A16Z&ske=2025-02-27T06%3A08%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:00.3156126Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -1472,17 +1472,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:40 GMT + - Wed, 26 Feb 2025 23:09:00 GMT mise-correlation-id: - - 162049d4-72f8-401a-9799-ee299677c22b + - 425d0162-a80f-4c06-8412-5a6ac9fb9f20 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215440Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abhq + - 20250226T230900Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000hy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1511,14 +1511,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/a303c51e-5d0c-468a-b4cc-15b5035ea02a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A57Z&ske=2025-02-25T04%3A53%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A40Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:40.7061234Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/bdd44cfc-4426-4f74-890e-be74999f7cf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A44Z&ske=2025-02-27T06%3A08%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:00.7166729Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1526,19 +1526,19 @@ interactions: connection: - keep-alive content-length: - - '567' + - '573' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:40 GMT + - Wed, 26 Feb 2025 23:09:00 GMT location: - - https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-12-01-preview + - https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-12-01-preview mise-correlation-id: - - 2386fcbe-5be4-494f-9e3a-4ae663849651 + - 4834936b-f8f2-4e8a-b8aa-1d1ab457e87a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215440Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abhw + - 20250226T230900Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000ks x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1556,12 +1556,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/a303c51e-5d0c-468a-b4cc-15b5035ea02a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A54Z&ske=2025-02-25T04%3A53%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A40Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:40.9577848Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/bdd44cfc-4426-4f74-890e-be74999f7cf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A49Z&ske=2025-02-27T06%3A08%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:00.965729Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -1571,17 +1571,17 @@ interactions: connection: - keep-alive content-length: - - '567' + - '568' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:41 GMT + - Wed, 26 Feb 2025 23:09:01 GMT mise-correlation-id: - - ff5fd1e1-afad-4897-b2dd-620086cc1181 + - 3a4c7fab-0181-4939-962c-36da61ca82aa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215440Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abkh + - 20250226T230900Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000mh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1610,14 +1610,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/3d05e75b-f5fd-4a76-b44d-1f5fbf785951?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A54Z&ske=2025-02-25T04%3A53%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:41.3202897Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/3233aedb-184f-421d-83d7-1c36768f7153?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A15Z&ske=2025-02-27T06%3A08%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:01.3585171Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1625,19 +1625,19 @@ interactions: connection: - keep-alive content-length: - - '567' + - '573' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:41 GMT + - Wed, 26 Feb 2025 23:09:01 GMT location: - - https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-12-01-preview + - https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-12-01-preview mise-correlation-id: - - 81c990a2-3bc3-42aa-822f-4c55b81c3ac4 + - 53de1c05-a16c-4237-ad16-e980cc7e304e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215441Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abm5 + - 20250226T230901Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000mt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1655,12 +1655,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/3d05e75b-f5fd-4a76-b44d-1f5fbf785951?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:41.5749014Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/3233aedb-184f-421d-83d7-1c36768f7153?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A16Z&ske=2025-02-27T06%3A08%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:01.6104978Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -1674,13 +1674,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:41 GMT + - Wed, 26 Feb 2025 23:09:01 GMT mise-correlation-id: - - bdc76065-f61d-46b6-a3f3-fd69f006ce67 + - 1d581dde-b53a-49b2-be05-d195c66eedd8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215441Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abmf + - 20250226T230901Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000nm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1709,14 +1709,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/90f5fe5d-0e65-4352-a3fa-db047a598420?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A57Z&ske=2025-02-25T04%3A53%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:41.9435427Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/bd0234c2-902c-486e-b985-c5f3cf89ad8a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A44Z&ske=2025-02-27T06%3A08%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:01.9836678Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1724,19 +1724,19 @@ interactions: connection: - keep-alive content-length: - - '573' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:42 GMT + - Wed, 26 Feb 2025 23:09:02 GMT location: - - https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-12-01-preview + - https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-12-01-preview mise-correlation-id: - - 295808e9-dfb9-4948-bdc7-a00a48803b77 + - a92451d2-b344-4a30-be22-36b8d617ae51 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215441Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abn7 + - 20250226T230901Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000nv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1754,12 +1754,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/90f5fe5d-0e65-4352-a3fa-db047a598420?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A03Z&ske=2025-02-25T04%3A54%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A42Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:42.1942871Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/bd0234c2-902c-486e-b985-c5f3cf89ad8a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A16Z&ske=2025-02-27T06%3A08%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:02.2416267Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -1769,17 +1769,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:42 GMT + - Wed, 26 Feb 2025 23:09:02 GMT mise-correlation-id: - - f43817c9-e9bb-4f36-bd11-29d33e2f9bf4 + - 4f777981-3ab8-412d-abca-931e3a10384c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215442Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abnv + - 20250226T230902Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000pk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1808,14 +1808,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-5.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-5.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/f152f119-7149-4c17-824f-069315cfd231?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A57Z&ske=2025-02-25T04%3A53%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A42Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-5.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:42.5616859Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/23aea9d8-70a2-4227-92a1-d142a1502f3b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A28Z&ske=2025-02-27T06%3A08%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-5.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:02.5988225Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1823,19 +1823,19 @@ interactions: connection: - keep-alive content-length: - - '573' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:42 GMT + - Wed, 26 Feb 2025 23:09:02 GMT location: - - https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-5.zip?api-version=2024-12-01-preview + - https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-5.zip?api-version=2024-12-01-preview mise-correlation-id: - - ca95ec3c-6fc2-41a6-a01e-7989fc399f97 + - 29b84e89-e3e4-4832-940f-6c6c7f139423 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215442Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abp1 + - 20250226T230902Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000pv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1853,12 +1853,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-5.zip?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-5.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/f152f119-7149-4c17-824f-069315cfd231?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A54Z&ske=2025-02-25T04%3A53%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A42Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-5.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:42.8101021Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/23aea9d8-70a2-4227-92a1-d142a1502f3b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A16Z&ske=2025-02-27T06%3A08%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-5.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:02.8506903Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -1868,17 +1868,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:42 GMT + - Wed, 26 Feb 2025 23:09:02 GMT mise-correlation-id: - - f59b9597-f981-4077-aaea-c1485a2a67a9 + - 7e848687-c189-4994-9a3b-7a1419649c4d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215442Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abps + - 20250226T230902Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000qn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1987,14 +1987,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/9a24497a-adfd-401e-97b8-280f1d6654e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A54Z&ske=2025-02-25T04%3A53%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:43.2516885Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/14c0492e-2b74-4631-a156-addce6db0450?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A49Z&ske=2025-02-27T06%3A08%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:03.3044689Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -2002,19 +2002,19 @@ interactions: connection: - keep-alive content-length: - - '559' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:43 GMT + - Wed, 26 Feb 2025 23:09:03 GMT location: - - https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 4d5934dd-f20f-4a90-b96e-0728d8b51412 + - f7a300cb-15f6-40b5-95d3-ad268d4f599f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215442Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abqa + - 20250226T230902Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000r1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2032,12 +2032,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/9a24497a-adfd-401e-97b8-280f1d6654e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A03Z&ske=2025-02-25T04%3A54%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:43.5021398Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/14c0492e-2b74-4631-a156-addce6db0450?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A28Z&ske=2025-02-27T06%3A08%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:03.5596293Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2047,17 +2047,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:43 GMT + - Wed, 26 Feb 2025 23:09:03 GMT mise-correlation-id: - - 999d18dd-030e-47dd-a45c-28e88780f1aa + - 1a4b73a6-7f6d-47ca-8cac-7bd9914a31a4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215443Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000abqr + - 20250226T230903Z-167c755789dw9d62hC1SG1x2v800000001ug0000000000s2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2075,12 +2075,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/9a24497a-adfd-401e-97b8-280f1d6654e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A57Z&ske=2025-02-25T04%3A53%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:48.7529836Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/14c0492e-2b74-4631-a156-addce6db0450?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A28Z&ske=2025-02-27T06%3A08%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:08.8209445Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2094,13 +2094,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:48 GMT + - Wed, 26 Feb 2025 23:09:08 GMT mise-correlation-id: - - 62406594-9e30-4227-b337-cb270c14b08b + - 09a3032b-66e7-4e9e-bca3-49a5ba518cf4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215448Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000ac12 + - 20250226T230908Z-167c755789dw9d62hC1SG1x2v800000001ug00000000010t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2118,12 +2118,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/9a24497a-adfd-401e-97b8-280f1d6654e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A57Z&ske=2025-02-25T04%3A53%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:54.0061823Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/14c0492e-2b74-4631-a156-addce6db0450?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A49Z&ske=2025-02-27T06%3A08%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:14.0718983Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2133,17 +2133,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:54 GMT + - Wed, 26 Feb 2025 23:09:14 GMT mise-correlation-id: - - f9f899f7-d232-47fe-9f03-c88e9f64f542 + - 388e3e7b-753f-4add-b577-261fa9a6c8a0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215453Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000acbg + - 20250226T230913Z-167c755789dw9d62hC1SG1x2v800000001ug000000000172 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2161,12 +2161,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/9a24497a-adfd-401e-97b8-280f1d6654e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A03Z&ske=2025-02-25T04%3A54%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:59.2664719Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/14c0492e-2b74-4631-a156-addce6db0450?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A16Z&ske=2025-02-27T06%3A08%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:19.940821Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2176,17 +2176,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:59 GMT + - Wed, 26 Feb 2025 23:09:20 GMT mise-correlation-id: - - 787c06dd-946b-4d88-9c99-f56226b4d838 + - fe39e633-f199-4a6c-9fd6-b1e72bbb8332 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215459Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000acpx + - 20250226T230919Z-167c755789dw9d62hC1SG1x2v800000001ug0000000001e5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2204,12 +2204,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/9a24497a-adfd-401e-97b8-280f1d6654e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A54Z&ske=2025-02-25T04%3A53%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:04.5216292Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/14c0492e-2b74-4631-a156-addce6db0450?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A15Z&ske=2025-02-27T06%3A08%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:25.2014593Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2219,17 +2219,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:04 GMT + - Wed, 26 Feb 2025 23:09:25 GMT mise-correlation-id: - - f7414536-6193-46cc-a31e-73a1b74dee65 + - ffd68e5e-e69b-4c9e-969e-7adf360c3c01 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215504Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000acza + - 20250226T230925Z-167c755789dw9d62hC1SG1x2v800000001ug0000000001pn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2247,12 +2247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/9a24497a-adfd-401e-97b8-280f1d6654e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A57Z&ske=2025-02-25T04%3A53%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:09.7753813Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/14c0492e-2b74-4631-a156-addce6db0450?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A44Z&ske=2025-02-27T06%3A08%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:30.4552656Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2266,13 +2266,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:09 GMT + - Wed, 26 Feb 2025 23:09:30 GMT mise-correlation-id: - - de35d5b5-f3e9-4ada-a024-9f244b0ff70b + - f4e14398-1aaf-41cc-9ab8-80bec4c82a70 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215509Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000ad8m + - 20250226T230930Z-167c755789dw9d62hC1SG1x2v800000001ug0000000001w9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2290,12 +2290,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/9a24497a-adfd-401e-97b8-280f1d6654e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A54Z&ske=2025-02-25T04%3A53%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:15.7905929Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/14c0492e-2b74-4631-a156-addce6db0450?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A16Z&ske=2025-02-27T06%3A08%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:35.7048435Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2305,17 +2305,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:15 GMT + - Wed, 26 Feb 2025 23:09:35 GMT mise-correlation-id: - - 3f8e680e-6dcc-4264-936d-f30e68b2e181 + - e4f4978f-877d-4389-80ec-56c3385ce6da strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215514Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000adkf + - 20250226T230935Z-167c755789dw9d62hC1SG1x2v800000001ug00000000023x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2333,12 +2333,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/9a24497a-adfd-401e-97b8-280f1d6654e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A57Z&ske=2025-02-25T04%3A53%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:21.0589481Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/14c0492e-2b74-4631-a156-addce6db0450?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A44Z&ske=2025-02-27T06%3A08%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:40.9594388Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -2352,13 +2352,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:21 GMT + - Wed, 26 Feb 2025 23:09:41 GMT mise-correlation-id: - - a777cf63-58ee-4709-8cdc-71c65c69cecc + - 40a3ef59-ef37-4b83-b481-4e91f479457b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215520Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000adxt + - 20250226T230940Z-167c755789dw9d62hC1SG1x2v800000001ug0000000002gn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2376,13 +2376,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e3748c10-3957-446a-82e5-aab94ca9bae6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e84ad4d8-2afc-4cc8-aabf-d0b48719fe65":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"663db46a-79a7-42fd-a4dd-8f89a3dd4d4e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/9a24497a-adfd-401e-97b8-280f1d6654e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A03Z&ske=2025-02-25T04%3A54%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:55:21.3143752Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/cd5a2f61-728d-4477-8fce-4cdcde9dc880?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A03Z&ske=2025-02-25T04%3A54%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:21.3146512Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/f4891e9d-9739-4a9f-9149-be21796a1890?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A03Z&ske=2025-02-25T04%3A54%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A21Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:21.3147477Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/a303c51e-5d0c-468a-b4cc-15b5035ea02a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A03Z&ske=2025-02-25T04%3A54%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A21Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:21.314838Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/3d05e75b-f5fd-4a76-b44d-1f5fbf785951?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A03Z&ske=2025-02-25T04%3A54%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A21Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:21.3149246Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/90f5fe5d-0e65-4352-a3fa-db047a598420?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A03Z&ske=2025-02-25T04%3A54%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A21Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:21.315172Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://xkkpjilr50oqiglhuotc8jll.z16.blob.storage.azure.net/448b6b17-e0e6-4fd3-b833-d834ae68df4f/f152f119-7149-4c17-824f-069315cfd231?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A03Z&ske=2025-02-25T04%3A54%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A21Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-5.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:21.3152712Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"invalid-zip-count-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:54:37.809Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:16.129Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"2c11c7dc-8db2-4320-8c40-222f192bd42d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"674fe7fa-a08c-4b7f-a752-af4cfc995f81":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ab2cc6be-41e2-4190-9969-8f1e7cd03e99":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/14c0492e-2b74-4631-a156-addce6db0450?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A15Z&ske=2025-02-27T06%3A08%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:41.2290734Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/68543212-9a56-46a7-b2e1-9cecbdf58f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A15Z&ske=2025-02-27T06%3A08%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:41.2296251Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/f9f321dd-5916-4d99-9a16-d080198cbb09?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A15Z&ske=2025-02-27T06%3A08%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:41.2297704Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/bdd44cfc-4426-4f74-890e-be74999f7cf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A15Z&ske=2025-02-27T06%3A08%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:41.2298848Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/3233aedb-184f-421d-83d7-1c36768f7153?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A15Z&ske=2025-02-27T06%3A08%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:41.2299745Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/bd0234c2-902c-486e-b985-c5f3cf89ad8a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A15Z&ske=2025-02-27T06%3A08%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:41.2300524Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://lkogtx14mqtmsh8rwkfchg5m.z39.blob.storage.azure.net/c01ead43-e4ed-45ca-a56a-a32eed8a2f19/23aea9d8-70a2-4227-92a1-d142a1502f3b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A15Z&ske=2025-02-27T06%3A08%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-ZIP-artifact-5.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:41.2301316Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"invalid-zip-count-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:56.897Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:37.387Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2392,17 +2392,17 @@ interactions: connection: - keep-alive content-length: - - '5226' + - '5232' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:21 GMT + - Wed, 26 Feb 2025 23:09:41 GMT mise-correlation-id: - - 889fa6fb-cbf3-450d-9c4f-e31cdee917e3 + - 24bc35ac-5f37-4f38-b992-105323cac16a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215521Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000adyf + - 20250226T230941Z-167c755789dw9d62hC1SG1x2v800000001ug0000000002hn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2425,7 +2425,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4245059Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4245059Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.8093403Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.8093403Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2434,9 +2434,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:21 GMT + - Wed, 26 Feb 2025 23:09:41 GMT etag: - - '"4f017db3-0000-0200-0000-67bcea430000"' + - '"8f019e5f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -2452,7 +2452,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 69DD915B55EA45C194F69BDEE27D639E Ref B: MAA201060514031 Ref C: 2025-02-24T21:55:21Z' + - 'Ref A: 9539EC5323FE428A97CDCBD2FD307D5E Ref B: MAA201060515031 Ref C: 2025-02-26T23:09:41Z' status: code: 200 message: OK @@ -2466,9 +2466,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-disable-public-ip-test-case?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-disable-public-ip-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -2482,15 +2482,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:55:23 GMT + - Wed, 26 Feb 2025 23:09:42 GMT mise-correlation-id: - - f3f56073-e423-45ec-881a-2c04498cbc2f + - 9e7b8d58-073f-4f41-8259-25ac101527a1 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215522Z-r17775d4f98p9dsnhC1SG1tym00000000e40000000001tqu + - 20250226T230942Z-167c755789dh5d2xhC1SG1c6dc000000019000000000816x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2504,7 +2504,8 @@ interactions: body: '{"displayName": "invalid-disable-public-ip-test-case", "kind": null, "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": {}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false}, - "publicIPDisabled": true, "autoStopCriteria": {}, "baselineTestRunId": null}' + "publicIPDisabled": true, "autoStopCriteria": {}, "baselineTestRunId": null, + "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -2513,13 +2514,13 @@ interactions: Connection: - keep-alive Content-Length: - - '345' + - '414' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://af4575f5-2854-47ee-867d-98365b24b12f.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-disable-public-ip-test-case?api-version=2024-12-01-preview + uri: https://67b07685-2040-438e-b2cf-23d33391b951.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-disable-public-ip-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"InvalidNetworkConfigurationException","message":"Network @@ -2534,15 +2535,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:55:23 GMT + - Wed, 26 Feb 2025 23:09:42 GMT mise-correlation-id: - - 2517a69b-e413-464b-98a8-739c521491e5 + - 93561cce-0775-4e69-afc1-6b88b6e98761 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215523Z-r17775d4f98p9dsnhC1SG1tym00000000e40000000001tsf + - 20250226T230942Z-167c755789dh5d2xhC1SG1c6dc000000019000000000817p x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_create_and_update_vnet.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_create_and_update_vnet.yaml index e51b8405f2b..86db707bbdb 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_create_and_update_vnet.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_create_and_update_vnet.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --vnet-name User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets?api-version=2024-01-01 response: body: - string: '{"value":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","etag":"W/\"099d45f7-fe5c-425d-84f4-b43727b7ccc2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}]}' + string: '{"value":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","etag":"W/\"ae9f4c9a-3d6b-4198-87bc-f3147932cab7\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}]}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:50 GMT + - Wed, 26 Feb 2025 23:08:10 GMT expires: - '-1' pragma: @@ -39,11 +39,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d83a8104-d80e-401f-a4a8-2e0163924a51 + - d922e899-a2b6-4a15-a3ea-a7cacaf91a45 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AECE6175FB294B548F54C72B58E23515 Ref B: MAA201060513045 Ref C: 2025-02-24T21:56:51Z' + - 'Ref A: 39A0E8A103FA4696ADD84EE9A2C92747 Ref B: MAA201060515027 Ref C: 2025-02-26T23:08:10Z' status: code: 200 message: OK @@ -62,7 +62,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:45.8074973Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:45.8074973Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.9885431Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.9885431Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -71,9 +71,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:52 GMT + - Wed, 26 Feb 2025 23:08:11 GMT etag: - - '"4f01bfc2-0000-0200-0000-67bceaf80000"' + - '"8f01a15f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -89,7 +89,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DA10D8F1760640D981F9CBE776900E26 Ref B: MAA201060515017 Ref C: 2025-02-24T21:56:52Z' + - 'Ref A: 532240ABE7D945EC910965B4629D09B6 Ref B: MAA201060514025 Ref C: 2025-02-26T23:08:11Z' status: code: 200 message: OK @@ -103,9 +103,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -119,15 +119,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:56:53 GMT + - Wed, 26 Feb 2025 23:08:13 GMT mise-correlation-id: - - 4fe8bef4-f951-4d66-a8f2-4ff4bd16bd61 + - 5711981f-7ab7-4eb3-9206-828ab6dd3380 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215653Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000002dw + - 20250226T230812Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003fta x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -140,10 +140,11 @@ interactions: - request: body: '{"displayName": "Create_and_update_vnet_with_config_test", "kind": null, "description": "This is a load test created with config specific to vnet", "keyvaultReferenceIdentityType": - "SystemAssigned", "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-h5pnvi2emnewtdjni/providers/Microsoft.Network/virtualNetworks/clitest-load-p3josg24ampqjnpoz/subnets/default", + "SystemAssigned", "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-ggvc3qviyk7ezlqet/providers/Microsoft.Network/virtualNetworks/clitest-load-dhh2bqgpnetvtq26b/subnets/default", "environmentVariables": {}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 5, "regionalLoadTestConfig": null, "quickStartTest": false}, "publicIPDisabled": - true, "autoStopCriteria": {}, "baselineTestRunId": null}' + true, "autoStopCriteria": {}, "baselineTestRunId": null, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -152,17 +153,17 @@ interactions: Connection: - keep-alive Content-Length: - - '628' + - '697' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview response: body: string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"This - is a load test created with config specific to vnet","displayName":"Create_and_update_vnet_with_config_test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:55.363Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:56:55.363Z","lastModifiedBy":"hbisht@microsoft.com"}' + is a load test created with config specific to vnet","displayName":"Create_and_update_vnet_with_config_test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:15.38Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:15.38Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -170,19 +171,19 @@ interactions: connection: - keep-alive content-length: - - '884' + - '882' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:55 GMT + - Wed, 26 Feb 2025 23:08:15 GMT location: - - https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview + - https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview mise-correlation-id: - - f4e30305-498c-4f9c-a196-e32d97280e32 + - 4b3d5775-cb8b-4d80-a89b-d750a2426dc1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215653Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000002et + - 20250226T230813Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003fuv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -200,9 +201,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -219,13 +220,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:55 GMT + - Wed, 26 Feb 2025 23:08:15 GMT mise-correlation-id: - - 55c90426-5a39-40c6-929b-9f1b8d68a004 + - b90fcc80-e87c-4df8-a1a2-55e7ee07d33a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215655Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000002g3 + - 20250226T230815Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003g1s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -334,14 +335,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=JMX_FILE + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/52903ada-eb3a-4303-81c7-aa1448cd04a5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:06:56.2339854Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/dba78784-4e5a-4dff-a4b4-fb81d7d41927?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:17.9841475Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -349,19 +350,19 @@ interactions: connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:56 GMT + - Wed, 26 Feb 2025 23:08:18 GMT location: - - https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 7f907632-8ff1-4062-ba8d-c41ef2573382 + - f990db73-e446-4709-9c1e-8b854f4331a6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215655Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000002gu + - 20250226T230815Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003g29 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -379,12 +380,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/52903ada-eb3a-4303-81c7-aa1448cd04a5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:06:56.6462397Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/dba78784-4e5a-4dff-a4b4-fb81d7d41927?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A18Z&ske=2025-02-27T06%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:19.1867006Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -394,17 +395,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:56 GMT + - Wed, 26 Feb 2025 23:08:19 GMT mise-correlation-id: - - 96e091a9-f9de-4c9f-980d-6ed2b2faf739 + - 09dad987-efb4-4d78-9a0e-98d71151f2fd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215656Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000002hs + - 20250226T230818Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003g7m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -422,12 +423,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/52903ada-eb3a-4303-81c7-aa1448cd04a5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A01Z&ske=2025-02-25T04%3A57%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:01.9343461Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/dba78784-4e5a-4dff-a4b4-fb81d7d41927?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A18Z&ske=2025-02-27T06%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:24.4371306Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -437,17 +438,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:02 GMT + - Wed, 26 Feb 2025 23:08:24 GMT mise-correlation-id: - - a6d44a99-d123-45c1-80fe-27f55488ed73 + - d6566e05-7369-448a-b9b9-a6217561f156 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215701Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000002t7 + - 20250226T230824Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003gun x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -465,12 +466,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/52903ada-eb3a-4303-81c7-aa1448cd04a5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A07Z&ske=2025-02-25T04%3A57%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:07.2224986Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/dba78784-4e5a-4dff-a4b4-fb81d7d41927?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A29Z&ske=2025-02-27T06%3A08%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:29.7659241Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -484,13 +485,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:07 GMT + - Wed, 26 Feb 2025 23:08:29 GMT mise-correlation-id: - - e1096d1f-5ff4-48fb-b441-fd20c2f7c082 + - 6d8ddb53-acae-44f1-9b1a-dcc763cf2dbf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215707Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000002zt + - 20250226T230829Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003h7z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -508,12 +509,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/52903ada-eb3a-4303-81c7-aa1448cd04a5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A07Z&ske=2025-02-25T04%3A57%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:12.4781872Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/dba78784-4e5a-4dff-a4b4-fb81d7d41927?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A35Z&ske=2025-02-27T06%3A08%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:35.1521282Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -523,17 +524,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:12 GMT + - Wed, 26 Feb 2025 23:08:35 GMT mise-correlation-id: - - 23e0d6d9-7549-4c7b-bf1f-d39cdcaece87 + - be7985bf-ae7c-4329-a22c-564ec59c64cf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215712Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000358 + - 20250226T230834Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003hr9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -551,12 +552,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/52903ada-eb3a-4303-81c7-aa1448cd04a5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:17.726033Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/dba78784-4e5a-4dff-a4b4-fb81d7d41927?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:40.4371209Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -566,17 +567,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:17 GMT + - Wed, 26 Feb 2025 23:08:40 GMT mise-correlation-id: - - 242eb434-d297-4b96-9bd1-34539b8a7cae + - 93a86386-b0ff-454c-86e1-8fae76182c21 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215717Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000003b7 + - 20250226T230840Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003k5p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -594,12 +595,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/52903ada-eb3a-4303-81c7-aa1448cd04a5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A01Z&ske=2025-02-25T04%3A57%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:22.9864515Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/dba78784-4e5a-4dff-a4b4-fb81d7d41927?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A45Z&ske=2025-02-27T06%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:45.8678598Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -613,13 +614,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:23 GMT + - Wed, 26 Feb 2025 23:08:45 GMT mise-correlation-id: - - 736c4cfa-a47d-4beb-a191-2a86fe4d6d60 + - 4b59e802-6e5d-4615-bb0e-da55e60d8c0e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215722Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000003ht + - 20250226T230845Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003kmb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -637,12 +638,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/52903ada-eb3a-4303-81c7-aa1448cd04a5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A28Z&ske=2025-02-25T04%3A57%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:28.272591Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/dba78784-4e5a-4dff-a4b4-fb81d7d41927?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A45Z&ske=2025-02-27T06%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:51.1188208Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -652,17 +653,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:28 GMT + - Wed, 26 Feb 2025 23:08:51 GMT mise-correlation-id: - - 61d2001e-26f6-40a2-87d9-9f58ed2bf58f + - b2c63ed7-f8f5-4393-ba59-a6534fcf7ff2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215728Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000003sw + - 20250226T230850Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003m0r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -680,13 +681,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview response: body: - string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/52903ada-eb3a-4303-81c7-aa1448cd04a5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A01Z&ske=2025-02-25T04%3A57%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:57:28.5244952Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"This - is a load test created with config specific to vnet","displayName":"Create_and_update_vnet_with_config_test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:55.363Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:27.508Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/dba78784-4e5a-4dff-a4b4-fb81d7d41927?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A51Z&ske=2025-02-27T06%3A08%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:08:51.368498Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"This + is a load test created with config specific to vnet","displayName":"Create_and_update_vnet_with_config_test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:15.38Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:51.11Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -696,17 +697,17 @@ interactions: connection: - keep-alive content-length: - - '1464' + - '1459' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:28 GMT + - Wed, 26 Feb 2025 23:08:51 GMT mise-correlation-id: - - eb16e0ef-cb09-4e26-8f49-1ed282af41aa + - 49f9e32d-80c8-46a8-a0ba-cbd5f4c5c4b6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215728Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000003te + - 20250226T230851Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000003m15 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -729,7 +730,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:45.8074973Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:45.8074973Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.9885431Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.9885431Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -738,9 +739,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:29 GMT + - Wed, 26 Feb 2025 23:08:52 GMT etag: - - '"4f01bfc2-0000-0200-0000-67bceaf80000"' + - '"8f01a15f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -756,7 +757,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B4FDE831E16D43B8AC29F6F531BAB044 Ref B: MAA201060514045 Ref C: 2025-02-24T21:57:28Z' + - 'Ref A: 530B77912C8E4628A6F02DE74A4F797A Ref B: MAA201060513049 Ref C: 2025-02-26T23:08:51Z' status: code: 200 message: OK @@ -770,13 +771,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview response: body: - string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/52903ada-eb3a-4303-81c7-aa1448cd04a5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:57:29.9938432Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"This - is a load test created with config specific to vnet","displayName":"Create_and_update_vnet_with_config_test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:55.363Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:27.508Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/dba78784-4e5a-4dff-a4b4-fb81d7d41927?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A51Z&ske=2025-02-27T06%3A08%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:08:52.955892Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"This + is a load test created with config specific to vnet","displayName":"Create_and_update_vnet_with_config_test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:15.38Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:51.11Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -786,17 +787,17 @@ interactions: connection: - keep-alive content-length: - - '1464' + - '1459' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:30 GMT + - Wed, 26 Feb 2025 23:08:53 GMT mise-correlation-id: - - 18f94348-96c9-493d-bbbb-0f2a1deebb3e + - 76b88cb6-122d-499e-be40-380839350f65 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215729Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008a45 + - 20250226T230852Z-167c755789dbzxjrhC1SG1x06c00000002cg00000000czg5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -809,13 +810,14 @@ interactions: from az load test command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": - null, "quickStartTest": false}, "passFailCriteria": {"passFailMetrics": {"2287306a-7bc5-497f-be9b-e0405d99edd2": + null, "quickStartTest": false}, "passFailCriteria": {"passFailMetrics": {"53a6a4c9-0cf1-48aa-a164-b421dacea9c4": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "ac089a1d-a309-424e-9490-fd5b68983a39": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "4a3d3a59-73b2-40d8-8b8d-4f435ad0bf61": + "78"}, "df25d860-a526-4da4-9255-c2dca6c6252e": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "7d4802f5-add7-458d-96b4-2b4b37cf8f16": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": - false, "errorRate": 90, "errorRateTimeWindowInSeconds": 60}}' + false, "errorRate": 90, "errorRateTimeWindowInSeconds": 60}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -824,17 +826,17 @@ interactions: Connection: - keep-alive Content-Length: - - '918' + - '987' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"2287306a-7bc5-497f-be9b-e0405d99edd2":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ac089a1d-a309-424e-9490-fd5b68983a39":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"4a3d3a59-73b2-40d8-8b8d-4f435ad0bf61":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/52903ada-eb3a-4303-81c7-aa1448cd04a5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A30Z&ske=2025-02-25T04%3A57%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:57:30.5223376Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:55.363Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:30.513Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"53a6a4c9-0cf1-48aa-a164-b421dacea9c4":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"df25d860-a526-4da4-9255-c2dca6c6252e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7d4802f5-add7-458d-96b4-2b4b37cf8f16":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/dba78784-4e5a-4dff-a4b4-fb81d7d41927?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A18Z&ske=2025-02-27T06%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:08:53.3208216Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:15.38Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:53.311Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -844,17 +846,17 @@ interactions: connection: - keep-alive content-length: - - '1786' + - '1783' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:30 GMT + - Wed, 26 Feb 2025 23:08:53 GMT mise-correlation-id: - - 29272057-071f-433e-bf7c-91c0d8e99854 + - 1f5b4025-f7d8-47db-a926-3d78091390a4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215730Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008a4r + - 20250226T230853Z-167c755789dbzxjrhC1SG1x06c00000002cg00000000czks x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -872,12 +874,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/52903ada-eb3a-4303-81c7-aa1448cd04a5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A28Z&ske=2025-02-25T04%3A57%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:30.7893073Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/dba78784-4e5a-4dff-a4b4-fb81d7d41927?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A29Z&ske=2025-02-27T06%3A08%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:53.5820949Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -891,13 +893,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:30 GMT + - Wed, 26 Feb 2025 23:08:53 GMT mise-correlation-id: - - a498b688-ee0c-48bc-97f9-0ef0c5cf0a8e + - b9eb693e-669a-42df-afd0-0334c88d5155 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215730Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008a5n + - 20250226T230853Z-167c755789dbzxjrhC1SG1x06c00000002cg00000000cznk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -917,9 +919,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: string: '' @@ -930,13 +932,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:57:31 GMT + - Wed, 26 Feb 2025 23:08:54 GMT mise-correlation-id: - - 09e280f6-239d-4f39-b32a-2fe71aa61947 + - c0e090b9-5a89-4efd-8294-556376f509f0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215730Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008a67 + - 20250226T230853Z-167c755789dbzxjrhC1SG1x06c00000002cg00000000czpy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1045,14 +1047,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/9aa1509f-7d21-46dd-9ca5-d492cf11af28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:32.6388207Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/b3f84180-1d60-4e44-994f-86e6015b5962?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A51Z&ske=2025-02-27T06%3A08%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:54.9903094Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1060,19 +1062,19 @@ interactions: connection: - keep-alive content-length: - - '559' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:32 GMT + - Wed, 26 Feb 2025 23:08:55 GMT location: - - https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 0506082e-c2d9-40c2-8cf1-56f8e41b7254 + - 87fac1c5-b9ba-4780-86df-3a768d92ca42 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215731Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008a71 + - 20250226T230854Z-167c755789dbzxjrhC1SG1x06c00000002cg00000000czs0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1090,12 +1092,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/9aa1509f-7d21-46dd-9ca5-d492cf11af28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:32.8944319Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/b3f84180-1d60-4e44-994f-86e6015b5962?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A29Z&ske=2025-02-27T06%3A08%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:55.245077Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1105,17 +1107,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:33 GMT + - Wed, 26 Feb 2025 23:08:55 GMT mise-correlation-id: - - ca3e22d7-7a8b-4e0e-967c-cd8caa2fe7e5 + - 504b6a7c-b3e2-4bf1-9c6e-c8c4c3b2689d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215732Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008ab2 + - 20250226T230855Z-167c755789dbzxjrhC1SG1x06c00000002cg00000000czxh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1133,12 +1135,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/9aa1509f-7d21-46dd-9ca5-d492cf11af28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:38.1579965Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/b3f84180-1d60-4e44-994f-86e6015b5962?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:00.4994024Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1148,17 +1150,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:38 GMT + - Wed, 26 Feb 2025 23:09:00 GMT mise-correlation-id: - - 6b2c32e9-4321-4357-851a-4fbaa02d054a + - f49b032d-36e5-4845-9dbc-0d7fa781cca2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215738Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008anf + - 20250226T230900Z-167c755789dbzxjrhC1SG1x06c00000002cg00000000d0p8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1176,12 +1178,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/9aa1509f-7d21-46dd-9ca5-d492cf11af28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A07Z&ske=2025-02-25T04%3A57%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:43.4061445Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/b3f84180-1d60-4e44-994f-86e6015b5962?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A18Z&ske=2025-02-27T06%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:05.7515147Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1191,17 +1193,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:43 GMT + - Wed, 26 Feb 2025 23:09:05 GMT mise-correlation-id: - - 91e50723-5585-4f94-bc7e-80a522a89392 + - 56867fff-d580-418d-9d0d-2684a35f0359 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215743Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008ayb + - 20250226T230905Z-167c755789dbzxjrhC1SG1x06c00000002cg00000000d1d1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1219,12 +1221,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/9aa1509f-7d21-46dd-9ca5-d492cf11af28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A30Z&ske=2025-02-25T04%3A57%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:48.6558271Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/b3f84180-1d60-4e44-994f-86e6015b5962?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A35Z&ske=2025-02-27T06%3A08%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:11.822819Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1234,17 +1236,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:48 GMT + - Wed, 26 Feb 2025 23:09:11 GMT mise-correlation-id: - - 961a8b8d-cea8-4429-a3b2-dd1d4c2f5f9e + - 17a2521d-2583-4736-9149-1a878fb85f34 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215748Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008b60 + - 20250226T230910Z-167c755789dbzxjrhC1SG1x06c00000002cg00000000d247 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1262,12 +1264,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/9aa1509f-7d21-46dd-9ca5-d492cf11af28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A07Z&ske=2025-02-25T04%3A57%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:53.9040989Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/b3f84180-1d60-4e44-994f-86e6015b5962?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:17.0781627Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1281,13 +1283,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:54 GMT + - Wed, 26 Feb 2025 23:09:17 GMT mise-correlation-id: - - 1467e88c-a699-4304-9040-99d3f3800724 + - 715015d8-993c-4463-941e-ec334759d985 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215753Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008bee + - 20250226T230916Z-167c755789dbzxjrhC1SG1x06c00000002cg00000000d30k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1305,12 +1307,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/9aa1509f-7d21-46dd-9ca5-d492cf11af28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A07Z&ske=2025-02-25T04%3A57%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:59.1548193Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/b3f84180-1d60-4e44-994f-86e6015b5962?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A35Z&ske=2025-02-27T06%3A08%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:22.3308372Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1324,13 +1326,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:59 GMT + - Wed, 26 Feb 2025 23:09:22 GMT mise-correlation-id: - - 73e64f19-edac-4d70-880f-d55f2610f39b + - 58db8757-7e91-4ee9-a4b0-f83483ab72d3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215759Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008bt6 + - 20250226T230922Z-167c755789dbzxjrhC1SG1x06c00000002cg00000000d3md x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1348,12 +1350,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/9aa1509f-7d21-46dd-9ca5-d492cf11af28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A01Z&ske=2025-02-25T04%3A57%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:04.406519Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/b3f84180-1d60-4e44-994f-86e6015b5962?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:27.5855175Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1363,17 +1365,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:04 GMT + - Wed, 26 Feb 2025 23:09:27 GMT mise-correlation-id: - - 348c4024-a2be-45da-9567-31b3c7c35d30 + - f64cdc6e-fb49-4405-9c4e-a68edd143c41 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215804Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008c3v + - 20250226T230927Z-167c755789dbzxjrhC1SG1x06c00000002cg00000000d47s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1391,13 +1393,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"2287306a-7bc5-497f-be9b-e0405d99edd2":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ac089a1d-a309-424e-9490-fd5b68983a39":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"4a3d3a59-73b2-40d8-8b8d-4f435ad0bf61":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/9aa1509f-7d21-46dd-9ca5-d492cf11af28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:04.656483Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:55.363Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:03.746Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"53a6a4c9-0cf1-48aa-a164-b421dacea9c4":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"df25d860-a526-4da4-9255-c2dca6c6252e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7d4802f5-add7-458d-96b4-2b4b37cf8f16":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/b3f84180-1d60-4e44-994f-86e6015b5962?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A51Z&ske=2025-02-27T06%3A08%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:27.8390585Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:15.38Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:26.892Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1411,13 +1413,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:04 GMT + - Wed, 26 Feb 2025 23:09:27 GMT mise-correlation-id: - - d403fb17-0fc5-44c7-ab22-4c6846cad7fb + - 9fff76ee-46df-44ec-abf3-ccef0a0aad1b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215804Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000008c46 + - 20250226T230927Z-167c755789dbzxjrhC1SG1x06c00000002cg00000000d48r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1440,7 +1442,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:45.8074973Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:45.8074973Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.9885431Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.9885431Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1449,9 +1451,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:05 GMT + - Wed, 26 Feb 2025 23:09:27 GMT etag: - - '"4f01bfc2-0000-0200-0000-67bceaf80000"' + - '"8f01a15f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -1467,7 +1469,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FB6F5E21D3E14138A9C8B04267E7E7BC Ref B: MAA201060513021 Ref C: 2025-02-24T21:58:04Z' + - 'Ref A: 1B5F282E8BD44F2888C450EB62E2C7C5 Ref B: MAA201060516039 Ref C: 2025-02-26T23:09:28Z' status: code: 200 message: OK @@ -1481,13 +1483,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"2287306a-7bc5-497f-be9b-e0405d99edd2":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ac089a1d-a309-424e-9490-fd5b68983a39":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"4a3d3a59-73b2-40d8-8b8d-4f435ad0bf61":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/9aa1509f-7d21-46dd-9ca5-d492cf11af28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:06.1504607Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:55.363Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:03.746Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"53a6a4c9-0cf1-48aa-a164-b421dacea9c4":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"df25d860-a526-4da4-9255-c2dca6c6252e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7d4802f5-add7-458d-96b4-2b4b37cf8f16":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/b3f84180-1d60-4e44-994f-86e6015b5962?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:28.9136277Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:15.38Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:26.892Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1497,17 +1499,17 @@ interactions: connection: - keep-alive content-length: - - '1787' + - '1792' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:06 GMT + - Wed, 26 Feb 2025 23:09:29 GMT mise-correlation-id: - - 98134de4-a5b5-4b79-8c0c-1141c0e0691b + - 5bfd71a1-ea04-4e71-ac20-bd9188bd1131 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215806Z-r17775d4f9888gqkhC1SG1bvr800000008b00000000037a4 + - 20250226T230928Z-r17775d4f98k7mk2hC1SG1n7700000000xyg0000000071qt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1530,7 +1532,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:45.8074973Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:45.8074973Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.9885431Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.9885431Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1539,9 +1541,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:07 GMT + - Wed, 26 Feb 2025 23:09:29 GMT etag: - - '"4f01bfc2-0000-0200-0000-67bceaf80000"' + - '"8f01a15f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -1557,7 +1559,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 814A11B2DB2C49B19FB822F4563BBFC5 Ref B: MAA201060516033 Ref C: 2025-02-24T21:58:06Z' + - 'Ref A: D346E1EFEC924938A7D95C73034F4DF6 Ref B: MAA201060515051 Ref C: 2025-02-26T23:09:29Z' status: code: 200 message: OK @@ -1571,13 +1573,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"2287306a-7bc5-497f-be9b-e0405d99edd2":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ac089a1d-a309-424e-9490-fd5b68983a39":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"4a3d3a59-73b2-40d8-8b8d-4f435ad0bf61":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/9aa1509f-7d21-46dd-9ca5-d492cf11af28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:07.6636091Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:55.363Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:03.746Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"53a6a4c9-0cf1-48aa-a164-b421dacea9c4":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"df25d860-a526-4da4-9255-c2dca6c6252e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7d4802f5-add7-458d-96b4-2b4b37cf8f16":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/b3f84180-1d60-4e44-994f-86e6015b5962?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A35Z&ske=2025-02-27T06%3A08%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:31.8133275Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:15.38Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:26.892Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1587,17 +1589,17 @@ interactions: connection: - keep-alive content-length: - - '1787' + - '1790' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:07 GMT + - Wed, 26 Feb 2025 23:09:31 GMT mise-correlation-id: - - eeb19768-326e-4c4e-b8ca-aab58ea6f116 + - 9a117696-fc8b-4fe8-aa10-64e615ff55cd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215807Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000ae28 + - 20250226T230930Z-167c755789dx4ktjhC1SG17mp000000000n0000000008r1n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1608,18 +1610,18 @@ interactions: - request: body: '{"displayName": "CLI-Test", "kind": "JMX", "description": "Test created from az load test command", "keyvaultReferenceIdentityType": "SystemAssigned", - "publicIPDisabled": true, "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-h5pnvi2emnewtdjni/providers/Microsoft.Network/virtualNetworks/clitest-load-p3josg24ampqjnpoz/subnets/default", + "publicIPDisabled": true, "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-ggvc3qviyk7ezlqet/providers/Microsoft.Network/virtualNetworks/clitest-load-dhh2bqgpnetvtq26b/subnets/default", "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false}, - "passFailCriteria": {"passFailMetrics": {"2287306a-7bc5-497f-be9b-e0405d99edd2": - null, "ac089a1d-a309-424e-9490-fd5b68983a39": null, "4a3d3a59-73b2-40d8-8b8d-4f435ad0bf61": - null, "02868b09-0102-49c9-85b7-8693c0d3e004": {"aggregate": "avg", "clientMetric": - "requests_per_sec", "condition": ">", "value": "78"}, "f5c5a82e-5481-456c-bca6-bc01c9dee2db": + "passFailCriteria": {"passFailMetrics": {"53a6a4c9-0cf1-48aa-a164-b421dacea9c4": + null, "df25d860-a526-4da4-9255-c2dca6c6252e": null, "7d4802f5-add7-458d-96b4-2b4b37cf8f16": + null, "ed761f25-0b1f-4d22-91fd-956ce3486af7": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "01056c1b-c5bd-4faa-b07a-21847a6cf747": {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "3b67dae0-bb6d-4eb9-acf2-ca80fb51c548": {"aggregate": "avg", "clientMetric": + "50"}, "d1ac735d-4b05-435e-9229-564e174bd09b": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 90, "errorRateTimeWindowInSeconds": - 60}}' + 60}, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -1628,17 +1630,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1259' + - '1328' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"3b67dae0-bb6d-4eb9-acf2-ca80fb51c548":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"f5c5a82e-5481-456c-bca6-bc01c9dee2db":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"02868b09-0102-49c9-85b7-8693c0d3e004":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/9aa1509f-7d21-46dd-9ca5-d492cf11af28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A30Z&ske=2025-02-25T04%3A57%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:08.8550438Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:55.363Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:08.846Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d1ac735d-4b05-435e-9229-564e174bd09b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"01056c1b-c5bd-4faa-b07a-21847a6cf747":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ed761f25-0b1f-4d22-91fd-956ce3486af7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/b3f84180-1d60-4e44-994f-86e6015b5962?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A29Z&ske=2025-02-27T06%3A08%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:33.9195783Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:15.38Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:33.911Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1648,17 +1650,17 @@ interactions: connection: - keep-alive content-length: - - '1970' + - '1967' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:08 GMT + - Wed, 26 Feb 2025 23:09:34 GMT mise-correlation-id: - - 64a35f96-6065-4370-a787-23bdae632965 + - eefef9e3-419b-4174-bc9e-620c9c02abbe strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215807Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000ae2t + - 20250226T230931Z-167c755789dx4ktjhC1SG17mp000000000n0000000008r5e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1676,12 +1678,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/9aa1509f-7d21-46dd-9ca5-d492cf11af28?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A01Z&ske=2025-02-25T04%3A57%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:09.1109851Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/b3f84180-1d60-4e44-994f-86e6015b5962?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:34.1836922Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1695,13 +1697,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:09 GMT + - Wed, 26 Feb 2025 23:09:34 GMT mise-correlation-id: - - 4a0db837-986e-4eb5-a0ce-4912defb52db + - 3637313d-2b0e-4052-ac25-0c69c90a0024 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215808Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000ae4u + - 20250226T230934Z-167c755789dx4ktjhC1SG17mp000000000n0000000008r9g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1721,9 +1723,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: string: '' @@ -1734,13 +1736,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:58:09 GMT + - Wed, 26 Feb 2025 23:09:34 GMT mise-correlation-id: - - fb1bcc0d-64d5-4840-a72c-5afabee02488 + - b96f7e91-1239-4720-ab5f-4c60749759cd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215809Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000ae5c + - 20250226T230934Z-167c755789dx4ktjhC1SG17mp000000000n0000000008ra2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1849,14 +1851,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/45ee11b3-b6db-4f54-9682-dec2ce62b6f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A01Z&ske=2025-02-25T04%3A57%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:09.9030502Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/de107d8d-0f87-4714-8af3-36ef5a0e0299?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A51Z&ske=2025-02-27T06%3A08%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:34.9792229Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1864,19 +1866,19 @@ interactions: connection: - keep-alive content-length: - - '561' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:10 GMT + - Wed, 26 Feb 2025 23:09:35 GMT location: - - https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - bd20e27f-5202-4d9f-9899-ad29480ff54c + - 3b907b31-46d2-457b-900d-de4927018acc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215809Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000ae5w + - 20250226T230934Z-167c755789dx4ktjhC1SG17mp000000000n0000000008ran x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1894,12 +1896,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/45ee11b3-b6db-4f54-9682-dec2ce62b6f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:10.1658155Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/de107d8d-0f87-4714-8af3-36ef5a0e0299?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A29Z&ske=2025-02-27T06%3A08%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:35.2330832Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1909,17 +1911,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:10 GMT + - Wed, 26 Feb 2025 23:09:35 GMT mise-correlation-id: - - 7c0f214a-322e-4284-a4d1-20fcd6ec48f1 + - ff717c53-ad20-4984-a042-5943b8de56e3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215810Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000ae6n + - 20250226T230935Z-167c755789dx4ktjhC1SG17mp000000000n0000000008rbs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1937,12 +1939,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/45ee11b3-b6db-4f54-9682-dec2ce62b6f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:15.4241292Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/de107d8d-0f87-4714-8af3-36ef5a0e0299?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:40.4813561Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1952,17 +1954,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:15 GMT + - Wed, 26 Feb 2025 23:09:40 GMT mise-correlation-id: - - 9a6318ea-d175-4988-82f8-5c90c343a60a + - d510253e-2ac2-4f6c-8b6f-760f78c4cf53 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215815Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000aees + - 20250226T230940Z-167c755789dx4ktjhC1SG17mp000000000n0000000008rtr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1980,12 +1982,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/45ee11b3-b6db-4f54-9682-dec2ce62b6f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:20.6721657Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/de107d8d-0f87-4714-8af3-36ef5a0e0299?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:45.7372893Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1995,17 +1997,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:20 GMT + - Wed, 26 Feb 2025 23:09:45 GMT mise-correlation-id: - - 04e86648-480e-4143-a9b4-8b7bd1729337 + - 49576713-2cf4-4c9a-87e0-a19f42ec5e1f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215820Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000aesh + - 20250226T230945Z-167c755789dx4ktjhC1SG17mp000000000n0000000008s4a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2023,12 +2025,55 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/45ee11b3-b6db-4f54-9682-dec2ce62b6f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:25.9250794Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/de107d8d-0f87-4714-8af3-36ef5a0e0299?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A45Z&ske=2025-02-27T06%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:51.0127662Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-12-01-preview + connection: + - keep-alive + content-length: + - '561' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Feb 2025 23:09:51 GMT + mise-correlation-id: + - 0964b616-e1fb-40ff-96a6-477db0a38e2f + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20250226T230950Z-167c755789dx4ktjhC1SG17mp000000000n0000000008sp9 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + method: GET + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + response: + body: + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/de107d8d-0f87-4714-8af3-36ef5a0e0299?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A35Z&ske=2025-02-27T06%3A08%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:56.2659857Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2042,13 +2087,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:26 GMT + - Wed, 26 Feb 2025 23:09:56 GMT mise-correlation-id: - - 0b3fa08c-46ed-4b7c-868c-fc1df397d50e + - 4a13cad4-2215-4d39-a87d-431026f9e15c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215825Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000af18 + - 20250226T230956Z-167c755789dx4ktjhC1SG17mp000000000n0000000008t2e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2066,12 +2111,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/45ee11b3-b6db-4f54-9682-dec2ce62b6f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A28Z&ske=2025-02-25T04%3A57%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:31.1752969Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/de107d8d-0f87-4714-8af3-36ef5a0e0299?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A51Z&ske=2025-02-27T06%3A08%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:01.5242193Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2085,13 +2130,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:31 GMT + - Wed, 26 Feb 2025 23:10:01 GMT mise-correlation-id: - - 91269ce2-1a9b-48b4-b5b5-3cf2d0fbcb0c + - 28c8879d-5f22-442d-ad44-4c762f646d6a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215831Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000af8w + - 20250226T231001Z-167c755789dx4ktjhC1SG17mp000000000n0000000008tge x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2109,12 +2154,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/45ee11b3-b6db-4f54-9682-dec2ce62b6f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A07Z&ske=2025-02-25T04%3A57%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:36.4239384Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/de107d8d-0f87-4714-8af3-36ef5a0e0299?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A51Z&ske=2025-02-27T06%3A08%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:06.7746821Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2124,17 +2169,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:36 GMT + - Wed, 26 Feb 2025 23:10:06 GMT mise-correlation-id: - - 1ec2dcf2-aff5-4c4f-b0fe-6aed72dda692 + - 49d2b87a-ebf9-4bfc-a930-e9bdd3316032 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215836Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000afgv + - 20250226T231006Z-167c755789dx4ktjhC1SG17mp000000000n0000000008tx0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2152,12 +2197,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/45ee11b3-b6db-4f54-9682-dec2ce62b6f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A07Z&ske=2025-02-25T04%3A57%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:41.6751942Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/de107d8d-0f87-4714-8af3-36ef5a0e0299?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A51Z&ske=2025-02-27T06%3A08%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:12.4964516Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -2167,17 +2212,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:41 GMT + - Wed, 26 Feb 2025 23:10:12 GMT mise-correlation-id: - - dbbca82c-2faf-4ab3-8381-89e3bf534974 + - 29972cd0-c745-45ba-bc5f-7e0c3b25f840 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215841Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000afsd + - 20250226T231011Z-167c755789dx4ktjhC1SG17mp000000000n0000000008ubp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2195,13 +2240,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"3b67dae0-bb6d-4eb9-acf2-ca80fb51c548":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"f5c5a82e-5481-456c-bca6-bc01c9dee2db":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"02868b09-0102-49c9-85b7-8693c0d3e004":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/45ee11b3-b6db-4f54-9682-dec2ce62b6f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:41.9229093Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:55.363Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:40.427Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d1ac735d-4b05-435e-9229-564e174bd09b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"01056c1b-c5bd-4faa-b07a-21847a6cf747":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ed761f25-0b1f-4d22-91fd-956ce3486af7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/de107d8d-0f87-4714-8af3-36ef5a0e0299?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A18Z&ske=2025-02-27T06%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:12.7517187Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:15.38Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:11.492Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2211,17 +2256,17 @@ interactions: connection: - keep-alive content-length: - - '1970' + - '1967' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:42 GMT + - Wed, 26 Feb 2025 23:10:12 GMT mise-correlation-id: - - 4003afbb-cb29-4f6a-9a38-2387be7632cf + - f827625a-536a-47c8-94a2-74f580b6b01a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215841Z-r17775d4f98m8b5phC1SG1qcms00000007ug00000000afsw + - 20250226T231012Z-167c755789dx4ktjhC1SG17mp000000000n0000000008udh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2244,7 +2289,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:45.8074973Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:45.8074973Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.9885431Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.9885431Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2253,9 +2298,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:42 GMT + - Wed, 26 Feb 2025 23:10:12 GMT etag: - - '"4f01bfc2-0000-0200-0000-67bceaf80000"' + - '"8f01a15f-0000-0200-0000-67bf9eb30000"' expires: - '-1' pragma: @@ -2269,9 +2314,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: 08E9BF36EDD749A498A8034E0B8F63CA Ref B: MAA201060513019 Ref C: 2025-02-24T21:58:42Z' + - 'Ref A: 34ED6C62432748268982850E3AD54C99 Ref B: MAA201060515021 Ref C: 2025-02-26T23:10:13Z' status: code: 200 message: OK @@ -2285,13 +2330,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://331b4065-0ec1-4546-9e11-2ef1267ea49e.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview + uri: https://94fb1b99-1a50-4df1-8611-29dcb9687d15.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"3b67dae0-bb6d-4eb9-acf2-ca80fb51c548":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"f5c5a82e-5481-456c-bca6-bc01c9dee2db":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"02868b09-0102-49c9-85b7-8693c0d3e004":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://da6mbye77nmfdoo2rk014of3.z16.blob.storage.azure.net/5997654e-7277-475a-8fee-164009181354/45ee11b3-b6db-4f54-9682-dec2ce62b6f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A56Z&ske=2025-02-25T04%3A56%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:42.9203767Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:55.363Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:40.427Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d1ac735d-4b05-435e-9229-564e174bd09b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"01056c1b-c5bd-4faa-b07a-21847a6cf747":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ed761f25-0b1f-4d22-91fd-956ce3486af7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sc8muhi7r9bg1fedwsgqxwd6.z40.blob.storage.azure.net/68e7efb7-6437-444d-bec7-7650278a6010/de107d8d-0f87-4714-8af3-36ef5a0e0299?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A51Z&ske=2025-02-27T06%3A08%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:13.7629254Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Network/virtualNetworks/clitest-load-000003/subnets/default","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:15.38Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:11.492Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2301,17 +2346,17 @@ interactions: connection: - keep-alive content-length: - - '1966' + - '1967' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:43 GMT + - Wed, 26 Feb 2025 23:10:13 GMT mise-correlation-id: - - 99724c39-2e13-444f-a79c-53f44d9fc766 + - b8404464-c382-4e10-8c70-9a6b33d07738 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215842Z-r17775d4f9888gqkhC1SG1bvr800000008b00000000039be + - 20250226T231013Z-167c755789dpktj6hC1SG1nr68000000024g00000000cxfn x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_create_with_args.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_create_with_args.yaml index e9e1f3ecc5b..69f52ca0a77 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_create_with_args.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_create_with_args.yaml @@ -14,7 +14,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.7322491Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.7322491Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:05.5547647Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:05.5547647Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -23,9 +23,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:19 GMT + - Wed, 26 Feb 2025 23:07:38 GMT etag: - - '"4f0172b3-0000-0200-0000-67bcea430000"' + - '"8f01595f-0000-0200-0000-67bf9eaf0000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 91A6A81297BB454C9969E39A56EC4DCE Ref B: MAA201060513045 Ref C: 2025-02-24T21:53:18Z' + - 'Ref A: 34A74F6A4CE0425AB977BD639438FD7D Ref B: MAA201060515021 Ref C: 2025-02-26T23:07:38Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-12-01-preview + uri: https://061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -71,15 +71,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:53:20 GMT + - Wed, 26 Feb 2025 23:07:39 GMT mise-correlation-id: - - c39f8c5d-88fb-4a45-9420-1a0b18a7ff32 + - 30d5844b-6966-4c7b-b9fc-a307e8ed228f strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215320Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000022sq + - 20250226T230739Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000c4hp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -94,7 +94,8 @@ interactions: is a load test created with arguments", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": {"a": "2", "b": "3"}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false}, - "autoStopCriteria": {}, "baselineTestRunId": null}' + "autoStopCriteria": {}, "baselineTestRunId": null, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -103,17 +104,17 @@ interactions: Connection: - keep-alive Content-Length: - - '384' + - '453' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-12-01-preview + uri: https://061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-12-01-preview response: body: string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-with-args-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:21.112Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:53:21.112Z","lastModifiedBy":"hbisht@microsoft.com"}' + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:07:40.182Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:07:40.182Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -125,15 +126,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:21 GMT + - Wed, 26 Feb 2025 23:07:40 GMT location: - - https://aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-12-01-preview + - https://061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-12-01-preview mise-correlation-id: - - 6918bc75-7bdc-4c3c-80e4-3d52f9b6d740 + - 110e4b59-f6af-4143-a3b0-3e46e1de9f9e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215320Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000022ua + - 20250226T230739Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000c4mf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -151,9 +152,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files?api-version=2024-12-01-preview + uri: https://061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -170,13 +171,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:21 GMT + - Wed, 26 Feb 2025 23:07:40 GMT mise-correlation-id: - - 5b7036a0-7829-4bca-8696-81f8dd10ad20 + - 5275fead-3602-4704-a1b9-ca3f0366dd8b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215321Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000022v9 + - 20250226T230740Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000c4nh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -285,14 +286,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=JMX_FILE + uri: https://061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://nqm41ez8ue1crqzafugmmior.z9.blob.storage.azure.net/ab62500d-f8bc-4dfa-8655-2cbc7632e35d/22c92aeb-e456-4ac5-bf6a-595e9182a478?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A22Z&ske=2025-02-25T04%3A53%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:03:23.0112905Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ad21iz96jbjtpsykfkt7g7s2.z43.blob.storage.azure.net/daebbf96-f14c-475b-8744-7221f6543f04/901813bf-5041-439d-835e-efa3cf88645a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A40Z&ske=2025-02-27T06%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:17:41.0402272Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -300,19 +301,19 @@ interactions: connection: - keep-alive content-length: - - '557' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:23 GMT + - Wed, 26 Feb 2025 23:07:41 GMT location: - - https://aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - f0ab5eb1-c884-4992-a11d-4d00deba60e0 + - 052f9174-0882-4f0e-a083-ef0db306cc9c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215321Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000022vz + - 20250226T230740Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000c4p3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -330,12 +331,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nqm41ez8ue1crqzafugmmior.z9.blob.storage.azure.net/ab62500d-f8bc-4dfa-8655-2cbc7632e35d/22c92aeb-e456-4ac5-bf6a-595e9182a478?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A23Z&ske=2025-02-25T04%3A53%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:03:23.3196201Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ad21iz96jbjtpsykfkt7g7s2.z43.blob.storage.azure.net/daebbf96-f14c-475b-8744-7221f6543f04/901813bf-5041-439d-835e-efa3cf88645a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A40Z&ske=2025-02-27T06%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:17:41.3057341Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -345,17 +346,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:23 GMT + - Wed, 26 Feb 2025 23:07:41 GMT mise-correlation-id: - - df4b99ef-dd40-4c14-b729-e3902a0a4b10 + - d0a1606a-3899-4e2f-a01f-8a561f67889e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215323Z-r17775d4f98mc5fbhC1SG1vp2s000000140g00000000230c + - 20250226T230741Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000c4qe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -373,12 +374,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nqm41ez8ue1crqzafugmmior.z9.blob.storage.azure.net/ab62500d-f8bc-4dfa-8655-2cbc7632e35d/22c92aeb-e456-4ac5-bf6a-595e9182a478?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:03:28.6260936Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ad21iz96jbjtpsykfkt7g7s2.z43.blob.storage.azure.net/daebbf96-f14c-475b-8744-7221f6543f04/901813bf-5041-439d-835e-efa3cf88645a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A46Z&ske=2025-02-27T06%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:17:46.5990593Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -388,17 +389,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:28 GMT + - Wed, 26 Feb 2025 23:07:46 GMT mise-correlation-id: - - 7ce9e351-900e-492a-8022-efaa2eefdb2e + - c40c82da-2560-4345-9634-9bf9f23efe1a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215328Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000023e2 + - 20250226T230746Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000c535 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -416,12 +417,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nqm41ez8ue1crqzafugmmior.z9.blob.storage.azure.net/ab62500d-f8bc-4dfa-8655-2cbc7632e35d/22c92aeb-e456-4ac5-bf6a-595e9182a478?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A33Z&ske=2025-02-25T04%3A53%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:03:33.9194433Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ad21iz96jbjtpsykfkt7g7s2.z43.blob.storage.azure.net/daebbf96-f14c-475b-8744-7221f6543f04/901813bf-5041-439d-835e-efa3cf88645a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A51Z&ske=2025-02-27T06%3A07%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:17:51.9036973Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -431,17 +432,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:34 GMT + - Wed, 26 Feb 2025 23:07:52 GMT mise-correlation-id: - - a91f3c54-a9c7-448d-a946-cee00a370385 + - 99ab90db-fe51-43e0-8ade-5e30749d3447 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215333Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000023u9 + - 20250226T230751Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000c5ky x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -459,12 +460,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nqm41ez8ue1crqzafugmmior.z9.blob.storage.azure.net/ab62500d-f8bc-4dfa-8655-2cbc7632e35d/22c92aeb-e456-4ac5-bf6a-595e9182a478?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:03:39.1686762Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ad21iz96jbjtpsykfkt7g7s2.z43.blob.storage.azure.net/daebbf96-f14c-475b-8744-7221f6543f04/901813bf-5041-439d-835e-efa3cf88645a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A57Z&ske=2025-02-27T06%3A07%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:17:57.2084285Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -474,17 +475,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:39 GMT + - Wed, 26 Feb 2025 23:07:57 GMT mise-correlation-id: - - 454943e3-0e7f-4fd9-895f-3a601bdf21d1 + - 64fedafd-66c8-4d96-b6e7-cc469a26e9dd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215339Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000002452 + - 20250226T230757Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000c62k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -502,12 +503,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nqm41ez8ue1crqzafugmmior.z9.blob.storage.azure.net/ab62500d-f8bc-4dfa-8655-2cbc7632e35d/22c92aeb-e456-4ac5-bf6a-595e9182a478?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A23Z&ske=2025-02-25T04%3A53%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:03:44.4298756Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ad21iz96jbjtpsykfkt7g7s2.z43.blob.storage.azure.net/daebbf96-f14c-475b-8744-7221f6543f04/901813bf-5041-439d-835e-efa3cf88645a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A51Z&ske=2025-02-27T06%3A07%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:02.4695489Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -517,17 +518,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:44 GMT + - Wed, 26 Feb 2025 23:08:02 GMT mise-correlation-id: - - 5f52abb4-b0f5-4330-bb53-adddfe081864 + - edccee28-15f7-4263-ab48-315fb88907e7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215344Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000024hb + - 20250226T230802Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000c6hp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -545,12 +546,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nqm41ez8ue1crqzafugmmior.z9.blob.storage.azure.net/ab62500d-f8bc-4dfa-8655-2cbc7632e35d/22c92aeb-e456-4ac5-bf6a-595e9182a478?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A28Z&ske=2025-02-25T04%3A53%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:03:49.6820767Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ad21iz96jbjtpsykfkt7g7s2.z43.blob.storage.azure.net/daebbf96-f14c-475b-8744-7221f6543f04/901813bf-5041-439d-835e-efa3cf88645a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A51Z&ske=2025-02-27T06%3A07%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:07.7165033Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -560,17 +561,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:49 GMT + - Wed, 26 Feb 2025 23:08:07 GMT mise-correlation-id: - - be6e8595-be18-40e3-8228-c5562eecabd6 + - cec24777-ace0-4fd6-8d68-d9e1c9f2ad5e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215349Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000024ux + - 20250226T230807Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000c722 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -588,12 +589,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nqm41ez8ue1crqzafugmmior.z9.blob.storage.azure.net/ab62500d-f8bc-4dfa-8655-2cbc7632e35d/22c92aeb-e456-4ac5-bf6a-595e9182a478?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A54Z&ske=2025-02-25T04%3A53%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:03:54.9681136Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://ad21iz96jbjtpsykfkt7g7s2.z43.blob.storage.azure.net/daebbf96-f14c-475b-8744-7221f6543f04/901813bf-5041-439d-835e-efa3cf88645a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A57Z&ske=2025-02-27T06%3A07%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:12.972108Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -607,13 +608,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:55 GMT + - Wed, 26 Feb 2025 23:08:13 GMT mise-correlation-id: - - 00474bef-1ed6-492f-8bd5-c666f63bd526 + - 99026f23-7f86-42ce-a6eb-bf085f11f6a7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215354Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000002542 + - 20250226T230812Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000c7nh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -631,13 +632,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-12-01-preview + uri: https://061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-12-01-preview response: body: - string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://nqm41ez8ue1crqzafugmmior.z9.blob.storage.azure.net/ab62500d-f8bc-4dfa-8655-2cbc7632e35d/22c92aeb-e456-4ac5-bf6a-595e9182a478?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A55Z&ske=2025-02-25T04%3A53%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A53%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:53:55.2213023Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-with-args-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:21.112Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:53:53.503Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://ad21iz96jbjtpsykfkt7g7s2.z43.blob.storage.azure.net/daebbf96-f14c-475b-8744-7221f6543f04/901813bf-5041-439d-835e-efa3cf88645a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A13Z&ske=2025-02-27T06%3A08%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:08:13.2285942Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-with-args-test-case","description":"This + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:07:40.182Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:11.236Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -647,17 +648,17 @@ interactions: connection: - keep-alive content-length: - - '1289' + - '1298' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:55 GMT + - Wed, 26 Feb 2025 23:08:13 GMT mise-correlation-id: - - 8b868275-e309-46fa-90d8-43d131248224 + - f1d1af70-0467-4ac6-b0d2-198462beee61 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215355Z-r17775d4f98mc5fbhC1SG1vp2s000000140g00000000254e + - 20250226T230813Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000c7pe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -680,7 +681,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:45.7322491Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:45.7322491Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:05.5547647Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:05.5547647Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -689,9 +690,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:55 GMT + - Wed, 26 Feb 2025 23:08:14 GMT etag: - - '"4f0172b3-0000-0200-0000-67bcea430000"' + - '"8f01595f-0000-0200-0000-67bf9eaf0000"' expires: - '-1' pragma: @@ -707,7 +708,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FBE3D308FAE54E3EB14F0A6D6CA2CC05 Ref B: MAA201060516031 Ref C: 2025-02-24T21:53:55Z' + - 'Ref A: 49A763A479804C97A6434C444EEDDBF8 Ref B: MAA201060515033 Ref C: 2025-02-26T23:08:13Z' status: code: 200 message: OK @@ -721,13 +722,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://aa3ed0a4-4d3f-4ced-8eaf-a2debd938478.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://061b476d-bf86-4438-b1a9-940514f1b0c6.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: - string: '{"value":[{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://nqm41ez8ue1crqzafugmmior.z9.blob.storage.azure.net/ab62500d-f8bc-4dfa-8655-2cbc7632e35d/22c92aeb-e456-4ac5-bf6a-595e9182a478?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A33Z&ske=2025-02-25T04%3A53%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A53%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:53:57.3642797Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-with-args-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:21.112Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:53:53.503Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://ad21iz96jbjtpsykfkt7g7s2.z43.blob.storage.azure.net/daebbf96-f14c-475b-8744-7221f6543f04/901813bf-5041-439d-835e-efa3cf88645a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A57Z&ske=2025-02-27T06%3A07%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:08:15.9824465Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"create-with-args-test-case","description":"This + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:07:40.182Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:11.236Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -737,17 +738,17 @@ interactions: connection: - keep-alive content-length: - - '1303' + - '1300' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:57 GMT + - Wed, 26 Feb 2025 23:08:16 GMT mise-correlation-id: - - b15bc944-f128-4d4a-a657-58fdc35cc5a0 + - a911fb09-5c5c-42d2-8093-9235c95a87c5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215356Z-r17775d4f98m8b5phC1SG1qcms00000007ug000000009yem + - 20250226T230815Z-167c755789dbzxjrhC1SG1x06c00000002b000000000ft90 x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_delete.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_delete.yaml index b5608e6c592..0fb2795df37 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_delete.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_delete.yaml @@ -14,7 +14,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:54:12.8750203Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:54:12.8750203Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:05.3383618Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:05.3383618Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -23,9 +23,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:46 GMT + - Wed, 26 Feb 2025 23:07:38 GMT etag: - - '"4f01f0ba-0000-0200-0000-67bcea9c0000"' + - '"8f01735f-0000-0200-0000-67bf9eb00000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 97BB7FD42F6F46779BC34881052BB5B2 Ref B: MAA201060513037 Ref C: 2025-02-24T21:54:46Z' + - 'Ref A: 3CCDF7D94EDF445CBA8F3C27234F7F62 Ref B: MAA201060514051 Ref C: 2025-02-26T23:07:38Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -71,15 +71,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:54:47 GMT + - Wed, 26 Feb 2025 23:07:40 GMT mise-correlation-id: - - 52bfda9c-74ca-4dd2-b588-f819a814557c + - a8b4e7a7-235d-427b-b8b2-b05bf8508a22 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215446Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002mqc + - 20250226T230739Z-167c755789dkxplchC1SG1rzhw0000000200000000009kb5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -95,17 +95,18 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"665f9fc1-b019-42c8-b528-f9c5f22d361d": + true}, "passFailCriteria": {"passFailMetrics": {"190eeef4-5dc4-4f4e-871a-1bc6a578444b": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "ade8b09a-3a40-4402-9753-2a5b7f5b946b": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "913e9350-6f61-4744-bc41-9e73e049f6da": + "78"}, "e2b348e6-52e7-420d-bf19-f5815223188f": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "7622a493-676e-40f1-8984-af70df839a77": {"aggregate": "p75", "clientMetric": "response_time_ms", "condition": ">", "value": - "380"}, "25e7a24b-3a53-4f60-bedb-b0d9de88d9e0": {"aggregate": "p99", "clientMetric": - "response_time_ms", "condition": ">", "value": "520"}, "43d9285f-987e-40ef-b6f1-512c0b028c2d": + "380"}, "ffe853e8-9f90-4e19-961a-9dd1ee088737": {"aggregate": "p99", "clientMetric": + "response_time_ms", "condition": ">", "value": "520"}, "a07e9e07-fa94-439a-8fca-285e3028805f": {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", - "value": "540"}, "115c69cc-c07a-4968-ae23-d67b3e488ad2": {"aggregate": "avg", + "value": "540"}, "c1b14f4d-9ebf-4ade-aa0d-76c8850fe609": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,17 +115,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"665f9fc1-b019-42c8-b528-f9c5f22d361d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ade8b09a-3a40-4402-9753-2a5b7f5b946b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"913e9350-6f61-4744-bc41-9e73e049f6da":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"25e7a24b-3a53-4f60-bedb-b0d9de88d9e0":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"43d9285f-987e-40ef-b6f1-512c0b028c2d":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"115c69cc-c07a-4968-ae23-d67b3e488ad2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:54:47.541Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:47.541Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"190eeef4-5dc4-4f4e-871a-1bc6a578444b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2b348e6-52e7-420d-bf19-f5815223188f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7622a493-676e-40f1-8984-af70df839a77":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"ffe853e8-9f90-4e19-961a-9dd1ee088737":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a07e9e07-fa94-439a-8fca-285e3028805f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c1b14f4d-9ebf-4ade-aa0d-76c8850fe609":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:07:41.41Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:07:41.41Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -132,19 +133,19 @@ interactions: connection: - keep-alive content-length: - - '1647' + - '1645' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:47 GMT + - Wed, 26 Feb 2025 23:07:41 GMT location: - - https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview + - https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview mise-correlation-id: - - c835970b-12c8-4146-9663-8af749a58420 + - 8bc51474-efe7-4453-bfe6-8536c01ff05d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215447Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002mqq + - 20250226T230740Z-167c755789dkxplchC1SG1rzhw0000000200000000009kdg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -162,9 +163,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -181,13 +182,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:47 GMT + - Wed, 26 Feb 2025 23:07:41 GMT mise-correlation-id: - - e70a8ab0-f82e-4e36-8064-1eac8256e2ff + - eadc8359-a411-41d3-ae3e-7324bc7909b1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215447Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002mr7 + - 20250226T230741Z-167c755789dkxplchC1SG1rzhw0000000200000000009kkn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -212,14 +213,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/d1c8c8dd-abca-4946-921f-412743151d02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A49Z&ske=2025-02-25T04%3A54%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:04:49.2389887Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/bb0e9b52-cb9d-4fe8-b84e-90138a6856b3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A42Z&ske=2025-02-27T06%3A07%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A42Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:17:42.3020819Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -227,19 +228,19 @@ interactions: connection: - keep-alive content-length: - - '573' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:49 GMT + - Wed, 26 Feb 2025 23:07:42 GMT location: - - https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 23597277-651c-4812-8e95-80b23a8c6807 + - 46cca5bf-4a3e-4b81-b42e-3db710012076 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215447Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002mrn + - 20250226T230741Z-167c755789dkxplchC1SG1rzhw0000000200000000009kmf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -257,12 +258,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/d1c8c8dd-abca-4946-921f-412743151d02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A49Z&ske=2025-02-25T04%3A54%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A50Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:04:50.4051876Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/bb0e9b52-cb9d-4fe8-b84e-90138a6856b3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A42Z&ske=2025-02-27T06%3A07%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A43Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:17:43.3677387Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -272,17 +273,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '575' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:50 GMT + - Wed, 26 Feb 2025 23:07:43 GMT mise-correlation-id: - - 47a908b2-1be6-4e4e-bccf-f7ca8b3e8970 + - a089c3db-3030-426c-8828-aae312fde0de strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215449Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002mta + - 20250226T230742Z-167c755789dkxplchC1SG1rzhw0000000200000000009kpc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -311,14 +312,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/4c03bb6c-f0e7-4c4b-811e-4efa8f4bd512?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A49Z&ske=2025-02-25T04%3A54%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:50.7737676Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/d68c4be3-a4cb-45f9-b6b3-90c25b21b48b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A43Z&ske=2025-02-27T06%3A07%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:17:43.8151689Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -326,19 +327,19 @@ interactions: connection: - keep-alive content-length: - - '563' + - '567' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:50 GMT + - Wed, 26 Feb 2025 23:07:43 GMT location: - - https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - c9c3ee36-dac0-4bf2-acd9-1271c2650cb0 + - b1180b0f-b1bd-4e95-bc71-2d98e134b7c1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215450Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002mvh + - 20250226T230743Z-167c755789dkxplchC1SG1rzhw0000000200000000009ksq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -356,12 +357,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/4c03bb6c-f0e7-4c4b-811e-4efa8f4bd512?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A51Z&ske=2025-02-25T04%3A54%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:51.1060749Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/d68c4be3-a4cb-45f9-b6b3-90c25b21b48b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:17:44.1070907Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -371,17 +372,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:51 GMT + - Wed, 26 Feb 2025 23:07:44 GMT mise-correlation-id: - - 127266f2-6d59-4e60-ab7f-4cc807a7206b + - 0d34bd08-22dc-4c21-a7cd-4c4495005ef6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215450Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002mw6 + - 20250226T230743Z-167c755789dkxplchC1SG1rzhw0000000200000000009ku4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -490,14 +491,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/f2078ec5-07df-4ea2-9a57-d1a293d066e0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A51Z&ske=2025-02-25T04%3A54%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:51.6062264Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/79570cca-0329-44f8-903d-b8644db0e456?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A42Z&ske=2025-02-27T06%3A07%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:17:44.5964962Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -505,19 +506,19 @@ interactions: connection: - keep-alive content-length: - - '563' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:51 GMT + - Wed, 26 Feb 2025 23:07:44 GMT location: - - https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 1766759d-9a2c-4f50-9577-0e64b43b2190 + - 6a5b1674-2370-4b8f-8de8-723a9633e5a6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215451Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002mwr + - 20250226T230744Z-167c755789dkxplchC1SG1rzhw0000000200000000009kv3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -535,12 +536,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/f2078ec5-07df-4ea2-9a57-d1a293d066e0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A51Z&ske=2025-02-25T04%3A54%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:51.9473877Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/79570cca-0329-44f8-903d-b8644db0e456?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:17:44.9842213Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -550,17 +551,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:52 GMT + - Wed, 26 Feb 2025 23:07:45 GMT mise-correlation-id: - - 88a837c1-fffe-4153-9ceb-be45a72090c3 + - 27282ebf-01b1-4809-95fc-4ca941bbafd7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215451Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002mxd + - 20250226T230744Z-167c755789dkxplchC1SG1rzhw0000000200000000009kxb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -578,12 +579,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/f2078ec5-07df-4ea2-9a57-d1a293d066e0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A51Z&ske=2025-02-25T04%3A54%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:57.1967169Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/79570cca-0329-44f8-903d-b8644db0e456?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:17:50.2780116Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -597,13 +598,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:57 GMT + - Wed, 26 Feb 2025 23:07:50 GMT mise-correlation-id: - - a080003f-93f5-40f9-8419-0b74cf2de68d + - 794c583f-ace4-4a22-8e06-37d90d20fe29 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215457Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002n4a + - 20250226T230750Z-167c755789dkxplchC1SG1rzhw0000000200000000009mf8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -621,12 +622,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/f2078ec5-07df-4ea2-9a57-d1a293d066e0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A51Z&ske=2025-02-25T04%3A54%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:02.448867Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/79570cca-0329-44f8-903d-b8644db0e456?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:17:55.6207165Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -636,17 +637,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:02 GMT + - Wed, 26 Feb 2025 23:07:55 GMT mise-correlation-id: - - b501a520-9187-4ee8-b9ff-9f1a4f84e24e + - de1fee77-af05-42f9-8c37-6d7ce65c4059 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215502Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002nd7 + - 20250226T230755Z-167c755789dkxplchC1SG1rzhw0000000200000000009n12 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -664,12 +665,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/f2078ec5-07df-4ea2-9a57-d1a293d066e0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A51Z&ske=2025-02-25T04%3A54%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:07.7001667Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/79570cca-0329-44f8-903d-b8644db0e456?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A42Z&ske=2025-02-27T06%3A07%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:00.8749699Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -679,17 +680,60 @@ interactions: connection: - keep-alive content-length: - - '561' + - '559' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Feb 2025 23:08:00 GMT + mise-correlation-id: + - 690a3c31-6c34-4cce-9efe-98efb5b29067 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20250226T230800Z-167c755789dkxplchC1SG1rzhw0000000200000000009nmb + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + method: GET + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + response: + body: + string: '{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/79570cca-0329-44f8-903d-b8644db0e456?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:06.1474066Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-12-01-preview + connection: + - keep-alive + content-length: + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:07 GMT + - Wed, 26 Feb 2025 23:08:06 GMT mise-correlation-id: - - c8b544e6-bcb9-43d9-9a8a-e91730edb2f9 + - 555abca3-3069-4321-bb9b-7336a301abc1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215507Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002np3 + - 20250226T230806Z-167c755789dkxplchC1SG1rzhw0000000200000000009p84 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -707,12 +751,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/f2078ec5-07df-4ea2-9a57-d1a293d066e0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A49Z&ske=2025-02-25T04%3A54%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:12.9495965Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/79570cca-0329-44f8-903d-b8644db0e456?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A42Z&ske=2025-02-27T06%3A07%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:11.3934116Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -726,13 +770,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:13 GMT + - Wed, 26 Feb 2025 23:08:11 GMT mise-correlation-id: - - a3fb0d71-b213-441e-85c4-a272f81be52f + - e5d0eb71-b612-47e4-8082-0ee7b31f375b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215512Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002nxr + - 20250226T230811Z-167c755789dkxplchC1SG1rzhw0000000200000000009prs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -750,12 +794,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/f2078ec5-07df-4ea2-9a57-d1a293d066e0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A51Z&ske=2025-02-25T04%3A54%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:18.2085366Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/79570cca-0329-44f8-903d-b8644db0e456?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:16.6425624Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -765,17 +809,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:18 GMT + - Wed, 26 Feb 2025 23:08:16 GMT mise-correlation-id: - - 6d5491d0-f40d-4560-884e-eb8c0fe10b9a + - dc91cdbc-0d0a-4951-8f92-49bc9126939b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215518Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002p64 + - 20250226T230816Z-167c755789dkxplchC1SG1rzhw0000000200000000009q84 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -793,12 +837,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/f2078ec5-07df-4ea2-9a57-d1a293d066e0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A51Z&ske=2025-02-25T04%3A54%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:23.4594826Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/79570cca-0329-44f8-903d-b8644db0e456?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A42Z&ske=2025-02-27T06%3A07%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:21.9256392Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -808,17 +852,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:23 GMT + - Wed, 26 Feb 2025 23:08:22 GMT mise-correlation-id: - - a42b5adf-7ca4-42f2-987e-549ec715721b + - f8f7374b-b021-4ae9-8cfd-43b7f4273d37 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215523Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002pey + - 20250226T230821Z-167c755789dkxplchC1SG1rzhw0000000200000000009qmp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -836,13 +880,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"665f9fc1-b019-42c8-b528-f9c5f22d361d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ade8b09a-3a40-4402-9753-2a5b7f5b946b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"913e9350-6f61-4744-bc41-9e73e049f6da":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"25e7a24b-3a53-4f60-bedb-b0d9de88d9e0":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"43d9285f-987e-40ef-b6f1-512c0b028c2d":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"115c69cc-c07a-4968-ae23-d67b3e488ad2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/f2078ec5-07df-4ea2-9a57-d1a293d066e0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A51Z&ske=2025-02-25T04%3A54%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:55:23.7059702Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/d1c8c8dd-abca-4946-921f-412743151d02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A51Z&ske=2025-02-25T04%3A54%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:55:23.7063363Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/4c03bb6c-f0e7-4c4b-811e-4efa8f4bd512?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A51Z&ske=2025-02-25T04%3A54%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:23.7064318Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:54:47.541Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:23.033Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"190eeef4-5dc4-4f4e-871a-1bc6a578444b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2b348e6-52e7-420d-bf19-f5815223188f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7622a493-676e-40f1-8984-af70df839a77":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"ffe853e8-9f90-4e19-961a-9dd1ee088737":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a07e9e07-fa94-439a-8fca-285e3028805f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c1b14f4d-9ebf-4ade-aa0d-76c8850fe609":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/79570cca-0329-44f8-903d-b8644db0e456?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:22.1838351Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/bb0e9b52-cb9d-4fe8-b84e-90138a6856b3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A22Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:22.1842012Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/d68c4be3-a4cb-45f9-b6b3-90c25b21b48b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:22.1843705Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:07:41.41Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:18.485Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -852,17 +896,17 @@ interactions: connection: - keep-alive content-length: - - '3378' + - '3373' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:23 GMT + - Wed, 26 Feb 2025 23:08:22 GMT mise-correlation-id: - - 09cfe53a-fbd9-43f5-a4a6-c138bfa97608 + - b866a5e6-8e82-4ab4-8428-79c0598ef3b6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215523Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002pf5 + - 20250226T230822Z-167c755789dkxplchC1SG1rzhw0000000200000000009qn9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -885,7 +929,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:54:12.8750203Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:54:12.8750203Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:05.3383618Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:05.3383618Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -894,9 +938,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:24 GMT + - Wed, 26 Feb 2025 23:08:22 GMT etag: - - '"4f01f0ba-0000-0200-0000-67bcea9c0000"' + - '"8f01735f-0000-0200-0000-67bf9eb00000"' expires: - '-1' pragma: @@ -912,7 +956,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 43FA64584D08415393A20EA25E5BA17A Ref B: MAA201060516019 Ref C: 2025-02-24T21:55:24Z' + - 'Ref A: AA85349FF097427495F881F2FEAC339A Ref B: MAA201060513011 Ref C: 2025-02-26T23:08:22Z' status: code: 200 message: OK @@ -926,13 +970,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"665f9fc1-b019-42c8-b528-f9c5f22d361d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ade8b09a-3a40-4402-9753-2a5b7f5b946b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"913e9350-6f61-4744-bc41-9e73e049f6da":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"25e7a24b-3a53-4f60-bedb-b0d9de88d9e0":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"43d9285f-987e-40ef-b6f1-512c0b028c2d":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"115c69cc-c07a-4968-ae23-d67b3e488ad2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/f2078ec5-07df-4ea2-9a57-d1a293d066e0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A51Z&ske=2025-02-25T04%3A54%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:55:25.2008068Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/d1c8c8dd-abca-4946-921f-412743151d02?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A51Z&ske=2025-02-25T04%3A54%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A25Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:55:25.2010948Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://dyufya0c1n9a2dlyqyce3uc8.z37.blob.storage.azure.net/5c6632d9-133a-4935-a12c-7a41d3c8c48e/4c03bb6c-f0e7-4c4b-811e-4efa8f4bd512?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A51Z&ske=2025-02-25T04%3A54%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:25.201169Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:54:47.541Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:23.033Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"190eeef4-5dc4-4f4e-871a-1bc6a578444b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2b348e6-52e7-420d-bf19-f5815223188f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7622a493-676e-40f1-8984-af70df839a77":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"ffe853e8-9f90-4e19-961a-9dd1ee088737":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a07e9e07-fa94-439a-8fca-285e3028805f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c1b14f4d-9ebf-4ade-aa0d-76c8850fe609":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/79570cca-0329-44f8-903d-b8644db0e456?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A23Z&ske=2025-02-27T06%3A08%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:23.658722Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/bb0e9b52-cb9d-4fe8-b84e-90138a6856b3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A23Z&ske=2025-02-27T06%3A08%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:23.7023531Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://urtcehdhltye6yfrcwyt12qj.z42.blob.storage.azure.net/5f073beb-d61f-4893-9728-0aac7549fbb9/d68c4be3-a4cb-45f9-b6b3-90c25b21b48b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A23Z&ske=2025-02-27T06%3A08%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:23.7024626Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:07:41.41Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:18.485Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -942,17 +986,17 @@ interactions: connection: - keep-alive content-length: - - '3375' + - '3382' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:25 GMT + - Wed, 26 Feb 2025 23:08:23 GMT mise-correlation-id: - - dc4eabf5-26d9-4a8c-92b9-b9f5a1ef9904 + - 84c58583-237e-4589-8de2-d4f5bd6ff980 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215524Z-r17775d4f98lnpwthC1SG1g1zn000000094g000000002suv + - 20250226T230823Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004mb8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -975,7 +1019,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:54:12.8750203Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:54:12.8750203Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:05.3383618Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:05.3383618Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -984,9 +1028,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:25 GMT + - Wed, 26 Feb 2025 23:08:24 GMT etag: - - '"4f01f0ba-0000-0200-0000-67bcea9c0000"' + - '"8f01735f-0000-0200-0000-67bf9eb00000"' expires: - '-1' pragma: @@ -1002,7 +1046,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4D23E398920F4BC0ADAA3AC8C8176564 Ref B: MAA201060514031 Ref C: 2025-02-24T21:55:25Z' + - 'Ref A: C1661143243344BA804AE7E90809CB02 Ref B: MAA201060515035 Ref C: 2025-02-26T23:08:24Z' status: code: 200 message: OK @@ -1018,9 +1062,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview response: body: string: '' @@ -1031,13 +1075,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:55:27 GMT + - Wed, 26 Feb 2025 23:08:26 GMT mise-correlation-id: - - 4c9ca421-000c-4c34-aee0-1686c2404eaa + - 5485a574-bbac-446e-a1d0-838369072529 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215526Z-r17775d4f98drzbdhC1SG103a000000008e00000000008y1 + - 20250226T230825Z-167c755789dpktj6hC1SG1nr68000000023g00000000f05e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1060,7 +1104,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:54:12.8750203Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:54:12.8750203Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:05.3383618Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:05.3383618Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1069,9 +1113,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:26 GMT + - Wed, 26 Feb 2025 23:08:26 GMT etag: - - '"4f01f0ba-0000-0200-0000-67bcea9c0000"' + - '"8f01735f-0000-0200-0000-67bf9eb00000"' expires: - '-1' pragma: @@ -1087,7 +1131,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 59CB759786E24BB3A0BC75254E37F8D5 Ref B: MAA201060514027 Ref C: 2025-02-24T21:55:27Z' + - 'Ref A: 26F61A42E6BB403C8763BC39A1F90AE1 Ref B: MAA201060513035 Ref C: 2025-02-26T23:08:26Z' status: code: 200 message: OK @@ -1101,9 +1145,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -1120,13 +1164,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:28 GMT + - Wed, 26 Feb 2025 23:08:27 GMT mise-correlation-id: - - f8dc0ac4-fc92-4e2e-8500-1c67f0e2a81d + - 6811a03a-957d-48ba-937a-837942dfdcf7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215527Z-r17775d4f98v6wd6hC1SG1230n00000008q0000000006qy0 + - 20250226T230826Z-r17775d4f98mc5fbhC1SG1vp2s0000001a6g000000000npn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1149,7 +1193,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:54:12.8750203Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:54:12.8750203Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:05.3383618Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:05.3383618Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1158,9 +1202,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:28 GMT + - Wed, 26 Feb 2025 23:08:28 GMT etag: - - '"4f01f0ba-0000-0200-0000-67bcea9c0000"' + - '"8f01735f-0000-0200-0000-67bf9eb00000"' expires: - '-1' pragma: @@ -1174,9 +1218,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: 9616B4B4B8454991B93B82867BD5490D Ref B: MAA201060514023 Ref C: 2025-02-24T21:55:28Z' + - 'Ref A: F80E9EDBF2574299BE8313EE101B66E1 Ref B: MAA201060515023 Ref C: 2025-02-26T23:08:27Z' status: code: 200 message: OK @@ -1190,9 +1234,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://57bf8189-9d96-4548-85d8-d3efc6272a00.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://2de8f238-1db8-4bd0-8bee-bcb6faaf851a.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -1209,13 +1253,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:29 GMT + - Wed, 26 Feb 2025 23:08:29 GMT mise-correlation-id: - - 9612f1ff-915d-4189-8ec7-000bd8309330 + - d3f4abc6-daa6-4007-a0f7-4eb69931f2de strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215529Z-r17775d4f98kr5knhC1SG1nvrw00000007w0000000001qq5 + - 20250226T230828Z-r17775d4f98k7mk2hC1SG1n7700000000xyg000000006wnw x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_download_files.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_download_files.yaml index 24e84ec7020..08ee0cfd191 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_download_files.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_download_files.yaml @@ -14,7 +14,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4919024Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4919024Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:06.9754224Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:06.9754224Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -23,9 +23,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:18 GMT + - Wed, 26 Feb 2025 23:07:41 GMT etag: - - '"4f014fb3-0000-0200-0000-67bcea410000"' + - '"8f016c5f-0000-0200-0000-67bf9eb00000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1EEC3D1AE0444A96AF05246BC44320CC Ref B: MAA201060513019 Ref C: 2025-02-24T21:53:18Z' + - 'Ref A: 10708753A75E4D698575E11EF40E6904 Ref B: MAA201060514021 Ref C: 2025-02-26T23:07:41Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -71,15 +71,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:53:20 GMT + - Wed, 26 Feb 2025 23:07:43 GMT mise-correlation-id: - - 7c05171a-67c2-429b-95c4-f9c96c68ed0c + - d85ef968-c864-4286-9a66-47604bac3368 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215319Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a6w7 + - 20250226T230742Z-167c755789dw9d62hC1SG1x2v800000001sg000000003k3t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -95,17 +95,18 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"35259a29-9d25-45fb-8a77-2ca6bffe37ce": + true}, "passFailCriteria": {"passFailMetrics": {"7e6c2135-8254-4b55-9e2d-f4d48c0ea89a": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "90a2ff26-5f2a-4d62-8618-3bceb6d6f3c7": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "d9f432d9-c05d-4b00-8737-6039ec991e53": + "78"}, "bc0e9d8d-20de-458d-b1be-5e54819fc4e1": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "225790df-237b-4f60-a344-af5962172168": {"aggregate": "p75", "clientMetric": "response_time_ms", "condition": ">", "value": - "380"}, "db967abf-79de-42e5-a945-0bbb9f806da3": {"aggregate": "p99", "clientMetric": - "response_time_ms", "condition": ">", "value": "520"}, "5278d0ff-f56d-4907-aaa1-876eaf55e8c8": + "380"}, "f32d2790-ebf2-46cc-8e84-716663c214e4": {"aggregate": "p99", "clientMetric": + "response_time_ms", "condition": ">", "value": "520"}, "b8d622f2-60da-4485-a57a-a5ae28baccd3": {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", - "value": "540"}, "42e1d566-5fd5-4c91-8afb-8ac50de8e98a": {"aggregate": "avg", + "value": "540"}, "55f02521-57c1-4009-a4d4-0f07b3f5617a": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,17 +115,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"35259a29-9d25-45fb-8a77-2ca6bffe37ce":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"90a2ff26-5f2a-4d62-8618-3bceb6d6f3c7":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d9f432d9-c05d-4b00-8737-6039ec991e53":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"db967abf-79de-42e5-a945-0bbb9f806da3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5278d0ff-f56d-4907-aaa1-876eaf55e8c8":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"42e1d566-5fd5-4c91-8afb-8ac50de8e98a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:20.87Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:53:20.87Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"7e6c2135-8254-4b55-9e2d-f4d48c0ea89a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bc0e9d8d-20de-458d-b1be-5e54819fc4e1":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"225790df-237b-4f60-a344-af5962172168":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f32d2790-ebf2-46cc-8e84-716663c214e4":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"b8d622f2-60da-4485-a57a-a5ae28baccd3":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"55f02521-57c1-4009-a4d4-0f07b3f5617a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:07:43.837Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:07:43.837Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -132,19 +133,19 @@ interactions: connection: - keep-alive content-length: - - '1647' + - '1649' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:21 GMT + - Wed, 26 Feb 2025 23:07:43 GMT location: - - https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview + - https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview mise-correlation-id: - - 11eff828-c4bb-4973-ba7d-f13b53a07ffc + - a986ac7e-872d-41a8-8ec4-760ef0c631fe strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215320Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a6x5 + - 20250226T230743Z-167c755789dw9d62hC1SG1x2v800000001sg000000003k6z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -162,9 +163,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-12-01-preview + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -181,13 +182,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:22 GMT + - Wed, 26 Feb 2025 23:07:44 GMT mise-correlation-id: - - db889fca-68ea-4672-b6c7-326f368dcd84 + - 31cdcbdf-0ca5-4c18-ad69-edcd4b9995ae strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215321Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a6yy + - 20250226T230743Z-167c755789dw9d62hC1SG1x2v800000001sg000000003k8n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -212,14 +213,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/d8db6de3-9911-4799-8d4b-0012da804c54?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A23Z&ske=2025-02-25T04%3A53%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A24Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:03:24.1564518Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/1984667b-028f-44ae-84fa-7b7ad4959bf9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A44Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:17:44.6290043Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -227,19 +228,19 @@ interactions: connection: - keep-alive content-length: - - '573' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:24 GMT + - Wed, 26 Feb 2025 23:07:44 GMT location: - - https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - c573fe42-40b3-4cd5-93aa-335b947ff472 + - 9a9e6f4a-3b75-400d-ad7c-a92da5986b1c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215322Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a6zb + - 20250226T230744Z-167c755789dw9d62hC1SG1x2v800000001sg000000003k97 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -257,12 +258,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/d8db6de3-9911-4799-8d4b-0012da804c54?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A24Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:03:24.4401792Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/1984667b-028f-44ae-84fa-7b7ad4959bf9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A44Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:17:44.9243198Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -272,17 +273,17 @@ interactions: connection: - keep-alive content-length: - - '575' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:24 GMT + - Wed, 26 Feb 2025 23:07:45 GMT mise-correlation-id: - - 03b2dedc-7098-4079-9ed6-ae67050188bd + - 8a4fbb29-57d1-47d7-ae24-9680d1472921 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215324Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a737 + - 20250226T230744Z-167c755789dw9d62hC1SG1x2v800000001sg000000003kag x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -311,14 +312,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/d1cff6e3-7a37-4954-a7fe-a0a15a3bc6ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:03:24.9011283Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/165703e9-eaf5-4d71-9f80-b5012a623f95?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A45Z&ske=2025-02-27T06%3A07%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:17:45.3851698Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -326,19 +327,19 @@ interactions: connection: - keep-alive content-length: - - '563' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:25 GMT + - Wed, 26 Feb 2025 23:07:45 GMT location: - - https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 61665d3c-e59d-4435-b11b-f620978dd9ca + - 971bd55f-14dd-47b9-ac65-740fc3f99076 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215324Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a73u + - 20250226T230745Z-167c755789dw9d62hC1SG1x2v800000001sg000000003kb9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -356,12 +357,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/d1cff6e3-7a37-4954-a7fe-a0a15a3bc6ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:03:25.1766791Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/165703e9-eaf5-4d71-9f80-b5012a623f95?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:17:45.6391385Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -371,17 +372,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:25 GMT + - Wed, 26 Feb 2025 23:07:45 GMT mise-correlation-id: - - a5cd5b8c-674a-414e-8b0e-93b09fbecfca + - db4fdd22-eb55-4ba3-be3b-68c44b82e003 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215325Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a74k + - 20250226T230745Z-167c755789dw9d62hC1SG1x2v800000001sg000000003kcb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -490,14 +491,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/8c789c9f-2182-4db6-a1ca-8b9f2cc87d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:25.9453419Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/4b349ee2-a393-4ee7-b652-53211c42fc04?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:17:46.0823978Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -505,19 +506,19 @@ interactions: connection: - keep-alive content-length: - - '567' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:26 GMT + - Wed, 26 Feb 2025 23:07:46 GMT location: - - https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 4d3a4661-914b-42fd-93bb-534ef840aed0 + - 5e2a99a2-019b-4593-a95c-6a0d7ea1b252 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215325Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a752 + - 20250226T230745Z-167c755789dw9d62hC1SG1x2v800000001sg000000003kd5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -535,55 +536,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/8c789c9f-2182-4db6-a1ca-8b9f2cc87d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A26Z&ske=2025-02-25T04%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:26.2307028Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '561' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 21:53:26 GMT - mise-correlation-id: - - 3cc67f70-7eff-4111-bd5d-88f24c56eaf0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T215326Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a76r - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/8c789c9f-2182-4db6-a1ca-8b9f2cc87d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:31.4892341Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/4b349ee2-a393-4ee7-b652-53211c42fc04?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:17:46.3411979Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -593,17 +551,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:31 GMT + - Wed, 26 Feb 2025 23:07:46 GMT mise-correlation-id: - - e60aacb8-8a19-472f-a1e5-70dad385d350 + - e92313e5-6b62-4727-8f4d-a1fe32b189a7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215331Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a7ev + - 20250226T230746Z-167c755789dw9d62hC1SG1x2v800000001sg000000003ke2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -621,12 +579,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/8c789c9f-2182-4db6-a1ca-8b9f2cc87d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A25Z&ske=2025-02-25T04%3A53%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:36.7375986Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/4b349ee2-a393-4ee7-b652-53211c42fc04?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A51Z&ske=2025-02-27T06%3A07%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:17:52.2875823Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -636,17 +594,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:36 GMT + - Wed, 26 Feb 2025 23:07:52 GMT mise-correlation-id: - - ede22752-d0b6-4768-b2b0-aa71e1519f01 + - dfb51ab6-b33c-47df-a275-3d50b3da7525 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215336Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a7t1 + - 20250226T230751Z-167c755789dw9d62hC1SG1x2v800000001sg000000003ky7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -664,12 +622,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/8c789c9f-2182-4db6-a1ca-8b9f2cc87d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A23Z&ske=2025-02-25T04%3A53%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:41.9933239Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/4b349ee2-a393-4ee7-b652-53211c42fc04?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:17:58.1217269Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -683,13 +641,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:42 GMT + - Wed, 26 Feb 2025 23:07:58 GMT mise-correlation-id: - - 8714a42b-91f0-4c81-b260-2b18c7c2365d + - 257985d6-1b97-425e-93da-a36ef9b30a3e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215341Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a827 + - 20250226T230757Z-167c755789dw9d62hC1SG1x2v800000001sg000000003mg5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -707,12 +665,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/8c789c9f-2182-4db6-a1ca-8b9f2cc87d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:47.2428227Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/4b349ee2-a393-4ee7-b652-53211c42fc04?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A03Z&ske=2025-02-27T06%3A08%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:03.4312701Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -722,17 +680,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:47 GMT + - Wed, 26 Feb 2025 23:08:03 GMT mise-correlation-id: - - d5663405-42f4-4e62-9a0f-c3030a56f051 + - a625da8d-98d9-4cdd-9a77-9a0d5c3d9e93 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215347Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a8aa + - 20250226T230803Z-167c755789dw9d62hC1SG1x2v800000001sg000000003n1z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -750,12 +708,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/8c789c9f-2182-4db6-a1ca-8b9f2cc87d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:52.4996252Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/4b349ee2-a393-4ee7-b652-53211c42fc04?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A08Z&ske=2025-02-27T06%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:08.7512987Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -765,17 +723,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:52 GMT + - Wed, 26 Feb 2025 23:08:08 GMT mise-correlation-id: - - dc757608-d23e-4399-a2d1-5a81c43937bf + - a7a25e49-3de3-4a44-84b8-ab531084cfe9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215352Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a8q7 + - 20250226T230808Z-167c755789dw9d62hC1SG1x2v800000001sg000000003nk0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -793,12 +751,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/8c789c9f-2182-4db6-a1ca-8b9f2cc87d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:57.7487198Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/4b349ee2-a393-4ee7-b652-53211c42fc04?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:14.0106517Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -808,17 +766,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:57 GMT + - Wed, 26 Feb 2025 23:08:14 GMT mise-correlation-id: - - 9f9ef2cc-c275-4a7d-8346-fd04d7c29859 + - cc5cd6b4-035c-4c88-9054-fd132648394a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215357Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a90p + - 20250226T230813Z-167c755789dw9d62hC1SG1x2v800000001sg000000003p0z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -836,12 +794,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/8c789c9f-2182-4db6-a1ca-8b9f2cc87d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A26Z&ske=2025-02-25T04%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:02.9999285Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/4b349ee2-a393-4ee7-b652-53211c42fc04?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A44Z&ske=2025-02-27T06%3A07%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:19.261579Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -851,17 +809,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:03 GMT + - Wed, 26 Feb 2025 23:08:19 GMT mise-correlation-id: - - 94522b3f-1bec-4229-bebf-d0006901f375 + - 033c6850-e500-4f1b-80df-4056e9ba7515 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215402Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a9bs + - 20250226T230819Z-167c755789dw9d62hC1SG1x2v800000001sg000000003pfg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -879,13 +837,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"35259a29-9d25-45fb-8a77-2ca6bffe37ce":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"90a2ff26-5f2a-4d62-8618-3bceb6d6f3c7":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d9f432d9-c05d-4b00-8737-6039ec991e53":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"db967abf-79de-42e5-a945-0bbb9f806da3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5278d0ff-f56d-4907-aaa1-876eaf55e8c8":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"42e1d566-5fd5-4c91-8afb-8ac50de8e98a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/8c789c9f-2182-4db6-a1ca-8b9f2cc87d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A23Z&ske=2025-02-25T04%3A53%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:54:03.2562538Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/d8db6de3-9911-4799-8d4b-0012da804c54?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A23Z&ske=2025-02-25T04%3A53%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A03Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:54:03.2566992Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/d1cff6e3-7a37-4954-a7fe-a0a15a3bc6ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A23Z&ske=2025-02-25T04%3A53%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:54:03.2568764Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:20.87Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:53:58.524Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"7e6c2135-8254-4b55-9e2d-f4d48c0ea89a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bc0e9d8d-20de-458d-b1be-5e54819fc4e1":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"225790df-237b-4f60-a344-af5962172168":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f32d2790-ebf2-46cc-8e84-716663c214e4":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"b8d622f2-60da-4485-a57a-a5ae28baccd3":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"55f02521-57c1-4009-a4d4-0f07b3f5617a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/4b349ee2-a393-4ee7-b652-53211c42fc04?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A51Z&ske=2025-02-27T06%3A07%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:19.5124814Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/1984667b-028f-44ae-84fa-7b7ad4959bf9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A51Z&ske=2025-02-27T06%3A07%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A19Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:19.5127592Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/165703e9-eaf5-4d71-9f80-b5012a623f95?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A51Z&ske=2025-02-27T06%3A07%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:19.5128586Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:07:43.837Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:17.766Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -895,17 +853,17 @@ interactions: connection: - keep-alive content-length: - - '3373' + - '3376' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:03 GMT + - Wed, 26 Feb 2025 23:08:19 GMT mise-correlation-id: - - b389aab7-3c06-47a9-9551-287542961d98 + - 163350c4-6551-44ee-bddf-a9ccebe488de strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215403Z-r17775d4f98kr5knhC1SG1nvrw00000007pg00000000a9cm + - 20250226T230819Z-167c755789dw9d62hC1SG1x2v800000001sg000000003pge x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -928,7 +886,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4919024Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4919024Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:06.9754224Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:06.9754224Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -937,9 +895,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:03 GMT + - Wed, 26 Feb 2025 23:08:20 GMT etag: - - '"4f014fb3-0000-0200-0000-67bcea410000"' + - '"8f016c5f-0000-0200-0000-67bf9eb00000"' expires: - '-1' pragma: @@ -955,7 +913,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 547684016C6B4F24AB30A24D08612513 Ref B: MAA201060516019 Ref C: 2025-02-24T21:54:03Z' + - 'Ref A: C44C4A016AC6407E83BE88C5DDAF011D Ref B: MAA201060513047 Ref C: 2025-02-26T23:08:19Z' status: code: 200 message: OK @@ -969,13 +927,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"35259a29-9d25-45fb-8a77-2ca6bffe37ce":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"90a2ff26-5f2a-4d62-8618-3bceb6d6f3c7":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d9f432d9-c05d-4b00-8737-6039ec991e53":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"db967abf-79de-42e5-a945-0bbb9f806da3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5278d0ff-f56d-4907-aaa1-876eaf55e8c8":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"42e1d566-5fd5-4c91-8afb-8ac50de8e98a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/8c789c9f-2182-4db6-a1ca-8b9f2cc87d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A23Z&ske=2025-02-25T04%3A53%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:54:04.7375871Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/d8db6de3-9911-4799-8d4b-0012da804c54?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A23Z&ske=2025-02-25T04%3A53%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A04Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:54:04.7379932Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/d1cff6e3-7a37-4954-a7fe-a0a15a3bc6ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A23Z&ske=2025-02-25T04%3A53%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:54:04.7381468Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:20.87Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:53:58.524Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"7e6c2135-8254-4b55-9e2d-f4d48c0ea89a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bc0e9d8d-20de-458d-b1be-5e54819fc4e1":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"225790df-237b-4f60-a344-af5962172168":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f32d2790-ebf2-46cc-8e84-716663c214e4":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"b8d622f2-60da-4485-a57a-a5ae28baccd3":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"55f02521-57c1-4009-a4d4-0f07b3f5617a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/4b349ee2-a393-4ee7-b652-53211c42fc04?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A08Z&ske=2025-02-27T06%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:21.5148866Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/1984667b-028f-44ae-84fa-7b7ad4959bf9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A08Z&ske=2025-02-27T06%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A21Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:21.5153817Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/165703e9-eaf5-4d71-9f80-b5012a623f95?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A08Z&ske=2025-02-27T06%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:21.5155887Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:07:43.837Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:17.766Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -985,17 +943,17 @@ interactions: connection: - keep-alive content-length: - - '3389' + - '3382' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:04 GMT + - Wed, 26 Feb 2025 23:08:21 GMT mise-correlation-id: - - 882e5f86-5dc2-4f2a-9c87-a6e1ac126ee6 + - 9585aaa9-0b84-4842-b28b-e74b1941cab1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215404Z-r17775d4f98p9dsnhC1SG1tym00000000e5000000000027r + - 20250226T230820Z-167c755789dh5d2xhC1SG1c6dc0000000190000000007vf1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1018,7 +976,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4919024Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4919024Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:06.9754224Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:06.9754224Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1027,9 +985,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:05 GMT + - Wed, 26 Feb 2025 23:08:22 GMT etag: - - '"4f014fb3-0000-0200-0000-67bcea410000"' + - '"8f016c5f-0000-0200-0000-67bf9eb00000"' expires: - '-1' pragma: @@ -1043,9 +1001,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 72433EDE94CC4CE78666E2A417D29CCB Ref B: MAA201060514039 Ref C: 2025-02-24T21:54:05Z' + - 'Ref A: 0DB5EB5C616C403E91933EE57448C895 Ref B: MAA201060515029 Ref C: 2025-02-26T23:08:21Z' status: code: 200 message: OK @@ -1059,12 +1017,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://19c0c34f-c98b-41a0-a23c-7b8ee02971c6.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-12-01-preview + uri: https://c57a2edd-6239-489c-92e6-0043a9e54a33.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/8c789c9f-2182-4db6-a1ca-8b9f2cc87d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:05.7837815Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/d8db6de3-9911-4799-8d4b-0012da804c54?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:04:05.7839173Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/d1cff6e3-7a37-4954-a7fe-a0a15a3bc6ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:05.7840723Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/4b349ee2-a393-4ee7-b652-53211c42fc04?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A51Z&ske=2025-02-27T06%3A07%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:23.0721517Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/1984667b-028f-44ae-84fa-7b7ad4959bf9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A51Z&ske=2025-02-27T06%3A07%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:23.072242Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/165703e9-eaf5-4d71-9f80-b5012a623f95?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A51Z&ske=2025-02-27T06%3A07%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:23.072338Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1078,13 +1036,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:05 GMT + - Wed, 26 Feb 2025 23:08:23 GMT mise-correlation-id: - - 4c82f158-cf02-44b3-a573-a894bd6f98b8 + - fa1129fd-c699-43b0-a721-4d2af3095baa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215405Z-r17775d4f98t9jlfhC1SG10apg000000082g00000000b2yp + - 20250226T230822Z-167c755789dpktj6hC1SG1nr68000000024g00000000cphp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1104,7 +1062,7 @@ interactions: User-Agent: - python-requests/2.32.3 method: GET - uri: https://i3b32lnch18l9jcy7iw4ceyt.z41.blob.storage.azure.net/89bc485a-679a-470c-a2bb-9f0ea7f20cbc/8c789c9f-2182-4db6-a1ca-8b9f2cc87d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A24Z&ske=2025-02-25T04%3A53%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A05Z&sr=b&sp=r&sig=*** + uri: https://n237s0btukdf8v1warnfvnex.z48.blob.storage.azure.net/19d088c2-4a02-4e5b-81b5-d5cdc8f0bd00/4b349ee2-a393-4ee7-b652-53211c42fc04?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A51Z&ske=2025-02-27T06%3A07%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A23Z&sr=b&sp=r&sig=*** response: body: string: "\n", "value": - "78"}, "b90f03a9-9838-4c33-ba0f-c95df5d89f82": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "30ce499f-e074-4257-87f4-7dcc357e150f": + "78"}, "fd19a384-a571-448b-97aa-a8e64b387690": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "671faa7d-e2b2-40f7-bbbb-2f5ae0bd1882": {"aggregate": "p75", "clientMetric": "response_time_ms", "condition": ">", "value": - "380"}, "13964421-9561-4d0e-9ec1-ba4b34b9d954": {"aggregate": "p99", "clientMetric": - "response_time_ms", "condition": ">", "value": "520"}, "4db7c6be-3a96-4705-8d31-6605b8c56aaa": + "380"}, "b382e40f-a755-4d0e-a64c-fa3b9762d48a": {"aggregate": "p99", "clientMetric": + "response_time_ms", "condition": ">", "value": "520"}, "de3fbfef-579a-47e1-9d99-de95ef73acb4": {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", - "value": "540"}, "a60c7df5-c655-404f-8ced-746eb4c3f7d9": {"aggregate": "avg", + "value": "540"}, "fb9eb2fd-8350-41f8-978f-0164ed4210c5": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,17 +115,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0537697d-0a67-4dc2-961e-4a5fd482d878":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b90f03a9-9838-4c33-ba0f-c95df5d89f82":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"30ce499f-e074-4257-87f4-7dcc357e150f":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"13964421-9561-4d0e-9ec1-ba4b34b9d954":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"4db7c6be-3a96-4705-8d31-6605b8c56aaa":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"a60c7df5-c655-404f-8ced-746eb4c3f7d9":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"file-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:55:14.274Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:14.274Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"33052b49-3f2b-4a56-8f74-91fb0686949b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fd19a384-a571-448b-97aa-a8e64b387690":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"671faa7d-e2b2-40f7-bbbb-2f5ae0bd1882":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"b382e40f-a755-4d0e-a64c-fa3b9762d48a":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"de3fbfef-579a-47e1-9d99-de95ef73acb4":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"fb9eb2fd-8350-41f8-978f-0164ed4210c5":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"file-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:07:39.01Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:07:39.01Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -132,19 +133,19 @@ interactions: connection: - keep-alive content-length: - - '1645' + - '1643' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:14 GMT + - Wed, 26 Feb 2025 23:07:39 GMT location: - - https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-12-01-preview + - https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-12-01-preview mise-correlation-id: - - 11ab0a03-65ad-40cb-8ea9-fa0b5de5f080 + - 70d9da2f-79a0-42f6-ae81-6864fb4c37ac strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215513Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002pu1 + - 20250226T230738Z-167c755789drsd6jhC1SG13zv4000000011000000000bpny x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -162,9 +163,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -181,13 +182,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:14 GMT + - Wed, 26 Feb 2025 23:07:39 GMT mise-correlation-id: - - 9ff01b36-6bab-43da-8ce9-af3429f7bb70 + - 14c65b72-7f77-4b97-ae53-cb45889112e7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215514Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002pun + - 20250226T230739Z-167c755789drsd6jhC1SG13zv4000000011000000000bpqf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -212,14 +213,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/f34b93ce-16d4-4172-8ce7-1390976bdfab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:05:15.0802264Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/7541c034-b872-4837-9914-dfccbbef7d9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A39Z&ske=2025-02-27T06%3A07%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A39Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:17:39.7894237Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -231,15 +232,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:15 GMT + - Wed, 26 Feb 2025 23:07:39 GMT location: - - https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - d6f32974-bfd1-4123-a6fd-5b2794d83f52 + - 8fb10f9f-0114-416f-998a-dd8bb90b1e68 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215514Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002pv1 + - 20250226T230739Z-167c755789drsd6jhC1SG13zv4000000011000000000bpr8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -257,12 +258,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/f34b93ce-16d4-4172-8ce7-1390976bdfab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:05:15.3713074Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/7541c034-b872-4837-9914-dfccbbef7d9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A40Z&ske=2025-02-27T06%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A40Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:17:40.0840253Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -276,13 +277,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:15 GMT + - Wed, 26 Feb 2025 23:07:40 GMT mise-correlation-id: - - fd922a82-dbd3-4f6a-8148-6211178219ef + - 7066f035-94ec-445a-8422-ce5ce4269e6c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215515Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002pvv + - 20250226T230739Z-167c755789drsd6jhC1SG13zv4000000011000000000bpt9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -311,14 +312,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6914ffc0-60f9-4c7e-9d1b-63245e9a79c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:05:15.7688772Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/70c05eb6-76cf-4ae6-bb6c-1e183dcd89d8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A40Z&ske=2025-02-27T06%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:17:41.4020184Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -326,19 +327,19 @@ interactions: connection: - keep-alive content-length: - - '567' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:15 GMT + - Wed, 26 Feb 2025 23:07:41 GMT location: - - https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - c387bf65-a502-4424-8d64-a96e47a50eb5 + - fa74d200-b7c3-48c9-af70-4f047f43f0af strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215515Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002pw8 + - 20250226T230740Z-167c755789drsd6jhC1SG13zv4000000011000000000bpup x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -356,12 +357,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6914ffc0-60f9-4c7e-9d1b-63245e9a79c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A16Z&ske=2025-02-25T04%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:05:16.0493673Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/70c05eb6-76cf-4ae6-bb6c-1e183dcd89d8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A41Z&ske=2025-02-27T06%3A07%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:17:41.682904Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -371,17 +372,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:16 GMT + - Wed, 26 Feb 2025 23:07:41 GMT mise-correlation-id: - - faf11bcf-9ff6-448b-9f8f-b01370656f66 + - 2df07db3-d0a5-4ef7-ac2b-7c38ea64a0e7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215515Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002pwx + - 20250226T230741Z-167c755789drsd6jhC1SG13zv4000000011000000000bq48 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -490,14 +491,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/fe6c71ed-461b-4b16-81e7-41d6f7282b9a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:16.5332814Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6871be5f-920d-4495-8ff3-ce55384460f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A41Z&ske=2025-02-27T06%3A07%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:17:42.2185553Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -505,19 +506,19 @@ interactions: connection: - keep-alive content-length: - - '563' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:16 GMT + - Wed, 26 Feb 2025 23:07:42 GMT location: - - https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - e72a3c20-35de-49f1-a0e7-a0738c6224b3 + - cf88e771-2c31-4fd3-96f8-7a86ace483b8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215516Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002pxb + - 20250226T230741Z-167c755789drsd6jhC1SG13zv4000000011000000000bq6v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -535,12 +536,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/fe6c71ed-461b-4b16-81e7-41d6f7282b9a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:16.7832786Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6871be5f-920d-4495-8ff3-ce55384460f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A42Z&ske=2025-02-27T06%3A07%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:17:43.7313086Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -550,17 +551,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:16 GMT + - Wed, 26 Feb 2025 23:07:43 GMT mise-correlation-id: - - 790e12fe-ec16-42d5-8913-9c3b829a90a4 + - 96641289-3fea-4763-af23-4473cb30dc9e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215516Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002pxy + - 20250226T230742Z-167c755789drsd6jhC1SG13zv4000000011000000000bqa7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -578,12 +579,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/fe6c71ed-461b-4b16-81e7-41d6f7282b9a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:22.2669111Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6871be5f-920d-4495-8ff3-ce55384460f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A40Z&ske=2025-02-27T06%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:17:48.9873557Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -593,17 +594,17 @@ interactions: connection: - keep-alive content-length: - - '567' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:22 GMT + - Wed, 26 Feb 2025 23:07:49 GMT mise-correlation-id: - - 35424a9c-5c40-45ad-999a-78f11d4a0e0c + - c2761526-b139-4e6b-8f6d-33ff253f99a2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215521Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002qa3 + - 20250226T230748Z-167c755789drsd6jhC1SG13zv4000000011000000000br35 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -621,12 +622,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/fe6c71ed-461b-4b16-81e7-41d6f7282b9a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A16Z&ske=2025-02-25T04%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:27.5190154Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6871be5f-920d-4495-8ff3-ce55384460f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A39Z&ske=2025-02-27T06%3A07%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:17:54.2402589Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -640,56 +641,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:27 GMT - mise-correlation-id: - - 5f30fa9c-62bb-4b7f-8dea-6cdc4504067b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T215527Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002qqg - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/fe6c71ed-461b-4b16-81e7-41d6f7282b9a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:32.7690989Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '567' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 21:55:32 GMT + - Wed, 26 Feb 2025 23:07:54 GMT mise-correlation-id: - - e44fbc40-e6b7-4898-818f-3419c11e5869 + - 133cf507-541a-4155-bd63-dcc4f676e596 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215532Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002r2h + - 20250226T230754Z-167c755789drsd6jhC1SG13zv4000000011000000000brnv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -707,12 +665,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/fe6c71ed-461b-4b16-81e7-41d6f7282b9a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A16Z&ske=2025-02-25T04%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:38.0182509Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6871be5f-920d-4495-8ff3-ce55384460f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A39Z&ske=2025-02-27T06%3A07%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A17%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:17:59.49463Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -722,17 +680,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:38 GMT + - Wed, 26 Feb 2025 23:07:59 GMT mise-correlation-id: - - 1cc97d46-396b-47f6-9752-828a944cf97f + - 4ca9472c-c274-4ad5-b918-f8abab24dcd4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215537Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002rbh + - 20250226T230759Z-167c755789drsd6jhC1SG13zv4000000011000000000bs7e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -750,12 +708,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/fe6c71ed-461b-4b16-81e7-41d6f7282b9a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A43Z&ske=2025-02-25T04%3A55%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:43.2993963Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6871be5f-920d-4495-8ff3-ce55384460f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A39Z&ske=2025-02-27T06%3A07%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:04.7740432Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -765,17 +723,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '569' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:43 GMT + - Wed, 26 Feb 2025 23:08:04 GMT mise-correlation-id: - - 90a266da-d1ed-4772-aec9-e102c4610ffe + - 4eb675c1-706e-4f5a-ab75-ed4db5f65552 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215543Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002rk4 + - 20250226T230804Z-167c755789drsd6jhC1SG13zv4000000011000000000bt21 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -793,12 +751,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/fe6c71ed-461b-4b16-81e7-41d6f7282b9a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A48Z&ske=2025-02-25T04%3A55%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:49.55016Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6871be5f-920d-4495-8ff3-ce55384460f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A40Z&ske=2025-02-27T06%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:10.031311Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -808,17 +766,17 @@ interactions: connection: - keep-alive content-length: - - '567' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:49 GMT + - Wed, 26 Feb 2025 23:08:10 GMT mise-correlation-id: - - 9123a150-1e99-45b3-bd0f-688e4b8ad58f + - 8941b4d6-1955-47c5-abed-ee2b9b308e8f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215548Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002rt2 + - 20250226T230809Z-167c755789drsd6jhC1SG13zv4000000011000000000btwm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -836,12 +794,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/fe6c71ed-461b-4b16-81e7-41d6f7282b9a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:54.7997943Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6871be5f-920d-4495-8ff3-ce55384460f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A39Z&ske=2025-02-27T06%3A07%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:15.2974418Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -855,13 +813,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:54 GMT + - Wed, 26 Feb 2025 23:08:15 GMT mise-correlation-id: - - f7ab9e74-71ac-4e96-a923-a1d4c2c6ea21 + - fabf5f04-653c-4f1a-aa89-b6741c8d9576 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215554Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002s32 + - 20250226T230815Z-167c755789drsd6jhC1SG13zv4000000011000000000bue2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -879,13 +837,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0537697d-0a67-4dc2-961e-4a5fd482d878":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b90f03a9-9838-4c33-ba0f-c95df5d89f82":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"30ce499f-e074-4257-87f4-7dcc357e150f":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"13964421-9561-4d0e-9ec1-ba4b34b9d954":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"4db7c6be-3a96-4705-8d31-6605b8c56aaa":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"a60c7df5-c655-404f-8ced-746eb4c3f7d9":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/fe6c71ed-461b-4b16-81e7-41d6f7282b9a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A48Z&ske=2025-02-25T04%3A55%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:55:55.0479064Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/f34b93ce-16d4-4172-8ce7-1390976bdfab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A48Z&ske=2025-02-25T04%3A55%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:55:55.0484244Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6914ffc0-60f9-4c7e-9d1b-63245e9a79c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A48Z&ske=2025-02-25T04%3A55%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:55.0485783Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"file-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:55:14.274Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:50.501Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"33052b49-3f2b-4a56-8f74-91fb0686949b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fd19a384-a571-448b-97aa-a8e64b387690":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"671faa7d-e2b2-40f7-bbbb-2f5ae0bd1882":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"b382e40f-a755-4d0e-a64c-fa3b9762d48a":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"de3fbfef-579a-47e1-9d99-de95ef73acb4":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"fb9eb2fd-8350-41f8-978f-0164ed4210c5":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6871be5f-920d-4495-8ff3-ce55384460f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A40Z&ske=2025-02-27T06%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:15.5522386Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/7541c034-b872-4837-9914-dfccbbef7d9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A40Z&ske=2025-02-27T06%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:15.5531704Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/70c05eb6-76cf-4ae6-bb6c-1e183dcd89d8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A40Z&ske=2025-02-27T06%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:15.5535066Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"file-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:07:39.01Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:14.525Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -895,17 +853,17 @@ interactions: connection: - keep-alive content-length: - - '3380' + - '3373' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:55 GMT + - Wed, 26 Feb 2025 23:08:15 GMT mise-correlation-id: - - 5d88afb7-57b5-40ba-bb2f-5139ca1a617b + - 1be15127-e736-4ae5-a9bb-32f2ba600a3b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215554Z-r17775d4f98jjkc6hC1SG1dcu800000008mg000000002s3g + - 20250226T230815Z-167c755789drsd6jhC1SG13zv4000000011000000000buew x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -928,18 +886,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:54:38.590748Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:54:38.590748Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:03.6409609Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:03.6409609Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '653' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:54 GMT + - Wed, 26 Feb 2025 23:08:16 GMT etag: - - '"4f011ebd-0000-0200-0000-67bceab60000"' + - '"8f01645f-0000-0200-0000-67bf9eb00000"' expires: - '-1' pragma: @@ -955,7 +913,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6FB0E668FD804455A752D4C3AB5D186E Ref B: MAA201060514047 Ref C: 2025-02-24T21:55:55Z' + - 'Ref A: 68B8CE0A1F7E4FD49122FF8831490249 Ref B: MAA201060515031 Ref C: 2025-02-26T23:08:15Z' status: code: 200 message: OK @@ -969,13 +927,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"0537697d-0a67-4dc2-961e-4a5fd482d878":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b90f03a9-9838-4c33-ba0f-c95df5d89f82":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"30ce499f-e074-4257-87f4-7dcc357e150f":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"13964421-9561-4d0e-9ec1-ba4b34b9d954":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"4db7c6be-3a96-4705-8d31-6605b8c56aaa":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"a60c7df5-c655-404f-8ced-746eb4c3f7d9":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/fe6c71ed-461b-4b16-81e7-41d6f7282b9a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:55:56.0375373Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/f34b93ce-16d4-4172-8ce7-1390976bdfab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A56Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:55:56.0378414Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6914ffc0-60f9-4c7e-9d1b-63245e9a79c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:56.0379385Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"file-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:55:14.274Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:50.501Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"33052b49-3f2b-4a56-8f74-91fb0686949b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fd19a384-a571-448b-97aa-a8e64b387690":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"671faa7d-e2b2-40f7-bbbb-2f5ae0bd1882":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"b382e40f-a755-4d0e-a64c-fa3b9762d48a":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"de3fbfef-579a-47e1-9d99-de95ef73acb4":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"fb9eb2fd-8350-41f8-978f-0164ed4210c5":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6871be5f-920d-4495-8ff3-ce55384460f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A41Z&ske=2025-02-27T06%3A07%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:17.7635187Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/7541c034-b872-4837-9914-dfccbbef7d9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A41Z&ske=2025-02-27T06%3A07%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A17Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:17.7646719Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/70c05eb6-76cf-4ae6-bb6c-1e183dcd89d8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A41Z&ske=2025-02-27T06%3A07%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:17.7649877Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"file-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:07:39.01Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:14.525Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -985,17 +943,17 @@ interactions: connection: - keep-alive content-length: - - '3376' + - '3379' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:56 GMT + - Wed, 26 Feb 2025 23:08:17 GMT mise-correlation-id: - - 631dc781-b800-49be-b5ec-2cbf12cd687b + - d692e3a2-d961-4748-8c8a-e8f7b4563024 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215555Z-r17775d4f98p9dsnhC1SG1tym00000000e40000000001v79 + - 20250226T230816Z-r17775d4f989qmrnhC1SG1rde40000001apg00000000fbk2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1018,18 +976,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:54:38.590748Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:54:38.590748Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:03.6409609Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:03.6409609Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '653' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:57 GMT + - Wed, 26 Feb 2025 23:08:18 GMT etag: - - '"4f011ebd-0000-0200-0000-67bceab60000"' + - '"8f01645f-0000-0200-0000-67bf9eb00000"' expires: - '-1' pragma: @@ -1043,9 +1001,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 91EB42A9512742CB9696EF72F1DE1BBE Ref B: MAA201060514045 Ref C: 2025-02-24T21:55:56Z' + - 'Ref A: 6EEA534F05BA49C58949864E90959ED3 Ref B: MAA201060516047 Ref C: 2025-02-26T23:08:18Z' status: code: 200 message: OK @@ -1061,9 +1019,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: string: '' @@ -1074,13 +1032,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:55:58 GMT + - Wed, 26 Feb 2025 23:08:19 GMT mise-correlation-id: - - f30d0b16-b416-4420-814c-d3c84a15206f + - 714b8ba0-64ac-4bb7-9bb2-08539ce2523a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215557Z-r17775d4f98qp6vvhC1SG1r7180000000hn000000000a3cn + - 20250226T230818Z-167c755789dbhjzdhC1SG1t7h800000001tg000000003v31 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1103,18 +1061,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:54:38.590748Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:54:38.590748Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:03.6409609Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:03.6409609Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '653' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:58 GMT + - Wed, 26 Feb 2025 23:08:20 GMT etag: - - '"4f011ebd-0000-0200-0000-67bceab60000"' + - '"8f01645f-0000-0200-0000-67bf9eb00000"' expires: - '-1' pragma: @@ -1130,7 +1088,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DB40C54566C94983AEB9F3026908F6EF Ref B: MAA201060515037 Ref C: 2025-02-24T21:55:58Z' + - 'Ref A: 8EB56783B2DA4CB2BC2FFB9A0D73A6EF Ref B: MAA201060513027 Ref C: 2025-02-26T23:08:19Z' status: code: 200 message: OK @@ -1144,12 +1102,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/f34b93ce-16d4-4172-8ce7-1390976bdfab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A16Z&ske=2025-02-25T04%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A59Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:05:59.1101163Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6914ffc0-60f9-4c7e-9d1b-63245e9a79c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A16Z&ske=2025-02-25T04%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:05:59.1102836Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/7541c034-b872-4837-9914-dfccbbef7d9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A42Z&ske=2025-02-27T06%3A07%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A21Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:21.4000029Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/70c05eb6-76cf-4ae6-bb6c-1e183dcd89d8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A42Z&ske=2025-02-27T06%3A07%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:21.4001844Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1159,17 +1117,17 @@ interactions: connection: - keep-alive content-length: - - '1156' + - '1154' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:59 GMT + - Wed, 26 Feb 2025 23:08:21 GMT mise-correlation-id: - - 41ac8cb7-fe98-4833-aa38-ce00849759cf + - a1c66195-ee82-4c75-bdf4-9e1d66643d50 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215558Z-r17775d4f98vlvpchC1SG1gk5800000008f0000000001yv0 + - 20250226T230820Z-r17775d4f98k7mk2hC1SG1n7700000000xx000000000a575 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1192,18 +1150,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:54:38.590748Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:54:38.590748Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:03.6409609Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:03.6409609Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '653' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:59 GMT + - Wed, 26 Feb 2025 23:08:22 GMT etag: - - '"4f011ebd-0000-0200-0000-67bceab60000"' + - '"8f01645f-0000-0200-0000-67bf9eb00000"' expires: - '-1' pragma: @@ -1219,7 +1177,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 34A31D8EB4AC458A84F2C46EA74909BE Ref B: MAA201060513019 Ref C: 2025-02-24T21:55:59Z' + - 'Ref A: 122E0F3878DF4144B37710EA34C394B3 Ref B: MAA201060513023 Ref C: 2025-02-26T23:08:21Z' status: code: 200 message: OK @@ -1324,14 +1282,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=JMX_FILE + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6628cc3a-1cb1-46dd-a1a7-f623f88b03e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A16Z&ske=2025-02-25T04%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:06:01.3561036Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6d6002ca-cb17-49ef-a991-55c02865be7e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A41Z&ske=2025-02-27T06%3A07%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:23.9736038Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1339,19 +1297,19 @@ interactions: connection: - keep-alive content-length: - - '562' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:01 GMT + - Wed, 26 Feb 2025 23:08:24 GMT location: - - https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 90958abf-5759-40c7-a9a7-e46cbfc069ab + - 6e9b70c8-6082-401d-b541-6e513052d099 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215600Z-r17775d4f98fb5c8hC1SG163n000000008q00000000003g6 + - 20250226T230823Z-r17775d4f98mc5fbhC1SG1vp2s0000001a400000000070t2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1369,12 +1327,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6628cc3a-1cb1-46dd-a1a7-f623f88b03e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:06:01.6095252Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6d6002ca-cb17-49ef-a991-55c02865be7e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A42Z&ske=2025-02-27T06%3A07%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:24.2266365Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1384,17 +1342,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:01 GMT + - Wed, 26 Feb 2025 23:08:24 GMT mise-correlation-id: - - 04c0a187-48ce-4979-b66c-fb515d43a482 + - 0c692eee-539e-4963-b0de-325eaa75d4e6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215601Z-r17775d4f98fb5c8hC1SG163n000000008q00000000003h9 + - 20250226T230824Z-r17775d4f98mc5fbhC1SG1vp2s0000001a400000000070ws x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1412,12 +1370,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6628cc3a-1cb1-46dd-a1a7-f623f88b03e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:06:06.8628132Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6d6002ca-cb17-49ef-a991-55c02865be7e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A41Z&ske=2025-02-27T06%3A07%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:29.4794367Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1427,17 +1385,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:06 GMT + - Wed, 26 Feb 2025 23:08:29 GMT mise-correlation-id: - - 9e7ddc23-e7f0-4412-abdd-8fa02429602a + - 32be09d1-8671-4530-81c8-5ed4c03ad09a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215606Z-r17775d4f98fb5c8hC1SG163n000000008q00000000003ra + - 20250226T230829Z-r17775d4f98mc5fbhC1SG1vp2s0000001a400000000071fs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1455,12 +1413,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6628cc3a-1cb1-46dd-a1a7-f623f88b03e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A48Z&ske=2025-02-25T04%3A55%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:06:12.112555Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6d6002ca-cb17-49ef-a991-55c02865be7e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A39Z&ske=2025-02-27T06%3A07%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:34.7322349Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1470,17 +1428,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:12 GMT + - Wed, 26 Feb 2025 23:08:34 GMT mise-correlation-id: - - a8b08737-6fb6-4d62-b59f-12bebdd89c2e + - 99b1db6c-6d73-4de7-9767-d159fae1bc25 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215611Z-r17775d4f98fb5c8hC1SG163n000000008q00000000003xs + - 20250226T230834Z-r17775d4f98mc5fbhC1SG1vp2s0000001a40000000007206 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1498,12 +1456,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6628cc3a-1cb1-46dd-a1a7-f623f88b03e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A48Z&ske=2025-02-25T04%3A55%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:06:17.3749838Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6d6002ca-cb17-49ef-a991-55c02865be7e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A40Z&ske=2025-02-27T06%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:39.9902653Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1513,17 +1471,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:17 GMT + - Wed, 26 Feb 2025 23:08:40 GMT mise-correlation-id: - - 45f631c8-f26f-4832-82fc-6e3d2a1b8cc9 + - d9180b97-3c1a-47be-a067-9c168928fb76 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215617Z-r17775d4f98fb5c8hC1SG163n000000008q000000000042b + - 20250226T230839Z-r17775d4f98mc5fbhC1SG1vp2s0000001a400000000072kb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1541,12 +1499,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6628cc3a-1cb1-46dd-a1a7-f623f88b03e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A43Z&ske=2025-02-25T04%3A55%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:06:22.6367529Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6d6002ca-cb17-49ef-a991-55c02865be7e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A41Z&ske=2025-02-27T06%3A07%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:45.2421807Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1556,17 +1514,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:22 GMT + - Wed, 26 Feb 2025 23:08:45 GMT mise-correlation-id: - - e148f59d-8332-4c39-b9ba-0c5843479973 + - 63387aec-ff12-4fbf-acb3-e36524b18eb7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215622Z-r17775d4f98fb5c8hC1SG163n000000008q000000000048u + - 20250226T230845Z-r17775d4f98mc5fbhC1SG1vp2s0000001a4000000000733k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1584,12 +1542,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6628cc3a-1cb1-46dd-a1a7-f623f88b03e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A16Z&ske=2025-02-25T04%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:06:27.8864819Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6d6002ca-cb17-49ef-a991-55c02865be7e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A39Z&ske=2025-02-27T06%3A07%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:50.5039544Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1603,13 +1561,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:28 GMT + - Wed, 26 Feb 2025 23:08:50 GMT mise-correlation-id: - - 52f7b74d-dcaf-4eec-bd80-68ef0ca39c16 + - 64ba28c6-d94f-4f7b-84f2-e2d28d57db0c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215627Z-r17775d4f98fb5c8hC1SG163n000000008q00000000004ew + - 20250226T230850Z-r17775d4f98mc5fbhC1SG1vp2s0000001a400000000073pg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1627,12 +1585,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6628cc3a-1cb1-46dd-a1a7-f623f88b03e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A43Z&ske=2025-02-25T04%3A55%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:06:33.1383066Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6d6002ca-cb17-49ef-a991-55c02865be7e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A41Z&ske=2025-02-27T06%3A07%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:18:55.7569159Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1642,17 +1600,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:33 GMT + - Wed, 26 Feb 2025 23:08:55 GMT mise-correlation-id: - - 7b84d379-3772-4892-a24f-7ea44cbbc658 + - 299d8339-5c97-4182-8d8e-4306d8840774 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215633Z-r17775d4f98fb5c8hC1SG163n000000008q00000000004nm + - 20250226T230855Z-r17775d4f98mc5fbhC1SG1vp2s0000001a40000000007479 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1670,12 +1628,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6628cc3a-1cb1-46dd-a1a7-f623f88b03e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:06:38.4256099Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6d6002ca-cb17-49ef-a991-55c02865be7e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A40Z&ske=2025-02-27T06%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:19:01.0087412Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1689,13 +1647,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:38 GMT + - Wed, 26 Feb 2025 23:09:01 GMT mise-correlation-id: - - f1079a70-f240-4866-9155-b2d2bf89b22f + - fe45aebe-6e1c-417a-9f62-32681f4c3d4d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215638Z-r17775d4f98fb5c8hC1SG163n000000008q00000000004ve + - 20250226T230900Z-r17775d4f98mc5fbhC1SG1vp2s0000001a400000000074rf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1718,18 +1676,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:54:38.590748Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:54:38.590748Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:03.6409609Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:03.6409609Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '653' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:48 GMT + - Wed, 26 Feb 2025 23:09:11 GMT etag: - - '"4f011ebd-0000-0200-0000-67bceab60000"' + - '"8f01645f-0000-0200-0000-67bf9eb00000"' expires: - '-1' pragma: @@ -1745,7 +1703,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7ED2849E783A4285B0B374B2B162CEED Ref B: MAA201060515031 Ref C: 2025-02-24T21:56:48Z' + - 'Ref A: 466D8A032D114821ACFF528A8AE6B73C Ref B: MAA201060513029 Ref C: 2025-02-26T23:09:11Z' status: code: 200 message: OK @@ -1759,12 +1717,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6628cc3a-1cb1-46dd-a1a7-f623f88b03e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A43Z&ske=2025-02-25T04%3A55%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:06:49.9780602Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/f34b93ce-16d4-4172-8ce7-1390976bdfab?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A43Z&ske=2025-02-25T04%3A55%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:06:49.9781602Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6914ffc0-60f9-4c7e-9d1b-63245e9a79c6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A43Z&ske=2025-02-25T04%3A55%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:06:49.9782588Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6d6002ca-cb17-49ef-a991-55c02865be7e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A40Z&ske=2025-02-27T06%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:19:12.4667517Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/7541c034-b872-4837-9914-dfccbbef7d9c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A40Z&ske=2025-02-27T06%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A12Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:12.4668281Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/70c05eb6-76cf-4ae6-bb6c-1e183dcd89d8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A40Z&ske=2025-02-27T06%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:12.4668994Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1774,17 +1732,17 @@ interactions: connection: - keep-alive content-length: - - '1719' + - '1717' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:50 GMT + - Wed, 26 Feb 2025 23:09:12 GMT mise-correlation-id: - - e6ea7eaf-ce4e-4384-8cfe-5fff52c95e30 + - 54a456ba-44bb-4f01-a7fd-3a58c9b88c0b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215649Z-r17775d4f984s8x2hC1SG1rtbn000000083g00000000882z + - 20250226T230912Z-167c755789dw9d62hC1SG1x2v800000001sg000000003ukf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1807,18 +1765,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:54:38.590748Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:54:38.590748Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:03.6409609Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:03.6409609Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '651' + - '653' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:50 GMT + - Wed, 26 Feb 2025 23:09:12 GMT etag: - - '"4f011ebd-0000-0200-0000-67bceab60000"' + - '"8f01645f-0000-0200-0000-67bf9eb00000"' expires: - '-1' pragma: @@ -1832,9 +1790,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 4B51C5B580174290A9A3F73EB882D59C Ref B: MAA201060516049 Ref C: 2025-02-24T21:56:50Z' + - 'Ref A: DF41F9E99BBE442FAED68FE3A666C63C Ref B: MAA201060513023 Ref C: 2025-02-26T23:09:12Z' status: code: 200 message: OK @@ -1848,12 +1806,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://20ba4e8a-3e94-4fbc-9172-3bc7c147abe9.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://45ad1840-9693-4a4d-8411-4f993706ef4a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6628cc3a-1cb1-46dd-a1a7-f623f88b03e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:06:51.4617418Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6d6002ca-cb17-49ef-a991-55c02865be7e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A41Z&ske=2025-02-27T06%3A07%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:19:13.6690979Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1867,13 +1825,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:51 GMT + - Wed, 26 Feb 2025 23:09:13 GMT mise-correlation-id: - - 8460a111-34e4-4981-b2d1-cb74d3909a69 + - 2ce85bd4-6db4-4c22-b020-700e8f3afeea strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215651Z-r17775d4f98dvpdwhC1SG17y3800000013v000000000ab41 + - 20250226T230913Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000g417 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1893,7 +1851,7 @@ interactions: User-Agent: - python-requests/2.32.3 method: GET - uri: https://svvxtn0ym54hsf3jhslryt4x.z15.blob.storage.azure.net/5c16b137-441a-46e8-a42d-9e8732ffe1dd/6628cc3a-1cb1-46dd-a1a7-f623f88b03e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A15Z&ske=2025-02-25T04%3A55%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A51Z&sr=b&sp=r&sig=*** + uri: https://hcutp20zgj87vneqh0i6eo7o.z46.blob.storage.azure.net/ab13dc31-e13b-4a59-9395-cbd6bb8c687f/6d6002ca-cb17-49ef-a991-55c02865be7e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A07%3A41Z&ske=2025-02-27T06%3A07%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A13Z&sr=b&sp=r&sig=*** response: body: string: "\n", "value": "78"}, "b3764797-f627-4417-9100-983490893cbc": + {"a7136c52-0fbe-407c-b741-d32ee4e3f94b": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "515b710a-b65c-456f-af40-2c4fcbc5deeb": {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "cd046312-c395-43df-b823-fa6536ae1ded": {"aggregate": "avg", "clientMetric": + "50"}, "3532ae27-59c9-4aed-9d41-08c99c0a9b53": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 90, "errorRateTimeWindowInSeconds": - 60}}' + 60}, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -111,17 +111,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1118' + - '1187' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"128e6209-53dd-48fb-a4f6-5bc033adc818":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b3764797-f627-4417-9100-983490893cbc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"cd046312-c395-43df-b823-fa6536ae1ded":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:53:45.077Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a7136c52-0fbe-407c-b741-d32ee4e3f94b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"515b710a-b65c-456f-af40-2c4fcbc5deeb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3532ae27-59c9-4aed-9d41-08c99c0a9b53":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:09.107Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -133,15 +133,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:45 GMT + - Wed, 26 Feb 2025 23:08:09 GMT location: - - https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + - https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview mise-correlation-id: - - 164d6c78-1fff-4242-a288-307a60f72b3c + - edcaabaf-4f8f-48c9-98cc-00057d43f3cb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215344Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000ate5 + - 20250226T230808Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fbqr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -159,9 +159,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -178,13 +178,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:45 GMT + - Wed, 26 Feb 2025 23:08:09 GMT mise-correlation-id: - - 22181173-077b-49a2-b8c9-c44488162a49 + - 7755344f-a828-4f41-aeda-1f7f2056e26c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215345Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000atf0 + - 20250226T230809Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fbs9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -209,14 +209,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/1d7ad1ef-4185-4366-9aef-83ddfc403d32?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A45Z&ske=2025-02-25T04%3A53%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A45Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:03:45.8589031Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/4ef9a986-2e9e-4bd0-99cf-1e90bcca625b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A09Z&ske=2025-02-27T06%3A08%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A09Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:09.9037306Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -224,19 +224,19 @@ interactions: connection: - keep-alive content-length: - - '573' + - '575' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:45 GMT + - Wed, 26 Feb 2025 23:08:10 GMT location: - - https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 7e2ff00e-92b6-4b9d-8895-393c7b41cac2 + - 4f46eac8-bda0-4bea-91ca-2ab76c2301fb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215345Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000atfr + - 20250226T230809Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fbt7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -254,12 +254,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/1d7ad1ef-4185-4366-9aef-83ddfc403d32?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A46Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:03:46.8251789Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/4ef9a986-2e9e-4bd0-99cf-1e90bcca625b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A11Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:18:11.2701284Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -273,13 +273,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:46 GMT + - Wed, 26 Feb 2025 23:08:11 GMT mise-correlation-id: - - de815e95-bc97-4726-98da-08d09e3c1dd4 + - 580aaf47-d169-4c43-bd3a-df70659b8993 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215345Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000ath0 + - 20250226T230810Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fbuy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -308,14 +308,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/d9cd0b8e-5a33-4dfd-acb7-b794d3b11082?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:03:47.2771626Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/0cd26a7e-dcd6-4806-9759-d31aefc92885?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A09Z&ske=2025-02-27T06%3A08%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:11.6457518Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -327,15 +327,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:47 GMT + - Wed, 26 Feb 2025 23:08:11 GMT location: - - https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 0922216d-e69c-401d-afb3-a405c6cea9a1 + - af28341b-f1df-42ff-82db-4543d132d23e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215346Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000atmf + - 20250226T230811Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fbyq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -353,12 +353,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/d9cd0b8e-5a33-4dfd-acb7-b794d3b11082?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:03:47.7661866Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/0cd26a7e-dcd6-4806-9759-d31aefc92885?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:18:11.9424907Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -368,17 +368,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '567' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:47 GMT + - Wed, 26 Feb 2025 23:08:12 GMT mise-correlation-id: - - 829aa6ab-3a21-4a0f-966d-acc642a6da2a + - 94d89f77-49c9-41b0-aa6f-a82efb4146eb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215347Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000atne + - 20250226T230811Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fc0b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -487,14 +487,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:48.2891794Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A09Z&ske=2025-02-27T06%3A08%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:12.4206853Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -502,19 +502,19 @@ interactions: connection: - keep-alive content-length: - - '559' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:48 GMT + - Wed, 26 Feb 2025 23:08:12 GMT location: - - https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 82ba15a2-0b02-4df6-b762-abfc5cfd299d + - df2bd949-3d94-4811-a04e-fc9168a8db58 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215347Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000atpg + - 20250226T230812Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fc1y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -532,12 +532,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:48.552148Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:12.6749953Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -547,17 +547,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:48 GMT + - Wed, 26 Feb 2025 23:08:12 GMT mise-correlation-id: - - 54869f2b-e53e-452a-be5e-9e907125e424 + - abb94010-5146-4e9c-856b-898d7d3cabfb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215348Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000atq6 + - 20250226T230812Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fc3r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -575,12 +575,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:54.3553578Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:17.9826656Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -590,17 +590,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:54 GMT + - Wed, 26 Feb 2025 23:08:18 GMT mise-correlation-id: - - 8fd305c5-f1a2-4466-a6b8-716460dc2cfe + - 57011e2e-bf3d-421e-aa2d-66e69a0300e4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215353Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000au0n + - 20250226T230817Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fcpm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -618,12 +618,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:59.6087975Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A09Z&ske=2025-02-27T06%3A08%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:23.2877315Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -633,17 +633,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:59 GMT + - Wed, 26 Feb 2025 23:08:23 GMT mise-correlation-id: - - 91512c0b-4adb-4a02-9e3c-b78ea010690f + - 36eaa2ab-7645-4cbb-b642-99d27134a94b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215359Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000aue1 + - 20250226T230823Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fd66 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -661,12 +661,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:05.3969739Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:28.5413006Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -680,13 +680,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:05 GMT + - Wed, 26 Feb 2025 23:08:28 GMT mise-correlation-id: - - 44d47da0-4646-4ccc-8fd1-801bfa6e47da + - a4c775c1-2973-4e37-a661-efb9e6918dea strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215404Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000autr + - 20250226T230828Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fdnk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -704,12 +704,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:10.6570196Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A33Z&ske=2025-02-27T06%3A08%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:33.8465391Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -719,17 +719,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:10 GMT + - Wed, 26 Feb 2025 23:08:33 GMT mise-correlation-id: - - fa730db3-2ae7-46c4-ae19-11165793454e + - 6b47f092-3ad0-4b3d-b1f2-42aa23e3a570 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215410Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000av43 + - 20250226T230833Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fe1z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -747,12 +747,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A45Z&ske=2025-02-25T04%3A53%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:15.9081746Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A33Z&ske=2025-02-27T06%3A08%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:39.0941404Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -762,17 +762,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:16 GMT + - Wed, 26 Feb 2025 23:08:39 GMT mise-correlation-id: - - 461b7e86-551e-4df7-b81b-de5e26d98580 + - a97eb5e5-7296-49cf-94a0-7644248970ab strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215415Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000avd2 + - 20250226T230838Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fehs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -790,12 +790,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:21.1611117Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A09Z&ske=2025-02-27T06%3A08%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:44.3471456Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -805,17 +805,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:21 GMT + - Wed, 26 Feb 2025 23:08:44 GMT mise-correlation-id: - - 8775631d-776b-44a9-b51c-a3474a2c1b11 + - 934e7c1d-831b-41fa-85a6-6c6ada904991 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215421Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000avpm + - 20250226T230844Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000ff4f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -833,13 +833,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"128e6209-53dd-48fb-a4f6-5bc033adc818":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b3764797-f627-4417-9100-983490893cbc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"cd046312-c395-43df-b823-fa6536ae1ded":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:54:21.4298979Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/1d7ad1ef-4185-4366-9aef-83ddfc403d32?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A21Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:54:21.4302525Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/d9cd0b8e-5a33-4dfd-acb7-b794d3b11082?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:54:21.4303863Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:20.931Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A18%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:18:49.5961886Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -849,17 +848,61 @@ interactions: connection: - keep-alive content-length: - - '3102' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:21 GMT + - Wed, 26 Feb 2025 23:08:49 GMT mise-correlation-id: - - 439b11d0-d3c3-4073-915b-95f2b698133d + - 28a32a22-154a-49ad-a097-12bd241cf0f1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215421Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000avpx + - 20250226T230849Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000ffpf + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + method: GET + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"a7136c52-0fbe-407c-b741-d32ee4e3f94b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"515b710a-b65c-456f-af40-2c4fcbc5deeb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3532ae27-59c9-4aed-9d41-08c99c0a9b53":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:49.8469299Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/4ef9a986-2e9e-4bd0-99cf-1e90bcca625b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:49.8474106Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/0cd26a7e-dcd6-4806-9759-d31aefc92885?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:49.8475361Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:44.389Z","lastModifiedBy":"hbisht@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-12-01-preview + connection: + - keep-alive + content-length: + - '3106' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Feb 2025 23:08:49 GMT + mise-correlation-id: + - 7a7969d9-bda7-4fd1-bcd2-5a75d00dcc90 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20250226T230849Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000ffq2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -882,7 +925,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.1893597Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.1893597Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.7950167Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.7950167Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -891,9 +934,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:22 GMT + - Wed, 26 Feb 2025 23:08:50 GMT etag: - - '"4f015cb3-0000-0200-0000-67bcea420000"' + - '"8f01495f-0000-0200-0000-67bf9eae0000"' expires: - '-1' pragma: @@ -909,7 +952,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D3F28CC548194FF5BD87B78E1FF1F441 Ref B: MAA201060515033 Ref C: 2025-02-24T21:54:21Z' + - 'Ref A: 4C6DE03B100348248EDFA1FC56728785 Ref B: MAA201060513045 Ref C: 2025-02-26T23:08:50Z' status: code: 200 message: OK @@ -923,13 +966,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"128e6209-53dd-48fb-a4f6-5bc033adc818":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b3764797-f627-4417-9100-983490893cbc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"cd046312-c395-43df-b823-fa6536ae1ded":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:54:23.3939709Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/1d7ad1ef-4185-4366-9aef-83ddfc403d32?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:54:23.3943914Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/d9cd0b8e-5a33-4dfd-acb7-b794d3b11082?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:54:23.3945664Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:20.931Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a7136c52-0fbe-407c-b741-d32ee4e3f94b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"515b710a-b65c-456f-af40-2c4fcbc5deeb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3532ae27-59c9-4aed-9d41-08c99c0a9b53":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:08:51.8182383Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/4ef9a986-2e9e-4bd0-99cf-1e90bcca625b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A51Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:08:51.818753Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/0cd26a7e-dcd6-4806-9759-d31aefc92885?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A08%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:08:51.8189721Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:08:44.389Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -939,17 +982,17 @@ interactions: connection: - keep-alive content-length: - - '3106' + - '3101' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:23 GMT + - Wed, 26 Feb 2025 23:09:00 GMT mise-correlation-id: - - 7c19394d-ed6e-41a6-838e-f3f64cabfe8e + - ced46159-0b21-4174-89b9-e4f5de90370f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215422Z-r17775d4f98k7mk2hC1SG1n7700000000rq000000000927x + - 20250226T230851Z-167c755789drsd6jhC1SG13zv400000000yg00000000gauv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -963,7 +1006,8 @@ interactions: "environmentVariables": {"rps": "1"}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "splitAllCSVs": false, "quickStartTest": false, "regionalLoadTestConfig": null}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 90.0, "errorRateTimeWindowInSeconds": - 60}, "baselineTestRunId": null}' + 60}, "baselineTestRunId": null, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": + null}' headers: Accept: - application/json @@ -972,17 +1016,17 @@ interactions: Connection: - keep-alive Content-Length: - - '463' + - '532' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"128e6209-53dd-48fb-a4f6-5bc033adc818":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b3764797-f627-4417-9100-983490893cbc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"cd046312-c395-43df-b823-fa6536ae1ded":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:54:23.7743824Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/1d7ad1ef-4185-4366-9aef-83ddfc403d32?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:54:23.7747145Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/d9cd0b8e-5a33-4dfd-acb7-b794d3b11082?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:54:23.7748261Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:23.765Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a7136c52-0fbe-407c-b741-d32ee4e3f94b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"515b710a-b65c-456f-af40-2c4fcbc5deeb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3532ae27-59c9-4aed-9d41-08c99c0a9b53":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A00Z&ske=2025-02-27T06%3A09%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:00.4324298Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/4ef9a986-2e9e-4bd0-99cf-1e90bcca625b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A00Z&ske=2025-02-27T06%3A09%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:09:00.4326508Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/0cd26a7e-dcd6-4806-9759-d31aefc92885?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A00Z&ske=2025-02-27T06%3A09%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:00.4327397Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:00.422Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -996,13 +1040,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:23 GMT + - Wed, 26 Feb 2025 23:09:00 GMT mise-correlation-id: - - 6ebdcf6f-bc01-4657-a9c4-cffea479b8ff + - 1e30ebf6-7ab6-4c4f-ab3e-5fa22ce2b0a9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215423Z-r17775d4f98k7mk2hC1SG1n7700000000rq000000000928f + - 20250226T230900Z-167c755789drsd6jhC1SG13zv400000000yg00000000gbmq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1020,12 +1064,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:24.0233574Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/1d7ad1ef-4185-4366-9aef-83ddfc403d32?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A24Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:04:24.0235708Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/d9cd0b8e-5a33-4dfd-acb7-b794d3b11082?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:24.0237705Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A33Z&ske=2025-02-27T06%3A08%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:00.6823164Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/4ef9a986-2e9e-4bd0-99cf-1e90bcca625b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A33Z&ske=2025-02-27T06%3A08%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:00.6825128Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/0cd26a7e-dcd6-4806-9759-d31aefc92885?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A33Z&ske=2025-02-27T06%3A08%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:00.6827014Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1035,17 +1079,17 @@ interactions: connection: - keep-alive content-length: - - '1712' + - '1720' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:24 GMT + - Wed, 26 Feb 2025 23:09:00 GMT mise-correlation-id: - - c8f2e186-ab05-40b0-8a77-48eb175201ed + - 2d709451-b4b4-4bce-aded-740d4264325f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215423Z-r17775d4f98k7mk2hC1SG1n7700000000rq000000000928y + - 20250226T230900Z-167c755789drsd6jhC1SG13zv400000000yg00000000gbnh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1063,13 +1107,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"128e6209-53dd-48fb-a4f6-5bc033adc818":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b3764797-f627-4417-9100-983490893cbc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"cd046312-c395-43df-b823-fa6536ae1ded":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:54:24.2741875Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/1d7ad1ef-4185-4366-9aef-83ddfc403d32?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A25Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:54:25.2459677Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/d9cd0b8e-5a33-4dfd-acb7-b794d3b11082?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:54:25.2460588Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:23.765Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a7136c52-0fbe-407c-b741-d32ee4e3f94b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"515b710a-b65c-456f-af40-2c4fcbc5deeb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3532ae27-59c9-4aed-9d41-08c99c0a9b53":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:00.932105Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/4ef9a986-2e9e-4bd0-99cf-1e90bcca625b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:09:00.9327173Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/0cd26a7e-dcd6-4806-9759-d31aefc92885?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:00.9329132Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:00.422Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1079,17 +1123,17 @@ interactions: connection: - keep-alive content-length: - - '2924' + - '2921' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:25 GMT + - Wed, 26 Feb 2025 23:09:01 GMT mise-correlation-id: - - 6b87ad8d-6581-42f9-83f6-1c5dd529abe2 + - f8eb0bae-8330-4d09-aa43-ad1b83e961e9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215424Z-r17775d4f98k7mk2hC1SG1n7700000000rq000000000929g + - 20250226T230900Z-167c755789drsd6jhC1SG13zv400000000yg00000000gbp4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1112,7 +1156,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.1893597Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.1893597Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.7950167Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.7950167Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1121,9 +1165,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:25 GMT + - Wed, 26 Feb 2025 23:09:01 GMT etag: - - '"4f015cb3-0000-0200-0000-67bcea420000"' + - '"8f01495f-0000-0200-0000-67bf9eae0000"' expires: - '-1' pragma: @@ -1139,7 +1183,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5D559CAD4DDE4289907936FD513D8E3D Ref B: MAA201060516045 Ref C: 2025-02-24T21:54:25Z' + - 'Ref A: C2A711C7BA3A4A37AD0D45CC88EB4FED Ref B: MAA201060516035 Ref C: 2025-02-26T23:09:01Z' status: code: 200 message: OK @@ -1153,13 +1197,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"128e6209-53dd-48fb-a4f6-5bc033adc818":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b3764797-f627-4417-9100-983490893cbc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"cd046312-c395-43df-b823-fa6536ae1ded":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:54:27.2891816Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/1d7ad1ef-4185-4366-9aef-83ddfc403d32?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A27Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:54:27.2897176Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/d9cd0b8e-5a33-4dfd-acb7-b794d3b11082?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:54:27.2898996Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:23.765Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a7136c52-0fbe-407c-b741-d32ee4e3f94b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"515b710a-b65c-456f-af40-2c4fcbc5deeb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3532ae27-59c9-4aed-9d41-08c99c0a9b53":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A00Z&ske=2025-02-27T06%3A09%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:02.8647831Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/4ef9a986-2e9e-4bd0-99cf-1e90bcca625b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A00Z&ske=2025-02-27T06%3A09%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:09:02.8655194Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/0cd26a7e-dcd6-4806-9759-d31aefc92885?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A00Z&ske=2025-02-27T06%3A09%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:02.8657835Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:00.422Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1169,17 +1213,17 @@ interactions: connection: - keep-alive content-length: - - '2926' + - '2928' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:27 GMT + - Wed, 26 Feb 2025 23:09:02 GMT mise-correlation-id: - - 73df19ee-1820-4185-b55b-d070175d83a5 + - 9b2accbe-c7a2-4cce-85a0-0ec0e10448ce strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215426Z-r17775d4f98jjkc6hC1SG1dcu800000008f0000000009n05 + - 20250226T230902Z-167c755789dbhjzdhC1SG1t7h800000001sg0000000061qb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1194,7 +1238,8 @@ interactions: "environmentVariables": {"rps": "1"}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "splitAllCSVs": false, "quickStartTest": false, "regionalLoadTestConfig": null}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 90.0, "errorRateTimeWindowInSeconds": - 60}, "baselineTestRunId": null}' + 60}, "baselineTestRunId": null, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": + null}' headers: Accept: - application/json @@ -1203,17 +1248,17 @@ interactions: Connection: - keep-alive Content-Length: - - '641' + - '710' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"128e6209-53dd-48fb-a4f6-5bc033adc818":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b3764797-f627-4417-9100-983490893cbc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"cd046312-c395-43df-b823-fa6536ae1ded":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:54:27.6035223Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/1d7ad1ef-4185-4366-9aef-83ddfc403d32?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A27Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:54:27.6040722Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/d9cd0b8e-5a33-4dfd-acb7-b794d3b11082?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:54:27.6042056Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:27.593Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a7136c52-0fbe-407c-b741-d32ee4e3f94b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"515b710a-b65c-456f-af40-2c4fcbc5deeb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3532ae27-59c9-4aed-9d41-08c99c0a9b53":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:03.1935705Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/4ef9a986-2e9e-4bd0-99cf-1e90bcca625b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A03Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:09:03.1941217Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/0cd26a7e-dcd6-4806-9759-d31aefc92885?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:03.1943153Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:03.183Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1223,17 +1268,17 @@ interactions: connection: - keep-alive content-length: - - '3104' + - '3100' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:27 GMT + - Wed, 26 Feb 2025 23:09:03 GMT mise-correlation-id: - - 97044f19-7fcc-4ddc-803a-66d82a205bea + - 279b1a34-79f6-4a2e-8af8-c8c4518d116e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215427Z-r17775d4f98jjkc6hC1SG1dcu800000008f0000000009n15 + - 20250226T230902Z-167c755789dbhjzdhC1SG1t7h800000001sg0000000061t5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1251,12 +1296,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A45Z&ske=2025-02-25T04%3A53%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:27.856294Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/1d7ad1ef-4185-4366-9aef-83ddfc403d32?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A45Z&ske=2025-02-25T04%3A53%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A27Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:04:27.8563917Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/d9cd0b8e-5a33-4dfd-acb7-b794d3b11082?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A45Z&ske=2025-02-25T04%3A53%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:27.8564819Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:03.4496978Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/4ef9a986-2e9e-4bd0-99cf-1e90bcca625b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A03Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:03.4498633Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/0cd26a7e-dcd6-4806-9759-d31aefc92885?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:03.4499924Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1266,17 +1311,17 @@ interactions: connection: - keep-alive content-length: - - '1709' + - '1712' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:27 GMT + - Wed, 26 Feb 2025 23:09:03 GMT mise-correlation-id: - - 81516c00-ef2d-4f89-8f60-1ae87be0f121 + - 04157b57-42a2-4fe3-8a43-08ea58691e12 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215427Z-r17775d4f98jjkc6hC1SG1dcu800000008f0000000009n20 + - 20250226T230903Z-167c755789dbhjzdhC1SG1t7h800000001sg0000000061u6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1294,13 +1339,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"128e6209-53dd-48fb-a4f6-5bc033adc818":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b3764797-f627-4417-9100-983490893cbc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"cd046312-c395-43df-b823-fa6536ae1ded":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:54:28.1147662Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/1d7ad1ef-4185-4366-9aef-83ddfc403d32?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:54:28.1150423Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/d9cd0b8e-5a33-4dfd-acb7-b794d3b11082?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:54:28.1151564Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:27.593Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a7136c52-0fbe-407c-b741-d32ee4e3f94b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"515b710a-b65c-456f-af40-2c4fcbc5deeb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3532ae27-59c9-4aed-9d41-08c99c0a9b53":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:03.7027965Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/4ef9a986-2e9e-4bd0-99cf-1e90bcca625b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A03Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:09:03.7033038Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/0cd26a7e-dcd6-4806-9759-d31aefc92885?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:03.7034998Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:03.183Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1310,17 +1355,17 @@ interactions: connection: - keep-alive content-length: - - '3102' + - '3098' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:28 GMT + - Wed, 26 Feb 2025 23:09:03 GMT mise-correlation-id: - - 70060de9-3373-4184-845e-b8c21be0b644 + - 5aaee400-6d31-4057-bfb4-0f2c69b6113a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215427Z-r17775d4f98jjkc6hC1SG1dcu800000008f0000000009n2a + - 20250226T230903Z-167c755789dbhjzdhC1SG1t7h800000001sg0000000061v1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1343,7 +1388,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.1893597Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.1893597Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.7950167Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.7950167Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1352,9 +1397,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:28 GMT + - Wed, 26 Feb 2025 23:09:04 GMT etag: - - '"4f015cb3-0000-0200-0000-67bcea420000"' + - '"8f01495f-0000-0200-0000-67bf9eae0000"' expires: - '-1' pragma: @@ -1370,7 +1415,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2C06D56E3EF04A3E80DB1610EA9542B2 Ref B: MAA201060513033 Ref C: 2025-02-24T21:54:28Z' + - 'Ref A: A67E747A4A3C4F7DB3579CA7DC206801 Ref B: MAA201060515047 Ref C: 2025-02-26T23:09:04Z' status: code: 200 message: OK @@ -1384,13 +1429,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"128e6209-53dd-48fb-a4f6-5bc033adc818":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b3764797-f627-4417-9100-983490893cbc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"cd046312-c395-43df-b823-fa6536ae1ded":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:54:29.5988593Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/1d7ad1ef-4185-4366-9aef-83ddfc403d32?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A29Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:54:29.599289Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/d9cd0b8e-5a33-4dfd-acb7-b794d3b11082?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:54:29.599454Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:27.593Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a7136c52-0fbe-407c-b741-d32ee4e3f94b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"515b710a-b65c-456f-af40-2c4fcbc5deeb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3532ae27-59c9-4aed-9d41-08c99c0a9b53":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:05.1796851Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/4ef9a986-2e9e-4bd0-99cf-1e90bcca625b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:09:05.1799776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/0cd26a7e-dcd6-4806-9759-d31aefc92885?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:05.1800519Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:03.183Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1404,13 +1449,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:29 GMT + - Wed, 26 Feb 2025 23:09:05 GMT mise-correlation-id: - - e00596bc-7a2d-4b3e-a50a-f44e621b6e6c + - 678e4a44-3940-4dcf-9496-15877596aa43 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215429Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000abr5 + - 20250226T230905Z-167c755789dkxplchC1SG1rzhw0000000200000000009uu2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1424,19 +1469,20 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": - {"128e6209-53dd-48fb-a4f6-5bc033adc818": null, "b3764797-f627-4417-9100-983490893cbc": - null, "cd046312-c395-43df-b823-fa6536ae1ded": null, "4b16995a-5d8d-4d7d-b559-7feb21df0018": + {"a7136c52-0fbe-407c-b741-d32ee4e3f94b": null, "515b710a-b65c-456f-af40-2c4fcbc5deeb": + null, "3532ae27-59c9-4aed-9d41-08c99c0a9b53": null, "5de09824-51b4-4dc0-8c51-78dbd90ede01": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "7e013baa-947e-47be-9328-048675b2217b": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "ef835aa4-4d89-40d3-87d2-84d853422176": + "78"}, "d1605daa-acbc-4b4c-b5d2-561570ac5e6a": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "55bf7995-f7ba-457b-8579-a7846b21c483": {"aggregate": "p75", "clientMetric": "response_time_ms", "condition": ">", "value": - "380"}, "9d985ed8-fe1b-4f55-a8e6-b9838341153e": {"aggregate": "p99", "clientMetric": - "response_time_ms", "condition": ">", "value": "520"}, "9d019874-00b1-41bf-96a1-957cc422e599": + "380"}, "35a9c5d3-d203-4b99-99a5-d56e31af8935": {"aggregate": "p99", "clientMetric": + "response_time_ms", "condition": ">", "value": "520"}, "718fc83d-194c-46d0-a1db-a4e330af3e90": {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", - "value": "540"}, "dddb0028-2bd7-4789-9300-0a0d724a5a30": {"aggregate": "avg", + "value": "540"}, "fd6a9f92-914b-4249-bd14-0c87431b05cc": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true, "errorRate": - 90.0, "errorRateTimeWindowInSeconds": 60}}' + 90.0, "errorRateTimeWindowInSeconds": 60}, "engineBuiltinIdentityType": null, + "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -1445,17 +1491,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1477' + - '1546' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ef835aa4-4d89-40d3-87d2-84d853422176":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"7e013baa-947e-47be-9328-048675b2217b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"4b16995a-5d8d-4d7d-b559-7feb21df0018":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9d985ed8-fe1b-4f55-a8e6-b9838341153e":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9d019874-00b1-41bf-96a1-957cc422e599":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"dddb0028-2bd7-4789-9300-0a0d724a5a30":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:54:29.925329Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/1d7ad1ef-4185-4366-9aef-83ddfc403d32?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A29Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:54:29.925713Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/d9cd0b8e-5a33-4dfd-acb7-b794d3b11082?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:54:29.925868Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:29.913Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"55bf7995-f7ba-457b-8579-a7846b21c483":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"d1605daa-acbc-4b4c-b5d2-561570ac5e6a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5de09824-51b4-4dc0-8c51-78dbd90ede01":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"35a9c5d3-d203-4b99-99a5-d56e31af8935":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"718fc83d-194c-46d0-a1db-a4e330af3e90":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"fd6a9f92-914b-4249-bd14-0c87431b05cc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A33Z&ske=2025-02-27T06%3A08%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:05.5511769Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/4ef9a986-2e9e-4bd0-99cf-1e90bcca625b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A33Z&ske=2025-02-27T06%3A08%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:09:05.5515025Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/0cd26a7e-dcd6-4806-9759-d31aefc92885?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A33Z&ske=2025-02-27T06%3A08%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:05.5516041Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:05.54Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1465,17 +1511,17 @@ interactions: connection: - keep-alive content-length: - - '3352' + - '3348' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:30 GMT + - Wed, 26 Feb 2025 23:09:05 GMT mise-correlation-id: - - d5ee994f-27f2-4b18-8c20-3c7f55447c6f + - ba798360-f4f5-4fda-b01a-24dac9263479 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215429Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000abs8 + - 20250226T230905Z-167c755789dkxplchC1SG1rzhw0000000200000000009uuh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1493,12 +1539,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/209c27f2-e60f-41b0-9ffa-38ed02904877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:30.1813863Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/1d7ad1ef-4185-4366-9aef-83ddfc403d32?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A30Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:04:30.1814729Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/d9cd0b8e-5a33-4dfd-acb7-b794d3b11082?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:30.181557Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/10e3e51f-f5cf-46bc-a9f3-880a1d137317?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:05.8092268Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/4ef9a986-2e9e-4bd0-99cf-1e90bcca625b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:05.8093072Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/0cd26a7e-dcd6-4806-9759-d31aefc92885?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:05.8093851Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1508,17 +1554,17 @@ interactions: connection: - keep-alive content-length: - - '1713' + - '1724' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:30 GMT + - Wed, 26 Feb 2025 23:09:05 GMT mise-correlation-id: - - 9782015e-23e7-4119-87b1-9e1767bca534 + - 45c41508-3898-431a-9150-4856bbc1aa89 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215430Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000abt9 + - 20250226T230905Z-167c755789dkxplchC1SG1rzhw0000000200000000009uvf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1538,9 +1584,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: string: '' @@ -1551,13 +1597,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:54:30 GMT + - Wed, 26 Feb 2025 23:09:06 GMT mise-correlation-id: - - 69a3b37f-f2a4-461e-accc-c86ecdd67c9d + - 1ee66a45-8c6a-4965-9178-6e21c53f6410 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215430Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000abtn + - 20250226T230905Z-167c755789dkxplchC1SG1rzhw0000000200000000009uw8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1582,14 +1628,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/246d02bf-cd42-4081-8310-5e6868b35194?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A30Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:04:30.8897601Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6786992a-6934-4b6e-8880-9aa4f50225cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A07Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:07.393559Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1597,19 +1643,19 @@ interactions: connection: - keep-alive content-length: - - '573' + - '572' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:31 GMT + - Wed, 26 Feb 2025 23:09:07 GMT location: - - https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 9bb69565-7b05-49b6-b6d9-304dfcac2ab6 + - e989dedc-7e33-4da0-a47b-d0be22dd7bf6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215430Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000abu1 + - 20250226T230906Z-167c755789dkxplchC1SG1rzhw0000000200000000009ux4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1627,12 +1673,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/246d02bf-cd42-4081-8310-5e6868b35194?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:04:31.1375459Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6786992a-6934-4b6e-8880-9aa4f50225cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A33Z&ske=2025-02-27T06%3A08%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A07Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:07.6422834Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -1642,17 +1688,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '577' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:31 GMT + - Wed, 26 Feb 2025 23:09:07 GMT mise-correlation-id: - - 3d7465f2-17d9-4b68-8a23-3b34892be376 + - 5a071b1c-b702-4289-b0d4-05e4dd7cdf88 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215431Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000abuh + - 20250226T230907Z-167c755789dkxplchC1SG1rzhw0000000200000000009uzs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1672,9 +1718,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: string: '' @@ -1685,13 +1731,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:54:31 GMT + - Wed, 26 Feb 2025 23:09:08 GMT mise-correlation-id: - - d518f62f-bb91-4a93-b34e-306c95deefb8 + - cbd112fb-0dc4-4d7d-9b45-c722c3274c93 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215431Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000abuz + - 20250226T230907Z-167c755789dkxplchC1SG1rzhw0000000200000000009v0p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1720,14 +1766,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/dbe1fba2-153e-431b-b09e-38b31d7a4001?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:32.4464492Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/ceda330a-aef0-4622-944b-5efff371b4e7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A00Z&ske=2025-02-27T06%3A09%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:08.3881883Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1739,15 +1785,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:32 GMT + - Wed, 26 Feb 2025 23:09:08 GMT location: - - https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - fa7ded29-7ebd-4219-be4f-fd6cae3d4421 + - 1105b9f6-1392-46ee-ab62-a29443db3678 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215431Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000abvd + - 20250226T230908Z-167c755789dkxplchC1SG1rzhw0000000200000000009v1g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1765,12 +1811,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/dbe1fba2-153e-431b-b09e-38b31d7a4001?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:04:32.6967522Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/ceda330a-aef0-4622-944b-5efff371b4e7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:08.6432237Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -1780,17 +1826,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:32 GMT + - Wed, 26 Feb 2025 23:09:08 GMT mise-correlation-id: - - 790ebf62-3885-482e-a533-14fd7d51fc16 + - 196bf0bf-9cc6-47a3-9c69-3b021a57471e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215432Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000abx2 + - 20250226T230908Z-167c755789dkxplchC1SG1rzhw0000000200000000009v2k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1810,9 +1856,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: string: '' @@ -1823,13 +1869,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:54:33 GMT + - Wed, 26 Feb 2025 23:09:09 GMT mise-correlation-id: - - 9af23ca4-eed4-48f8-89f4-74673a810dee + - 17cd2563-94bf-46e2-8c62-3b05a6ce754f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215432Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000abxq + - 20250226T230908Z-167c755789dkxplchC1SG1rzhw0000000200000000009v32 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1938,14 +1984,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/9a7269cf-1276-46fd-a1fd-564794d593b8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:34.4611889Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6cc49bc7-e4f6-4b3a-baf7-0254a69df5f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:11.8799427Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1957,15 +2003,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:34 GMT + - Wed, 26 Feb 2025 23:09:11 GMT location: - - https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 72771946-3e70-4f0f-9d12-a787913e2df2 + - d5d43b91-5748-4090-aa44-331980eddc29 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215433Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000abyg + - 20250226T230909Z-167c755789dkxplchC1SG1rzhw0000000200000000009v3w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1983,12 +2029,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/9a7269cf-1276-46fd-a1fd-564794d593b8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A45Z&ske=2025-02-25T04%3A53%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:34.7156455Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6cc49bc7-e4f6-4b3a-baf7-0254a69df5f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:12.1406545Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1998,17 +2044,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:34 GMT + - Wed, 26 Feb 2025 23:09:12 GMT mise-correlation-id: - - 4f12dbb6-43b6-448a-aa1c-b2e1e46931b8 + - a2f9682d-77a2-4f83-8a95-8d690e2c988d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215434Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000ac1d + - 20250226T230911Z-167c755789dkxplchC1SG1rzhw0000000200000000009vbs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2026,12 +2072,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/9a7269cf-1276-46fd-a1fd-564794d593b8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:39.9685247Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6cc49bc7-e4f6-4b3a-baf7-0254a69df5f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A09Z&ske=2025-02-27T06%3A08%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:18.7939073Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2045,13 +2091,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:40 GMT + - Wed, 26 Feb 2025 23:09:18 GMT mise-correlation-id: - - 26e067ab-203e-4933-8c36-082b80bdf8db + - 79721c0d-1bee-4a57-9004-ec02c2a840da strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215439Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000acbg + - 20250226T230917Z-167c755789dkxplchC1SG1rzhw0000000200000000009vuh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2069,12 +2115,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/9a7269cf-1276-46fd-a1fd-564794d593b8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:45.2288563Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6cc49bc7-e4f6-4b3a-baf7-0254a69df5f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:24.0466832Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2084,60 +2130,17 @@ interactions: connection: - keep-alive content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 21:54:45 GMT - mise-correlation-id: - - f9937e69-22b4-4eb6-bf4d-70e7233b1d07 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T215445Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000acqb - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/9a7269cf-1276-46fd-a1fd-564794d593b8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:50.479488Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '564' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:50 GMT + - Wed, 26 Feb 2025 23:09:24 GMT mise-correlation-id: - - c5134be1-ea11-4b42-ab4f-3b1d51ca2db9 + - b5593676-237c-4f13-875b-523fcb566e59 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215450Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000acye + - 20250226T230923Z-167c755789dkxplchC1SG1rzhw0000000200000000009wf6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2155,12 +2158,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/9a7269cf-1276-46fd-a1fd-564794d593b8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:55.7292587Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6cc49bc7-e4f6-4b3a-baf7-0254a69df5f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A33Z&ske=2025-02-27T06%3A08%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:29.3090074Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2170,17 +2173,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:55 GMT + - Wed, 26 Feb 2025 23:09:29 GMT mise-correlation-id: - - 3701b42f-f7cc-4ae9-a9bd-44cd38e97ed6 + - d1db5ac8-0d16-4de0-9a78-6c1af111e2dd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215455Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000ad6k + - 20250226T230929Z-167c755789dkxplchC1SG1rzhw0000000200000000009x01 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2198,12 +2201,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/9a7269cf-1276-46fd-a1fd-564794d593b8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:00.9762813Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6cc49bc7-e4f6-4b3a-baf7-0254a69df5f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A09Z&ske=2025-02-27T06%3A08%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:34.5795331Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2213,17 +2216,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:01 GMT + - Wed, 26 Feb 2025 23:09:34 GMT mise-correlation-id: - - e29a19b2-1d25-4976-8793-0ba7fb45557a + - 23d4c3aa-224a-4f85-937a-38f390d6dd7b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215500Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000adfg + - 20250226T230934Z-167c755789dkxplchC1SG1rzhw0000000200000000009xgq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2241,12 +2244,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/9a7269cf-1276-46fd-a1fd-564794d593b8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:06.2250975Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6cc49bc7-e4f6-4b3a-baf7-0254a69df5f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A00Z&ske=2025-02-27T06%3A09%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:39.8377732Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2260,13 +2263,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:06 GMT + - Wed, 26 Feb 2025 23:09:39 GMT mise-correlation-id: - - 1b698c51-82a6-4ac7-b75b-9c27378bb52a + - e6710673-9335-4e60-a06a-6fa545d69a0b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215506Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000adtb + - 20250226T230939Z-167c755789dkxplchC1SG1rzhw0000000200000000009y0g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2284,12 +2287,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/9a7269cf-1276-46fd-a1fd-564794d593b8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:11.4865091Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6cc49bc7-e4f6-4b3a-baf7-0254a69df5f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:45.0897711Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -2303,13 +2306,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:11 GMT + - Wed, 26 Feb 2025 23:09:45 GMT mise-correlation-id: - - a1cf17ca-f08e-4fb4-ae4a-649cb5bbfdab + - 0af76d9c-8bc2-4e10-a8e7-a4eb4e8bb8e5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215511Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000ae1f + - 20250226T230944Z-167c755789dkxplchC1SG1rzhw0000000200000000009ygy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2327,13 +2330,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ef835aa4-4d89-40d3-87d2-84d853422176":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"7e013baa-947e-47be-9328-048675b2217b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"4b16995a-5d8d-4d7d-b559-7feb21df0018":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9d985ed8-fe1b-4f55-a8e6-b9838341153e":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9d019874-00b1-41bf-96a1-957cc422e599":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"dddb0028-2bd7-4789-9300-0a0d724a5a30":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/9a7269cf-1276-46fd-a1fd-564794d593b8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:55:11.7470506Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/246d02bf-cd42-4081-8310-5e6868b35194?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A11Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:55:11.7475093Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/dbe1fba2-153e-431b-b09e-38b31d7a4001?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:11.7476793Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:08.861Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"55bf7995-f7ba-457b-8579-a7846b21c483":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"d1605daa-acbc-4b4c-b5d2-561570ac5e6a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5de09824-51b4-4dc0-8c51-78dbd90ede01":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"35a9c5d3-d203-4b99-99a5-d56e31af8935":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"718fc83d-194c-46d0-a1db-a4e330af3e90":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"fd6a9f92-914b-4249-bd14-0c87431b05cc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6cc49bc7-e4f6-4b3a-baf7-0254a69df5f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A00Z&ske=2025-02-27T06%3A09%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:45.3563897Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6786992a-6934-4b6e-8880-9aa4f50225cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A00Z&ske=2025-02-27T06%3A09%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A45Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:09:45.3566659Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/ceda330a-aef0-4622-944b-5efff371b4e7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A00Z&ske=2025-02-27T06%3A09%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:45.3567332Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:42.826Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2343,17 +2346,17 @@ interactions: connection: - keep-alive content-length: - - '3351' + - '3349' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:11 GMT + - Wed, 26 Feb 2025 23:09:45 GMT mise-correlation-id: - - 36303a23-2754-4cb5-9109-2397fe5e81fb + - b0addd4a-26fd-4e1a-b532-f8ce2a0d12b3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215511Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000ae20 + - 20250226T230945Z-167c755789dkxplchC1SG1rzhw0000000200000000009yk2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2376,7 +2379,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.1893597Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.1893597Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.7950167Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.7950167Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2385,9 +2388,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:11 GMT + - Wed, 26 Feb 2025 23:09:45 GMT etag: - - '"4f015cb3-0000-0200-0000-67bcea420000"' + - '"8f01495f-0000-0200-0000-67bf9eae0000"' expires: - '-1' pragma: @@ -2403,7 +2406,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4ACB810118F84E688DF0FADC4645BB0C Ref B: MAA201060515045 Ref C: 2025-02-24T21:55:12Z' + - 'Ref A: E0CA787253694EE4978D20BEBD0F34A7 Ref B: MAA201060514035 Ref C: 2025-02-26T23:09:45Z' status: code: 200 message: OK @@ -2417,13 +2420,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ef835aa4-4d89-40d3-87d2-84d853422176":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"7e013baa-947e-47be-9328-048675b2217b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"4b16995a-5d8d-4d7d-b559-7feb21df0018":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"9d985ed8-fe1b-4f55-a8e6-b9838341153e":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9d019874-00b1-41bf-96a1-957cc422e599":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"dddb0028-2bd7-4789-9300-0a0d724a5a30":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/9a7269cf-1276-46fd-a1fd-564794d593b8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:55:12.8930478Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/246d02bf-cd42-4081-8310-5e6868b35194?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A12Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:55:12.8936998Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/dbe1fba2-153e-431b-b09e-38b31d7a4001?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:12.893952Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:08.861Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"55bf7995-f7ba-457b-8579-a7846b21c483":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"d1605daa-acbc-4b4c-b5d2-561570ac5e6a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5de09824-51b4-4dc0-8c51-78dbd90ede01":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"35a9c5d3-d203-4b99-99a5-d56e31af8935":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"718fc83d-194c-46d0-a1db-a4e330af3e90":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"fd6a9f92-914b-4249-bd14-0c87431b05cc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6cc49bc7-e4f6-4b3a-baf7-0254a69df5f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A00Z&ske=2025-02-27T06%3A09%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:46.4485653Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6786992a-6934-4b6e-8880-9aa4f50225cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A00Z&ske=2025-02-27T06%3A09%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A46Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:09:46.4489843Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/ceda330a-aef0-4622-944b-5efff371b4e7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A00Z&ske=2025-02-27T06%3A09%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:46.4491365Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:42.826Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2433,17 +2436,17 @@ interactions: connection: - keep-alive content-length: - - '3356' + - '3355' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:12 GMT + - Wed, 26 Feb 2025 23:09:46 GMT mise-correlation-id: - - ddd6a189-7a63-40a5-82b7-34b4b4bd9317 + - ff882482-734c-4c04-9f14-f33e224be70e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215512Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007spp + - 20250226T230946Z-167c755789dw9d62hC1SG1x2v800000001sg000000003xrp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2458,16 +2461,16 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": - {"ef835aa4-4d89-40d3-87d2-84d853422176": null, "7e013baa-947e-47be-9328-048675b2217b": - null, "4b16995a-5d8d-4d7d-b559-7feb21df0018": null, "9d985ed8-fe1b-4f55-a8e6-b9838341153e": - null, "9d019874-00b1-41bf-96a1-957cc422e599": null, "dddb0028-2bd7-4789-9300-0a0d724a5a30": - null, "c236a7d3-6401-4362-87f9-4cbd935c0f43": {"aggregate": "avg", "clientMetric": - "requests_per_sec", "condition": ">", "value": "78"}, "d9e6fa1e-be8b-4dea-8e55-63b42ab456d3": + {"55bf7995-f7ba-457b-8579-a7846b21c483": null, "d1605daa-acbc-4b4c-b5d2-561570ac5e6a": + null, "5de09824-51b4-4dc0-8c51-78dbd90ede01": null, "35a9c5d3-d203-4b99-99a5-d56e31af8935": + null, "718fc83d-194c-46d0-a1db-a4e330af3e90": null, "fd6a9f92-914b-4249-bd14-0c87431b05cc": + null, "dd6d2a70-2951-4dae-963b-8a2856c74eb8": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "59f42a96-57eb-496d-af2d-0d539127291c": {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "af818a75-078c-4dae-86c3-77218279a0c2": {"aggregate": "avg", "clientMetric": + "50"}, "321372f7-6f75-48d0-b922-c409f8167629": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 90, "errorRateTimeWindowInSeconds": - 60}}' + 60}, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -2476,17 +2479,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1395' + - '1464' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"af818a75-078c-4dae-86c3-77218279a0c2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"d9e6fa1e-be8b-4dea-8e55-63b42ab456d3":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c236a7d3-6401-4362-87f9-4cbd935c0f43":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/9a7269cf-1276-46fd-a1fd-564794d593b8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:55:13.205856Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/246d02bf-cd42-4081-8310-5e6868b35194?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:55:13.2060924Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/dbe1fba2-153e-431b-b09e-38b31d7a4001?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:13.2062283Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:13.196Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"321372f7-6f75-48d0-b922-c409f8167629":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"59f42a96-57eb-496d-af2d-0d539127291c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dd6d2a70-2951-4dae-963b-8a2856c74eb8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6cc49bc7-e4f6-4b3a-baf7-0254a69df5f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A33Z&ske=2025-02-27T06%3A08%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:09:46.7696539Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6786992a-6934-4b6e-8880-9aa4f50225cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A33Z&ske=2025-02-27T06%3A08%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A46Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:09:46.7702324Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/ceda330a-aef0-4622-944b-5efff371b4e7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A33Z&ske=2025-02-27T06%3A08%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A09%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:09:46.7703424Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:46.759Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2496,17 +2499,17 @@ interactions: connection: - keep-alive content-length: - - '3097' + - '3100' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:13 GMT + - Wed, 26 Feb 2025 23:09:46 GMT mise-correlation-id: - - 98f6f199-e46c-41de-ba65-4fed6b5430e9 + - f9dc2626-3352-4bd6-95c0-b861d90a3113 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215513Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007squ + - 20250226T230946Z-167c755789dw9d62hC1SG1x2v800000001sg000000003xsy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2524,12 +2527,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/9a7269cf-1276-46fd-a1fd-564794d593b8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:13.4709497Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/246d02bf-cd42-4081-8310-5e6868b35194?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:05:13.4710749Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/dbe1fba2-153e-431b-b09e-38b31d7a4001?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:05:13.4712104Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6cc49bc7-e4f6-4b3a-baf7-0254a69df5f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:47.0307962Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/6786992a-6934-4b6e-8880-9aa4f50225cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:47.0308999Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/ceda330a-aef0-4622-944b-5efff371b4e7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:47.0310158Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -2543,13 +2546,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:13 GMT + - Wed, 26 Feb 2025 23:09:47 GMT mise-correlation-id: - - 1d1a9b06-764c-4f6a-8877-14e5ab532d97 + - 2b5107ba-bcac-46a5-a42c-9595791f90bb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215513Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007srg + - 20250226T230946Z-167c755789dw9d62hC1SG1x2v800000001sg000000003xu2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2569,9 +2572,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: string: '' @@ -2582,13 +2585,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:55:13 GMT + - Wed, 26 Feb 2025 23:09:47 GMT mise-correlation-id: - - aeadaecc-4121-4bd6-a9b6-164f6e15f494 + - dba7b877-d735-4c32-a521-e7d5485e3db2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215513Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007srw + - 20250226T230947Z-167c755789dw9d62hC1SG1x2v800000001sg000000003xvc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2613,14 +2616,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/306d2a4c-4672-4b64-9036-6c228ad54ee5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A14Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:05:14.1669313Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/beee86ad-0245-48fc-93f2-67b395916ed7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:47.7806267Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -2628,19 +2631,19 @@ interactions: connection: - keep-alive content-length: - - '571' + - '575' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:14 GMT + - Wed, 26 Feb 2025 23:09:47 GMT location: - - https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - ea4e20ea-03c9-4572-96fb-22b8879d5e59 + - 5094b058-2fe7-4a07-bf4c-327c90bf722d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215513Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007ssb + - 20250226T230947Z-167c755789dw9d62hC1SG1x2v800000001sg000000003xwc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2658,12 +2661,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/306d2a4c-4672-4b64-9036-6c228ad54ee5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A14Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:05:14.4147011Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/beee86ad-0245-48fc-93f2-67b395916ed7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A48Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:48.0460603Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -2673,17 +2676,17 @@ interactions: connection: - keep-alive content-length: - - '571' + - '575' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:14 GMT + - Wed, 26 Feb 2025 23:09:48 GMT mise-correlation-id: - - cfeb78d5-615b-489c-96f8-2ec35ea3a9de + - 570a436f-af70-4833-ae49-5921b298a38b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215514Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007ssu + - 20250226T230947Z-167c755789dw9d62hC1SG1x2v800000001sg000000003xxa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2703,9 +2706,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: string: '' @@ -2716,13 +2719,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:55:14 GMT + - Wed, 26 Feb 2025 23:09:48 GMT mise-correlation-id: - - 56109115-3634-479d-a4b0-10a097973d3f + - 51b2c9cb-3a3a-478c-a74a-ed8a6489ab2c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215514Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007sta + - 20250226T230948Z-167c755789dw9d62hC1SG1x2v800000001sg000000003xxx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2751,14 +2754,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/6e188739-9ab7-42cf-9b4c-818a893a7c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:05:15.876254Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/38a952e3-f1d2-4447-ab8b-eb3f968898d2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A33Z&ske=2025-02-27T06%3A08%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:48.7724615Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -2766,19 +2769,19 @@ interactions: connection: - keep-alive content-length: - - '562' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:15 GMT + - Wed, 26 Feb 2025 23:09:48 GMT location: - - https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 3424f873-2130-49c3-bbaa-0ad231085495 + - 720e6f11-3dcb-4aeb-8969-c86fb19a75ec strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215514Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007stv + - 20250226T230948Z-167c755789dw9d62hC1SG1x2v800000001sg000000003xyz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2796,12 +2799,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/6e188739-9ab7-42cf-9b4c-818a893a7c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:05:16.1311518Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/38a952e3-f1d2-4447-ab8b-eb3f968898d2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:49.0299406Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -2811,17 +2814,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:16 GMT + - Wed, 26 Feb 2025 23:09:49 GMT mise-correlation-id: - - c68b3dbe-9a04-4196-b7e3-37c5850f4dc2 + - c4c1c11c-5e15-4d2e-9f0e-96c7d37ea08a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215515Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007sw6 + - 20250226T230948Z-167c755789dw9d62hC1SG1x2v800000001sg000000003y0a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2841,9 +2844,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: string: '' @@ -2854,13 +2857,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:55:16 GMT + - Wed, 26 Feb 2025 23:09:49 GMT mise-correlation-id: - - 6724b5e8-29c0-453f-8a98-9758516f83a7 + - c7f7b01e-0e6d-43be-8b20-a290797e3bcb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215516Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007sws + - 20250226T230949Z-167c755789dw9d62hC1SG1x2v800000001sg000000003y0z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2969,14 +2972,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/63614403-dffa-411b-9e14-cfce2f70058d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A45Z&ske=2025-02-25T04%3A53%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:16.9193713Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/b3ba9a7a-a32f-4281-ad64-64f6f6b0103b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A09Z&ske=2025-02-27T06%3A08%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:49.8444449Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -2988,15 +2991,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:17 GMT + - Wed, 26 Feb 2025 23:09:49 GMT location: - - https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - d07be00b-18d1-4689-8b7e-d4b0c2b19a07 + - fc58ef1f-dc80-40c3-9bf0-ef1f0b650dde strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215516Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007sxc + - 20250226T230949Z-167c755789dw9d62hC1SG1x2v800000001sg000000003y25 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3014,12 +3017,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/63614403-dffa-411b-9e14-cfce2f70058d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A45Z&ske=2025-02-25T04%3A53%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:17.1711586Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/b3ba9a7a-a32f-4281-ad64-64f6f6b0103b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:50.1077687Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3029,17 +3032,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:17 GMT + - Wed, 26 Feb 2025 23:09:50 GMT mise-correlation-id: - - d2b54126-9000-48e9-b36f-20e75437d759 + - b47eddac-2839-4dd5-8a08-ec8e13ff5560 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215517Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007syd + - 20250226T230949Z-167c755789dw9d62hC1SG1x2v800000001sg000000003y3q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3057,12 +3060,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/63614403-dffa-411b-9e14-cfce2f70058d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A45Z&ske=2025-02-25T04%3A53%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:22.4213216Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/b3ba9a7a-a32f-4281-ad64-64f6f6b0103b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:55.3601625Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3072,17 +3075,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:22 GMT + - Wed, 26 Feb 2025 23:09:55 GMT mise-correlation-id: - - f7300b47-88aa-40b3-b205-b74064549669 + - e6c3f1e3-dcde-490e-bcf3-cb80b9511598 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215522Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007t9e + - 20250226T230955Z-167c755789dw9d62hC1SG1x2v800000001sg000000003yqe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3100,12 +3103,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/63614403-dffa-411b-9e14-cfce2f70058d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:27.6851099Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/b3ba9a7a-a32f-4281-ad64-64f6f6b0103b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:00.6112658Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3115,17 +3118,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:27 GMT + - Wed, 26 Feb 2025 23:10:00 GMT mise-correlation-id: - - ec73be4c-f33e-4b28-b3a9-7c3ea207b65b + - 519e2dec-425a-434d-8d59-5610747c4f3a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215527Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007tnf + - 20250226T231000Z-167c755789dw9d62hC1SG1x2v800000001sg000000003z5y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3143,12 +3146,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/63614403-dffa-411b-9e14-cfce2f70058d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:32.9454372Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/b3ba9a7a-a32f-4281-ad64-64f6f6b0103b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A09Z&ske=2025-02-27T06%3A08%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:05.8726703Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3158,17 +3161,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '567' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:33 GMT + - Wed, 26 Feb 2025 23:10:05 GMT mise-correlation-id: - - bc4a56b2-556e-4475-b734-276658635f77 + - 94773237-f34c-43e9-b6c7-3491a1568458 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215532Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007u0h + - 20250226T231005Z-167c755789dw9d62hC1SG1x2v800000001sg000000003zr8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3186,12 +3189,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/63614403-dffa-411b-9e14-cfce2f70058d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:38.2107792Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/b3ba9a7a-a32f-4281-ad64-64f6f6b0103b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A33Z&ske=2025-02-27T06%3A08%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:11.121311Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3201,17 +3204,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:38 GMT + - Wed, 26 Feb 2025 23:10:11 GMT mise-correlation-id: - - 3b677f60-f389-4d73-b7a2-bebd47dc5a7e + - b7cd2990-cb0a-425e-a2c6-01d4506e1501 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215538Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007uc2 + - 20250226T231010Z-167c755789dw9d62hC1SG1x2v800000001sg000000004082 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3229,12 +3232,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/63614403-dffa-411b-9e14-cfce2f70058d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:43.4632681Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/b3ba9a7a-a32f-4281-ad64-64f6f6b0103b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A10Z&ske=2025-02-27T06%3A08%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:16.3743977Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3244,17 +3247,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:43 GMT + - Wed, 26 Feb 2025 23:10:16 GMT mise-correlation-id: - - 4c5f54b0-ec25-4401-b88f-a3157fd599c7 + - 51840099-34f4-4304-9923-5eab0d78d135 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215543Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007urm + - 20250226T231016Z-167c755789dw9d62hC1SG1x2v800000001sg0000000040v6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3272,12 +3275,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/63614403-dffa-411b-9e14-cfce2f70058d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:49.3701264Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/b3ba9a7a-a32f-4281-ad64-64f6f6b0103b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A11Z&ske=2025-02-27T06%3A08%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:21.6258668Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -3291,13 +3294,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:49 GMT + - Wed, 26 Feb 2025 23:10:21 GMT mise-correlation-id: - - 00e22076-9944-4428-b4f5-04e286163081 + - 17cf6d99-eb5c-4ee9-8123-aeb7154cb7c8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215548Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007v1w + - 20250226T231021Z-167c755789dw9d62hC1SG1x2v800000001sg0000000041gq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3315,13 +3318,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"af818a75-078c-4dae-86c3-77218279a0c2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"d9e6fa1e-be8b-4dea-8e55-63b42ab456d3":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c236a7d3-6401-4362-87f9-4cbd935c0f43":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/63614403-dffa-411b-9e14-cfce2f70058d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:55:49.6225149Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/306d2a4c-4672-4b64-9036-6c228ad54ee5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:55:49.6228818Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/6e188739-9ab7-42cf-9b4c-818a893a7c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:49.6230305Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:47.665Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"321372f7-6f75-48d0-b922-c409f8167629":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"59f42a96-57eb-496d-af2d-0d539127291c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dd6d2a70-2951-4dae-963b-8a2856c74eb8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/b3ba9a7a-a32f-4281-ad64-64f6f6b0103b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:21.8870262Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/beee86ad-0245-48fc-93f2-67b395916ed7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A21Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:21.887272Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/38a952e3-f1d2-4447-ab8b-eb3f968898d2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:21.8873398Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:20.361Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3331,17 +3334,17 @@ interactions: connection: - keep-alive content-length: - - '3102' + - '3103' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:49 GMT + - Wed, 26 Feb 2025 23:10:22 GMT mise-correlation-id: - - d9910434-4bb7-4cd1-8be1-a3b66b1790a6 + - 3a1bda92-7544-48bc-a5be-f68f0a1f3e5e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215549Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007v3w + - 20250226T231021Z-167c755789dw9d62hC1SG1x2v800000001sg0000000041hq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3364,7 +3367,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.1893597Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.1893597Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.7950167Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.7950167Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3373,9 +3376,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:49 GMT + - Wed, 26 Feb 2025 23:10:22 GMT etag: - - '"4f015cb3-0000-0200-0000-67bcea420000"' + - '"8f01495f-0000-0200-0000-67bf9eae0000"' expires: - '-1' pragma: @@ -3391,7 +3394,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3BEF960F9E50420A850D1852A8B5B9B9 Ref B: MAA201060514031 Ref C: 2025-02-24T21:55:49Z' + - 'Ref A: D404BD2D69004A5D9E9171D2BF9A0AF1 Ref B: MAA201060513023 Ref C: 2025-02-26T23:10:22Z' status: code: 200 message: OK @@ -3405,13 +3408,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"af818a75-078c-4dae-86c3-77218279a0c2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"d9e6fa1e-be8b-4dea-8e55-63b42ab456d3":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c236a7d3-6401-4362-87f9-4cbd935c0f43":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/63614403-dffa-411b-9e14-cfce2f70058d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:55:50.6036442Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/306d2a4c-4672-4b64-9036-6c228ad54ee5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A50Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:55:50.6040595Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/6e188739-9ab7-42cf-9b4c-818a893a7c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A46Z&ske=2025-02-25T04%3A53%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:50.6042274Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:47.665Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"321372f7-6f75-48d0-b922-c409f8167629":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"59f42a96-57eb-496d-af2d-0d539127291c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dd6d2a70-2951-4dae-963b-8a2856c74eb8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/b3ba9a7a-a32f-4281-ad64-64f6f6b0103b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A09Z&ske=2025-02-27T06%3A08%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:23.7174942Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/beee86ad-0245-48fc-93f2-67b395916ed7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A09Z&ske=2025-02-27T06%3A08%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:23.7178909Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/38a952e3-f1d2-4447-ab8b-eb3f968898d2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A09Z&ske=2025-02-27T06%3A08%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:23.7180629Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:20.361Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3421,17 +3424,17 @@ interactions: connection: - keep-alive content-length: - - '3104' + - '3100' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:50 GMT + - Wed, 26 Feb 2025 23:10:23 GMT mise-correlation-id: - - e48075d1-132e-4f39-a5f4-7fa203c4d294 + - d3539a59-36d8-4412-b2b9-67957323e082 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215550Z-r17775d4f98dvpdwhC1SG17y38000000141g000000000r9y + - 20250226T231023Z-167c755789dpktj6hC1SG1nr68000000023g00000000f961 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3446,7 +3449,8 @@ interactions: "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "splitAllCSVs": false, "quickStartTest": false, "regionalLoadTestConfig": null}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 90.0, "errorRateTimeWindowInSeconds": - 60}, "baselineTestRunId": null}' + 60}, "baselineTestRunId": null, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": + null}' headers: Accept: - application/json @@ -3455,13 +3459,13 @@ interactions: Connection: - keep-alive Content-Length: - - '502' + - '571' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"InvalidManagedIdentity","message":"The provided Key @@ -3475,15 +3479,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:55:51 GMT + - Wed, 26 Feb 2025 23:10:24 GMT mise-correlation-id: - - 55afabd0-1f99-4716-9594-8874b609a2c1 + - 772941b8-bd32-48d2-b59a-9b1d4bc6b485 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215550Z-r17775d4f98dvpdwhC1SG17y38000000141g000000000rah + - 20250226T231023Z-167c755789dpktj6hC1SG1nr68000000023g00000000f96x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3508,7 +3512,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.1893597Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.1893597Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:07:04.7950167Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:07:04.7950167Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3517,9 +3521,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:51 GMT + - Wed, 26 Feb 2025 23:10:25 GMT etag: - - '"4f015cb3-0000-0200-0000-67bcea420000"' + - '"8f01495f-0000-0200-0000-67bf9eae0000"' expires: - '-1' pragma: @@ -3535,7 +3539,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9B419603353E4A85B52F821C9EBBAE9A Ref B: MAA201060513017 Ref C: 2025-02-24T21:55:51Z' + - 'Ref A: 1CC869C0A2A24A79A8EE40CB9E334144 Ref B: MAA201060513037 Ref C: 2025-02-26T23:10:24Z' status: code: 200 message: OK @@ -3549,13 +3553,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"af818a75-078c-4dae-86c3-77218279a0c2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"d9e6fa1e-be8b-4dea-8e55-63b42ab456d3":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c236a7d3-6401-4362-87f9-4cbd935c0f43":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/63614403-dffa-411b-9e14-cfce2f70058d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:55:53.3872054Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/306d2a4c-4672-4b64-9036-6c228ad54ee5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A53Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:55:53.3882159Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://x8riedvqx93l12nj0h4zk1wu.z21.blob.storage.azure.net/893ce491-1133-4972-bf84-4e175de233b5/6e188739-9ab7-42cf-9b4c-818a893a7c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A24Z&ske=2025-02-25T04%3A54%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A55%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:55:53.3885228Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-24T21:53:45.077Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:47.665Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"321372f7-6f75-48d0-b922-c409f8167629":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"59f42a96-57eb-496d-af2d-0d539127291c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"dd6d2a70-2951-4dae-963b-8a2856c74eb8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/b3ba9a7a-a32f-4281-ad64-64f6f6b0103b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:26.0471284Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/beee86ad-0245-48fc-93f2-67b395916ed7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A26Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:26.0473358Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oi448951q60rh0r3dkw381x3.z31.blob.storage.azure.net/9a579d6d-0db8-4d1e-9876-776e25eee541/38a952e3-f1d2-4447-ab8b-eb3f968898d2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A08%3A17Z&ske=2025-02-27T06%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:26.0474265Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-kvrefid-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"UserAssigned","keyvaultReferenceIdentityId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi","createdDateTime":"2025-02-26T23:08:09.107Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:20.361Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3565,17 +3569,17 @@ interactions: connection: - keep-alive content-length: - - '3100' + - '3112' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:53 GMT + - Wed, 26 Feb 2025 23:10:26 GMT mise-correlation-id: - - d5c0cb8d-8b4c-4fbe-8ddb-f51d62901545 + - 17d6330d-7181-4453-8f7b-56631d0b7d62 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215553Z-r17775d4f98lnpwthC1SG1g1zn000000090g00000000854r + - 20250226T231025Z-167c755789ddg659hC1SG1f79g00000001zg000000008qen x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3589,15 +3593,15 @@ interactions: "keyvaultReferenceIdentityId": "Random", "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - false}, "passFailCriteria": {"passFailMetrics": {"af818a75-078c-4dae-86c3-77218279a0c2": - null, "d9e6fa1e-be8b-4dea-8e55-63b42ab456d3": null, "c236a7d3-6401-4362-87f9-4cbd935c0f43": - null, "1b60130b-8bbe-47cf-b648-8f32e2d6a4e3": {"aggregate": "avg", "clientMetric": - "requests_per_sec", "condition": ">", "value": "78"}, "1a5d5569-e2e1-4842-bfc2-013a45b8a8c8": + false}, "passFailCriteria": {"passFailMetrics": {"321372f7-6f75-48d0-b922-c409f8167629": + null, "59f42a96-57eb-496d-af2d-0d539127291c": null, "dd6d2a70-2951-4dae-963b-8a2856c74eb8": + null, "6ceb0a95-bfa0-4444-9d8e-52b6b228fded": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "983cfe97-606a-40a5-8301-0e400643f8ec": {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "b63d3899-3b5c-4210-a770-e90124c7927f": {"aggregate": "avg", "clientMetric": + "50"}, "bca06a1a-e629-42fa-98b5-f56949cee912": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 90, "errorRateTimeWindowInSeconds": - 60}}' + 60}, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -3606,13 +3610,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1118' + - '1187' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://15e947d4-31dd-40ef-bca9-d215bc39cca6.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview + uri: https://b99a95cb-db74-48d1-980c-fe606d9e9d29.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-kvrefid-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"InvalidManagedIdentity","message":"The provided Key @@ -3626,15 +3630,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:55:53 GMT + - Wed, 26 Feb 2025 23:10:27 GMT mise-correlation-id: - - f8069872-a1d4-4c0f-8853-a8cc80c646e0 + - 581f7795-4249-46c8-879a-cf919c764b50 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215553Z-r17775d4f98lnpwthC1SG1g1zn000000090g000000008552 + - 20250226T231026Z-167c755789ddg659hC1SG1f79g00000001zg000000008qg8 x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_list.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_list.yaml index c9198ae48d3..693fdac94f9 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_list.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_list.yaml @@ -14,7 +14,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:56:09.0136066Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:56:09.0136066Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:04.7184513Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:04.7184513Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -23,9 +23,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:41 GMT + - Wed, 26 Feb 2025 23:09:37 GMT etag: - - '"4f017bc4-0000-0200-0000-67bceb0f0000"' + - '"8f01ea66-0000-0200-0000-67bf9f290000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AFDA31550875487B97AD6CD51EA90D13 Ref B: MAA201060516051 Ref C: 2025-02-24T21:56:41Z' + - 'Ref A: 4A339ECC3CAA4B89B20DC0C2E374149E Ref B: MAA201060513027 Ref C: 2025-02-26T23:09:37Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -71,15 +71,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:56:43 GMT + - Wed, 26 Feb 2025 23:09:39 GMT mise-correlation-id: - - 9355129d-85c2-4232-bf4b-2e5f640a7526 + - 4fd38938-3564-4f22-be40-0b33cd20d2ae strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215642Z-r17775d4f9888gqkhC1SG1bvr800000008b00000000032kp + - 20250226T230938Z-167c755789dkxplchC1SG1rzhw000000021g000000006nhn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -95,17 +95,18 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"1b64a97f-cc74-41ed-aadc-db08c7b80bcf": + true}, "passFailCriteria": {"passFailMetrics": {"63bad965-1469-4b72-baac-6bcd32ba23fb": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "1d572acf-324c-434e-b76b-8f8ae2bead98": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "b052b36e-46f2-4975-ac56-3162c352a6ee": + "78"}, "217b608c-5f24-4065-a641-9dadea43f85e": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "41e55e50-cd82-480f-98ab-13d9a13b966a": {"aggregate": "p75", "clientMetric": "response_time_ms", "condition": ">", "value": - "380"}, "5583e50f-fa40-48f7-b2b7-8359d7ab1840": {"aggregate": "p99", "clientMetric": - "response_time_ms", "condition": ">", "value": "520"}, "7824b86f-effb-4bdc-b0b3-2cd90c8dbee4": + "380"}, "8c8bcaf7-589f-4371-a114-30752f44b140": {"aggregate": "p99", "clientMetric": + "response_time_ms", "condition": ">", "value": "520"}, "5a423e09-8eb8-4e78-8d68-65dad8313402": {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", - "value": "540"}, "6cbf230f-29f4-4962-b6c6-32d66332f880": {"aggregate": "avg", + "value": "540"}, "0822fdfb-65d7-4ecc-8f3c-3b19f0cfceae": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,17 +115,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1b64a97f-cc74-41ed-aadc-db08c7b80bcf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1d572acf-324c-434e-b76b-8f8ae2bead98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b052b36e-46f2-4975-ac56-3162c352a6ee":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"5583e50f-fa40-48f7-b2b7-8359d7ab1840":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7824b86f-effb-4bdc-b0b3-2cd90c8dbee4":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6cbf230f-29f4-4962-b6c6-32d66332f880":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:43.362Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:56:43.362Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"63bad965-1469-4b72-baac-6bcd32ba23fb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"217b608c-5f24-4065-a641-9dadea43f85e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"41e55e50-cd82-480f-98ab-13d9a13b966a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"8c8bcaf7-589f-4371-a114-30752f44b140":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5a423e09-8eb8-4e78-8d68-65dad8313402":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"0822fdfb-65d7-4ecc-8f3c-3b19f0cfceae":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:40.06Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:40.06Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -132,19 +133,19 @@ interactions: connection: - keep-alive content-length: - - '1645' + - '1643' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:43 GMT + - Wed, 26 Feb 2025 23:09:40 GMT location: - - https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-12-01-preview + - https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-12-01-preview mise-correlation-id: - - 06f0aeed-d3cd-455f-9a0c-c6237cf572a2 + - 87074972-c9b7-484b-9342-802f62cac225 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215643Z-r17775d4f9888gqkhC1SG1bvr800000008b00000000032mq + - 20250226T230939Z-167c755789dkxplchC1SG1rzhw000000021g000000006np7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -162,9 +163,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -181,13 +182,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:43 GMT + - Wed, 26 Feb 2025 23:09:40 GMT mise-correlation-id: - - 2b705b70-bc7f-40a3-baa3-571c524e6330 + - a3384c89-a5c2-44e3-9f42-7085d5f51815 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215643Z-r17775d4f9888gqkhC1SG1bvr800000008b00000000032nc + - 20250226T230940Z-167c755789dkxplchC1SG1rzhw000000021g000000006ns7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -212,14 +213,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/b68be994-6284-43ee-ae2f-e440b1e1ec91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A44Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:06:44.1070183Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/fff5543b-74b6-4036-9a82-8e29fdd9dd19?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A41Z&ske=2025-02-27T06%3A09%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:41.0602387Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -231,15 +232,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:44 GMT + - Wed, 26 Feb 2025 23:09:41 GMT location: - - https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 4a15f13b-fa66-4a5e-a8ff-81c28af5e14a + - b47fd89b-bddb-44ba-8b44-1cfb5fa580ef strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215643Z-r17775d4f9888gqkhC1SG1bvr800000008b00000000032nx + - 20250226T230940Z-167c755789dkxplchC1SG1rzhw000000021g000000006nt1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -257,12 +258,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/b68be994-6284-43ee-ae2f-e440b1e1ec91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A44Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:06:44.401383Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/fff5543b-74b6-4036-9a82-8e29fdd9dd19?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A41Z&ske=2025-02-27T06%3A09%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:41.3166234Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -272,17 +273,17 @@ interactions: connection: - keep-alive content-length: - - '574' + - '575' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:44 GMT + - Wed, 26 Feb 2025 23:09:41 GMT mise-correlation-id: - - 00d59fa8-16e2-4123-b7d6-4c8b7babb804 + - 08011d3a-aa2b-4e26-b7be-4b8c2ea9020e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215644Z-r17775d4f9888gqkhC1SG1bvr800000008b00000000032pn + - 20250226T230941Z-167c755789dkxplchC1SG1rzhw000000021g000000006nux x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -311,14 +312,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/83664547-8518-47c3-b587-196c1a3e7260?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:06:44.799945Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/2c1b3250-6cfb-486b-8426-fa456622bf2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A41Z&ske=2025-02-27T06%3A09%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:41.7286984Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -326,19 +327,19 @@ interactions: connection: - keep-alive content-length: - - '562' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:44 GMT + - Wed, 26 Feb 2025 23:09:41 GMT location: - - https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - f1e45a85-ae55-4def-a112-f455611ed4c5 + - 646a6abc-b8b2-4471-915d-49ed67757f97 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215644Z-r17775d4f9888gqkhC1SG1bvr800000008b00000000032q5 + - 20250226T230941Z-167c755789dkxplchC1SG1rzhw000000021g000000006nvx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -356,12 +357,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/83664547-8518-47c3-b587-196c1a3e7260?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A45Z&ske=2025-02-25T04%3A56%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:06:45.7399799Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/2c1b3250-6cfb-486b-8426-fa456622bf2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A41Z&ske=2025-02-27T06%3A09%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:42.1075634Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -371,17 +372,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:45 GMT + - Wed, 26 Feb 2025 23:09:42 GMT mise-correlation-id: - - 57754e27-c38f-4882-b74e-ff6f19e885fd + - 8fce028e-dafc-4564-a0f3-f268b22f3a69 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215644Z-r17775d4f9888gqkhC1SG1bvr800000008b00000000032r1 + - 20250226T230941Z-167c755789dkxplchC1SG1rzhw000000021g000000006nxe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -490,14 +491,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/bec2b0df-cc07-4567-8d75-c27e80a3683c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:06:47.0612181Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/30f9b249-c24e-4793-bee5-e9cfdf8e270b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A42Z&ske=2025-02-27T06%3A09%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:42.6066625Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -505,19 +506,19 @@ interactions: connection: - keep-alive content-length: - - '559' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:47 GMT + - Wed, 26 Feb 2025 23:09:42 GMT location: - - https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - b8dbc7dd-c35a-4f61-ad83-1a3f7e02c4af + - 79c9f2cb-0cd8-455c-8db4-2b0bb21052fa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215645Z-r17775d4f9888gqkhC1SG1bvr800000008b00000000032t4 + - 20250226T230942Z-167c755789dkxplchC1SG1rzhw000000021g000000006nyc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -535,12 +536,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/bec2b0df-cc07-4567-8d75-c27e80a3683c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:06:47.3132844Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/30f9b249-c24e-4793-bee5-e9cfdf8e270b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A42Z&ske=2025-02-27T06%3A09%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:43.0779691Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -550,17 +551,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:47 GMT + - Wed, 26 Feb 2025 23:09:43 GMT mise-correlation-id: - - 15a8c60a-1456-4f79-858b-17e63f982e2c + - 9d15810d-fff6-4ef2-be59-144d299307a2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215647Z-r17775d4f9888gqkhC1SG1bvr800000008b00000000032vg + - 20250226T230942Z-167c755789dkxplchC1SG1rzhw000000021g000000006nzy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -578,12 +579,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/bec2b0df-cc07-4567-8d75-c27e80a3683c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:06:52.5600917Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/30f9b249-c24e-4793-bee5-e9cfdf8e270b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A41Z&ske=2025-02-27T06%3A09%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:48.3718608Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -597,13 +598,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:52 GMT + - Wed, 26 Feb 2025 23:09:48 GMT mise-correlation-id: - - fd0e2de1-dc22-4d74-a461-55f32345d769 + - f53c1215-c8b1-4f9b-863e-14ceba52c4df strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215652Z-r17775d4f9888gqkhC1SG1bvr800000008b000000000337z + - 20250226T230948Z-167c755789dkxplchC1SG1rzhw000000021g000000006pfz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -621,12 +622,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/bec2b0df-cc07-4567-8d75-c27e80a3683c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:06:57.8123977Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/30f9b249-c24e-4793-bee5-e9cfdf8e270b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A41Z&ske=2025-02-27T06%3A09%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:53.7854206Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -636,17 +637,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:57 GMT + - Wed, 26 Feb 2025 23:09:53 GMT mise-correlation-id: - - f06ef306-b350-4f83-8476-48633aa910a1 + - 35786603-3e6d-4d91-9e7c-98b0f4238b8e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215657Z-r17775d4f9888gqkhC1SG1bvr800000008b00000000033kn + - 20250226T230953Z-167c755789dkxplchC1SG1rzhw000000021g000000006pys x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -664,12 +665,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/bec2b0df-cc07-4567-8d75-c27e80a3683c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A04Z&ske=2025-02-25T04%3A57%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:04.9535104Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/30f9b249-c24e-4793-bee5-e9cfdf8e270b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A41Z&ske=2025-02-27T06%3A09%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:59.0400561Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -679,17 +680,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:05 GMT + - Wed, 26 Feb 2025 23:09:59 GMT mise-correlation-id: - - b94ac623-4020-4423-93e9-67c6479a28b9 + - 6f77092b-fa25-44db-ac44-9f4d0faf74d4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215702Z-r17775d4f9888gqkhC1SG1bvr800000008b00000000033w8 + - 20250226T230958Z-167c755789dkxplchC1SG1rzhw000000021g000000006qbf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -707,12 +708,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/bec2b0df-cc07-4567-8d75-c27e80a3683c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:10.2031397Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/30f9b249-c24e-4793-bee5-e9cfdf8e270b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A42Z&ske=2025-02-27T06%3A09%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:04.2882647Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -722,17 +723,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:10 GMT + - Wed, 26 Feb 2025 23:10:04 GMT mise-correlation-id: - - 00b043f5-3467-4320-9d1a-120284f85d81 + - b2f989e1-886a-417e-90af-c8691b64af96 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215710Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003470 + - 20250226T231004Z-167c755789dkxplchC1SG1rzhw000000021g000000006qrs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -750,12 +751,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/bec2b0df-cc07-4567-8d75-c27e80a3683c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:15.4555587Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/30f9b249-c24e-4793-bee5-e9cfdf8e270b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A42Z&ske=2025-02-27T06%3A09%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:09.5368892Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -765,17 +766,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:15 GMT + - Wed, 26 Feb 2025 23:10:09 GMT mise-correlation-id: - - 6d60cf68-433b-48f0-9523-a43307f64ac2 + - 376417b9-222f-49e4-93b4-43614b3cc9d3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215715Z-r17775d4f9888gqkhC1SG1bvr800000008b00000000034ex + - 20250226T231009Z-167c755789dkxplchC1SG1rzhw000000021g000000006r5d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -793,12 +794,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/bec2b0df-cc07-4567-8d75-c27e80a3683c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A45Z&ske=2025-02-25T04%3A56%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:20.7656014Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/30f9b249-c24e-4793-bee5-e9cfdf8e270b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A14Z&ske=2025-02-27T06%3A10%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:14.816794Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -808,17 +809,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:21 GMT + - Wed, 26 Feb 2025 23:10:14 GMT mise-correlation-id: - - 6da192d6-1f5d-44da-a39b-40f0bbd06836 + - 4b8eb421-6ebe-4da7-aec8-13ad7d493561 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215720Z-r17775d4f9888gqkhC1SG1bvr800000008b00000000034p9 + - 20250226T231014Z-167c755789dkxplchC1SG1rzhw000000021g000000006rht x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -836,12 +837,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/bec2b0df-cc07-4567-8d75-c27e80a3683c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:27.0070756Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/30f9b249-c24e-4793-bee5-e9cfdf8e270b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A20Z&ske=2025-02-27T06%3A10%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:20.1186286Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -855,13 +856,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:27 GMT + - Wed, 26 Feb 2025 23:10:20 GMT mise-correlation-id: - - 2ab949f9-abe1-464f-8f6f-50a1dc924443 + - ca78cc02-ec1a-4f9f-b083-2d1fbed19992 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215726Z-r17775d4f9888gqkhC1SG1bvr800000008b000000000350a + - 20250226T231019Z-167c755789dkxplchC1SG1rzhw000000021g000000006s43 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -879,12 +880,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/bec2b0df-cc07-4567-8d75-c27e80a3683c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:32.2560729Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/30f9b249-c24e-4793-bee5-e9cfdf8e270b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A10%3A20Z&ske=2025-02-27T06%3A10%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:25.3704785Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -894,17 +895,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:32 GMT + - Wed, 26 Feb 2025 23:10:25 GMT mise-correlation-id: - - cf462b4a-6f51-4c1f-9f66-7c9b3348eb60 + - 1e0060d1-9b91-4e73-979d-29e5e61f6da2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215732Z-r17775d4f9888gqkhC1SG1bvr800000008b000000000356q + - 20250226T231025Z-167c755789dkxplchC1SG1rzhw000000021g000000006sgh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -922,13 +923,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1b64a97f-cc74-41ed-aadc-db08c7b80bcf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1d572acf-324c-434e-b76b-8f8ae2bead98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b052b36e-46f2-4975-ac56-3162c352a6ee":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"5583e50f-fa40-48f7-b2b7-8359d7ab1840":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7824b86f-effb-4bdc-b0b3-2cd90c8dbee4":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6cbf230f-29f4-4962-b6c6-32d66332f880":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/bec2b0df-cc07-4567-8d75-c27e80a3683c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A45Z&ske=2025-02-25T04%3A56%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:57:32.5131498Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/b68be994-6284-43ee-ae2f-e440b1e1ec91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A45Z&ske=2025-02-25T04%3A56%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A32Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:57:32.5134197Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/83664547-8518-47c3-b587-196c1a3e7260?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A45Z&ske=2025-02-25T04%3A56%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:57:32.5134787Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:43.362Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:27.089Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"63bad965-1469-4b72-baac-6bcd32ba23fb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"217b608c-5f24-4065-a641-9dadea43f85e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"41e55e50-cd82-480f-98ab-13d9a13b966a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"8c8bcaf7-589f-4371-a114-30752f44b140":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5a423e09-8eb8-4e78-8d68-65dad8313402":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"0822fdfb-65d7-4ecc-8f3c-3b19f0cfceae":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/30f9b249-c24e-4793-bee5-e9cfdf8e270b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A42Z&ske=2025-02-27T06%3A09%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:25.6218337Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/fff5543b-74b6-4036-9a82-8e29fdd9dd19?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A42Z&ske=2025-02-27T06%3A09%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A25Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:25.6221474Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/2c1b3250-6cfb-486b-8426-fa456622bf2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A42Z&ske=2025-02-27T06%3A09%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:25.6222399Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:40.06Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:21.936Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -938,17 +939,17 @@ interactions: connection: - keep-alive content-length: - - '3368' + - '3365' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:32 GMT + - Wed, 26 Feb 2025 23:10:25 GMT mise-correlation-id: - - c3c3cd36-9c17-4922-ba74-446c38568b37 + - 14439d26-6774-49d7-b89c-bc228144ff94 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215732Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003571 + - 20250226T231025Z-167c755789dkxplchC1SG1rzhw000000021g000000006sh3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -971,7 +972,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:56:09.0136066Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:56:09.0136066Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:04.7184513Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:04.7184513Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -980,9 +981,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:32 GMT + - Wed, 26 Feb 2025 23:10:25 GMT etag: - - '"4f017bc4-0000-0200-0000-67bceb0f0000"' + - '"8f01ea66-0000-0200-0000-67bf9f290000"' expires: - '-1' pragma: @@ -998,7 +999,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6DA006CDDCBB4218B885F8F8C61A59DB Ref B: MAA201060513021 Ref C: 2025-02-24T21:57:32Z' + - 'Ref A: 2435AF4A29E94B42B0EF5589A52484D7 Ref B: MAA201060515051 Ref C: 2025-02-26T23:10:25Z' status: code: 200 message: OK @@ -1012,13 +1013,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"1b64a97f-cc74-41ed-aadc-db08c7b80bcf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1d572acf-324c-434e-b76b-8f8ae2bead98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b052b36e-46f2-4975-ac56-3162c352a6ee":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"5583e50f-fa40-48f7-b2b7-8359d7ab1840":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7824b86f-effb-4bdc-b0b3-2cd90c8dbee4":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6cbf230f-29f4-4962-b6c6-32d66332f880":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/bec2b0df-cc07-4567-8d75-c27e80a3683c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:57:33.5244508Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/b68be994-6284-43ee-ae2f-e440b1e1ec91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A33Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:57:33.5250714Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/83664547-8518-47c3-b587-196c1a3e7260?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:57:33.5252887Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:43.362Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:27.089Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"63bad965-1469-4b72-baac-6bcd32ba23fb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"217b608c-5f24-4065-a641-9dadea43f85e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"41e55e50-cd82-480f-98ab-13d9a13b966a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"8c8bcaf7-589f-4371-a114-30752f44b140":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5a423e09-8eb8-4e78-8d68-65dad8313402":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"0822fdfb-65d7-4ecc-8f3c-3b19f0cfceae":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/30f9b249-c24e-4793-bee5-e9cfdf8e270b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A41Z&ske=2025-02-27T06%3A09%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:26.6320919Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/fff5543b-74b6-4036-9a82-8e29fdd9dd19?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A41Z&ske=2025-02-27T06%3A09%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A26Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:26.6331461Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/2c1b3250-6cfb-486b-8426-fa456622bf2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A41Z&ske=2025-02-27T06%3A09%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:26.6334861Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:40.06Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:21.936Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1028,17 +1029,17 @@ interactions: connection: - keep-alive content-length: - - '3378' + - '3381' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:33 GMT + - Wed, 26 Feb 2025 23:10:26 GMT mise-correlation-id: - - 89fbc510-246c-47a1-b0f9-bf084db0a011 + - c85793f7-e852-4951-9165-a225e4fdbd75 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215733Z-r17775d4f98jjkc6hC1SG1dcu800000008f0000000009yds + - 20250226T231026Z-167c755789dbhjzdhC1SG1t7h800000001tg000000004625 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1061,7 +1062,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:56:09.0136066Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:56:09.0136066Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:09:04.7184513Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:09:04.7184513Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1070,9 +1071,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:34 GMT + - Wed, 26 Feb 2025 23:10:27 GMT etag: - - '"4f017bc4-0000-0200-0000-67bceb0f0000"' + - '"8f01ea66-0000-0200-0000-67bf9f290000"' expires: - '-1' pragma: @@ -1088,7 +1089,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7F71DC5708FC48F7A5BD590079C9809D Ref B: MAA201060514033 Ref C: 2025-02-24T21:57:33Z' + - 'Ref A: AFC555BCA7BC4A4DB58E395BCA46DB27 Ref B: MAA201060515031 Ref C: 2025-02-26T23:10:26Z' status: code: 200 message: OK @@ -1102,13 +1103,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://a11ea611-d16f-436c-a709-825de6bc300c.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://fd0e2dbc-1817-44c4-8833-d8ec8d203c34.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"1b64a97f-cc74-41ed-aadc-db08c7b80bcf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1d572acf-324c-434e-b76b-8f8ae2bead98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b052b36e-46f2-4975-ac56-3162c352a6ee":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"5583e50f-fa40-48f7-b2b7-8359d7ab1840":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"7824b86f-effb-4bdc-b0b3-2cd90c8dbee4":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6cbf230f-29f4-4962-b6c6-32d66332f880":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/bec2b0df-cc07-4567-8d75-c27e80a3683c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:57:35.4666926Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/b68be994-6284-43ee-ae2f-e440b1e1ec91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A35Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:57:35.4669553Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://oq2mn0l4m6dbdjmc61vrvbt5.z25.blob.storage.azure.net/cad0aa51-2662-4191-9a52-ab2aa1af6847/83664547-8518-47c3-b587-196c1a3e7260?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A44Z&ske=2025-02-25T04%3A56%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:57:35.4670543Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:43.362Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:27.089Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"63bad965-1469-4b72-baac-6bcd32ba23fb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"217b608c-5f24-4065-a641-9dadea43f85e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"41e55e50-cd82-480f-98ab-13d9a13b966a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"8c8bcaf7-589f-4371-a114-30752f44b140":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5a423e09-8eb8-4e78-8d68-65dad8313402":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"0822fdfb-65d7-4ecc-8f3c-3b19f0cfceae":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/30f9b249-c24e-4793-bee5-e9cfdf8e270b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A42Z&ske=2025-02-27T06%3A09%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:28.1324211Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/fff5543b-74b6-4036-9a82-8e29fdd9dd19?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A42Z&ske=2025-02-27T06%3A09%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:28.1328404Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d2uxamzojclgavrcuud2grf5.z39.blob.storage.azure.net/82ea1bbe-c5b0-40f6-857d-63d4ad57234e/2c1b3250-6cfb-486b-8426-fa456622bf2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A42Z&ske=2025-02-27T06%3A09%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:28.1330134Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:40.06Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:21.936Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1118,17 +1119,17 @@ interactions: connection: - keep-alive content-length: - - '3382' + - '3387' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:35 GMT + - Wed, 26 Feb 2025 23:10:28 GMT mise-correlation-id: - - df94cd63-c96d-4bc2-8edd-13441c06949d + - b1fe24e3-fc59-4036-8398-72d307aeb788 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215734Z-r17775d4f98v6wd6hC1SG1230n00000008pg000000007xz0 + - 20250226T231027Z-167c755789djnhhnhC1SG1sch000000002cg00000000cgmq x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_mark_compare_baseline.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_mark_compare_baseline.yaml index 7f1a369d319..28a464d74be 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_mark_compare_baseline.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_mark_compare_baseline.yaml @@ -3191,8 +3191,8 @@ interactions: x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_regional_load_config.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_regional_load_config.yaml index e4055674f2a..62a5b52b97f 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_regional_load_config.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_regional_load_config.yaml @@ -643,7 +643,7 @@ interactions: connection: - keep-alive content-length: - - '561' + - '565' content-type: - application/json; charset=utf-8 date: @@ -729,7 +729,7 @@ interactions: connection: - keep-alive content-length: - - '565' + - '561' content-type: - application/json; charset=utf-8 date: @@ -1472,7 +1472,7 @@ interactions: connection: - keep-alive content-length: - - '571' + - '569' content-type: - application/json; charset=utf-8 date: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_copy_artifacts_url.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_copy_artifacts_url.yaml index 3ade3ec9437..32c84ab48df 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_copy_artifacts_url.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_copy_artifacts_url.yaml @@ -105,7 +105,8 @@ interactions: {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", "value": "540"}, "4b3e4726-a0d1-43ee-8faa-29d892b0f70b": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,7 +115,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: @@ -542,8 +543,6 @@ interactions: body: string: '{"url":"https://oss9p9kw3li5gxxrl3orjdtp.z32.blob.storage.azure.net/955eabf8-a55f-418e-b519-4c1c32e27b2a/b975db42-4581-4401-a2d6-bdd614e5eedc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A41Z&ske=2025-02-25T04%3A59%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:41.0820525Z","validationStatus":"VALIDATION_INITIATED"}' headers: - accept-ranges: - - bytes api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, 2024-12-01-preview @@ -566,8 +565,8 @@ interactions: x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_create.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_create.yaml index 8fdee50880f..69eb35043ea 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_create.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_create.yaml @@ -105,7 +105,8 @@ interactions: {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", "value": "540"}, "7e1127c5-ed08-46d4-a3a1-fe7b2fa37168": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,7 +115,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_debug_mode.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_debug_mode.yaml index 91c1eddf0b6..61ff8c40327 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_debug_mode.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_debug_mode.yaml @@ -251,7 +251,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - 'Ref A: C3777D252AA5484EB802E8756C3B2539 Ref B: MAA201060516017 Ref C: 2025-02-24T21:58:26Z' status: @@ -263,7 +263,8 @@ interactions: "publicIPDisabled": false, "environmentVariables": {}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 4, "regionalLoadTestConfig": [{"region": "eastus", "engineInstances": 2}, {"region": "eastasia", "engineInstances": - 2}], "quickStartTest": false}, "autoStopCriteria": {}}' + 2}], "quickStartTest": false}, "autoStopCriteria": {}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -272,7 +273,7 @@ interactions: Connection: - keep-alive Content-Length: - - '467' + - '536' Content-Type: - application/merge-patch+json User-Agent: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_delete.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_delete.yaml index 7427f3c0944..a55b7fab1d3 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_delete.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_delete.yaml @@ -14,7 +14,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:39.421158Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:39.421158Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:18:39.568615Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:18:39.568615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -23,9 +23,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:12 GMT + - Wed, 26 Feb 2025 23:19:14 GMT etag: - - '"4f0103d1-0000-0200-0000-67bceba70000"' + - '"8f017a8b-0000-0200-0000-67bfa1680000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 760A1D2AA9104542BBE3EE1C631AE26D Ref B: MAA201060516031 Ref C: 2025-02-24T21:59:12Z' + - 'Ref A: D41573A8AD394E72A49653C2652D1DCD Ref B: MAA201060513023 Ref C: 2025-02-26T23:19:13Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -71,15 +71,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:59:13 GMT + - Wed, 26 Feb 2025 23:19:15 GMT mise-correlation-id: - - e50eedad-f1d7-4144-adfd-a6695eee4e30 + - a8431ffc-020f-4ea1-92df-bd2e3d54b6d6 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215912Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000bdrq + - 20250226T231915Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e259 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -95,17 +95,18 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"c022773e-cd74-4e3c-a478-f02d686242c8": + true}, "passFailCriteria": {"passFailMetrics": {"8520583e-ab83-45c6-ba32-1abd21e4e93c": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "fe3c4d7c-ec51-456c-a3a5-31337692152a": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "388ca397-63b2-4f8f-8384-a8fd6bac7604": + "78"}, "e2a6aea9-afdb-4ef6-97a5-5abf7e815470": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86": {"aggregate": "p75", "clientMetric": "response_time_ms", "condition": ">", "value": - "380"}, "3614749d-d6ce-4535-a2cc-4397cab566fd": {"aggregate": "p99", "clientMetric": - "response_time_ms", "condition": ">", "value": "520"}, "771c815e-be2d-4261-a2e5-d591a23cb5d7": + "380"}, "1324f26c-9b57-4f37-ae79-870237c9dbd1": {"aggregate": "p99", "clientMetric": + "response_time_ms", "condition": ">", "value": "520"}, "cd1bb880-d901-4698-9cd7-2d3a9d52d0ea": {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", - "value": "540"}, "b08f6b31-392b-4593-9ece-1daac8ab8bf2": {"aggregate": "avg", + "value": "540"}, "b53eb8ab-1847-4e63-8d89-f20ce43608e3": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,17 +115,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:13.796Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:13.796Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:19:16.125Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:19:16.125Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -136,15 +137,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:13 GMT + - Wed, 26 Feb 2025 23:19:16 GMT location: - - https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview + - https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview mise-correlation-id: - - 2a0b11e5-5dad-4731-ac79-e10628a12bdb + - e2e2946b-0b86-4c82-9210-3e628f8a0bad strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215913Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000bdsy + - 20250226T231915Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e27g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -162,9 +163,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -181,13 +182,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:14 GMT + - Wed, 26 Feb 2025 23:19:17 GMT mise-correlation-id: - - 0efebb84-f3bf-45ea-90c0-c9dc4f780988 + - 92991474-2b35-4652-b8e1-0d23b68bb21b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215913Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000bdtg + - 20250226T231916Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e290 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -212,14 +213,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A14Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:09:14.5616271Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A17Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:29:17.4904071Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -231,15 +232,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:14 GMT + - Wed, 26 Feb 2025 23:19:17 GMT location: - - https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 4ba32619-69f3-4c6a-a27a-0fc645ba5b97 + - 6fcb6a80-2760-44c4-9ac5-ccc3da2b89c4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215914Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000bdtv + - 20250226T231917Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e2bm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -257,12 +258,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A14Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:09:14.831503Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A17Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:29:17.7725933Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -272,17 +273,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '570' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:14 GMT + - Wed, 26 Feb 2025 23:19:17 GMT mise-correlation-id: - - 2016ba61-e7e4-46b8-a47b-27d94c8c26da + - f8de4bc2-86c9-4a9b-af8a-186659a5d796 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215914Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000bdum + - 20250226T231917Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e2du x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -311,14 +312,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:09:15.2336276Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:29:18.3790631Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -326,19 +327,19 @@ interactions: connection: - keep-alive content-length: - - '566' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:15 GMT + - Wed, 26 Feb 2025 23:19:18 GMT location: - - https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 872e4753-0f6b-413b-bc1c-974e25f279f5 + - a039f995-6680-4687-84dd-9fa23cba7e87 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215914Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000bdv9 + - 20250226T231917Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e2eh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -356,12 +357,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:09:15.51516Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:29:18.6513425Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -371,17 +372,17 @@ interactions: connection: - keep-alive content-length: - - '564' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:15 GMT + - Wed, 26 Feb 2025 23:19:18 GMT mise-correlation-id: - - c5c873e6-f620-4c66-8251-82433173f6b4 + - 4f27a101-fedd-460b-bb11-0372be0412fb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215915Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000bdwe + - 20250226T231918Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e2fv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -490,14 +491,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:15.996362Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:19.1314751Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -505,19 +506,19 @@ interactions: connection: - keep-alive content-length: - - '565' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:16 GMT + - Wed, 26 Feb 2025 23:19:19 GMT location: - - https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 8aca2819-5508-46cb-a33b-a3fc136a4a33 + - 6e01146d-1286-4091-ab6c-d03041cc4861 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215915Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000bdx1 + - 20250226T231918Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e2gz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -535,12 +536,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:16.2833175Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:19.4105849Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -550,17 +551,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '564' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:16 GMT + - Wed, 26 Feb 2025 23:19:19 GMT mise-correlation-id: - - 7c70a8e7-0b9b-4bfc-a3c3-f73733230420 + - 4b7f25d4-5b52-4dbc-b0be-d6e56b16870a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215916Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000bdxt + - 20250226T231919Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e2k3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -578,12 +579,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:21.5446905Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:24.7022622Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -593,17 +594,17 @@ interactions: connection: - keep-alive content-length: - - '564' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:21 GMT + - Wed, 26 Feb 2025 23:19:24 GMT mise-correlation-id: - - 5400b854-6bd8-43c1-828c-649fa0f7e01b + - cfc3e069-89ea-40ad-bfdd-94fef56f4db5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215921Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000be5y + - 20250226T231924Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e32m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -621,12 +622,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:26.8394775Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:29.976586Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -636,17 +637,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:26 GMT + - Wed, 26 Feb 2025 23:19:30 GMT mise-correlation-id: - - c9e020b1-8885-4206-b29f-47e2299743ba + - 83f901a2-f1d9-445b-be09-07a6c61b964c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215926Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000bec5 + - 20250226T231929Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e3gz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -664,12 +665,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:32.0985249Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:35.2382535Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -679,17 +680,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:32 GMT + - Wed, 26 Feb 2025 23:19:35 GMT mise-correlation-id: - - 2f2ce0be-f5e3-43e5-9ea8-6817e0694ffa + - 94abb18a-ff4f-49c8-9813-a2203844bea7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215931Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000bem1 + - 20250226T231935Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e3za x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -707,12 +708,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:37.4025564Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:40.5009268Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -722,17 +723,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '566' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:37 GMT + - Wed, 26 Feb 2025 23:19:40 GMT mise-correlation-id: - - 09a7cdce-9564-4dd0-b2a9-4cced7c2d4b0 + - b6674a5d-89ab-4877-ba0f-c931e4881452 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215937Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000beu8 + - 20250226T231940Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e4dy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -750,12 +751,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:42.669272Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:45.7639978Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -765,17 +766,60 @@ interactions: connection: - keep-alive content-length: - - '561' + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Feb 2025 23:19:45 GMT + mise-correlation-id: + - 072347bf-76a6-4a91-8871-7f3d23e94326 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20250226T231945Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e4vh + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + method: GET + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + response: + body: + string: '{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:51.0288864Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-12-01-preview + connection: + - keep-alive + content-length: + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:42 GMT + - Wed, 26 Feb 2025 23:19:51 GMT mise-correlation-id: - - 076b50a5-cade-4615-b0f3-c4d5571c95ed + - c38337de-169b-4a4a-a53b-ded180fd474d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215942Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000bf16 + - 20250226T231950Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e5cp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -793,12 +837,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:47.9430312Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:56.2879916Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -812,13 +856,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:48 GMT + - Wed, 26 Feb 2025 23:19:56 GMT mise-correlation-id: - - 0813c397-7704-43a3-adfd-c6b8120e4bee + - da4945ab-20e2-404d-9bd5-7e310150e75c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215947Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000bfc7 + - 20250226T231956Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e5ta x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -836,13 +880,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:59:48.2042105Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A48Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:48.2046854Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:59:48.2048087Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:13.796Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:47.232Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A19%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:19:57.2517124Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A19%3A57Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:19:57.2520489Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A19%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:19:57.2521749Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:19:16.125Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:19:51.16Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -852,17 +896,17 @@ interactions: connection: - keep-alive content-length: - - '3371' + - '3364' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:48 GMT + - Wed, 26 Feb 2025 23:19:57 GMT mise-correlation-id: - - 639f5644-01b3-4519-8ec7-71287f953f89 + - affae097-c3c6-414b-91f0-f612b4c6e6d3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215948Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000bfcq + - 20250226T231956Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000e5u0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -885,7 +929,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:39.421158Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:39.421158Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:18:39.568615Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:18:39.568615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -894,9 +938,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:49 GMT + - Wed, 26 Feb 2025 23:19:57 GMT etag: - - '"4f0103d1-0000-0200-0000-67bceba70000"' + - '"8f017a8b-0000-0200-0000-67bfa1680000"' expires: - '-1' pragma: @@ -912,7 +956,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0ECB7DF1938649A7980341B46E522168 Ref B: MAA201060514047 Ref C: 2025-02-24T21:59:48Z' + - 'Ref A: 839CEE3BC4F349C2935D1F5AEE950BB9 Ref B: MAA201060513027 Ref C: 2025-02-26T23:19:57Z' status: code: 200 message: OK @@ -926,13 +970,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:59:49.6966317Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:49.6970057Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:59:49.6971303Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:13.796Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:47.232Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A19%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:19:59.2341834Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A19%3A59Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:19:59.2344693Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A19%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:19:59.2345602Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:19:16.125Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:19:51.16Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -942,17 +986,17 @@ interactions: connection: - keep-alive content-length: - - '3385' + - '3378' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:49 GMT + - Wed, 26 Feb 2025 23:19:59 GMT mise-correlation-id: - - 94809b5c-ad7a-4382-b8fb-a9918e62584a + - a6b4d66f-c6cd-4522-bcd2-9eba204bc4fd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215949Z-r17775d4f98nkpf8hC1SG11nqg000000140g000000004kre + - 20250226T231958Z-167c755789dbhjzdhC1SG1t7h800000001vg000000000wg9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -975,7 +1019,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:39.421158Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:39.421158Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:18:39.568615Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:18:39.568615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -984,9 +1028,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:50 GMT + - Wed, 26 Feb 2025 23:20:00 GMT etag: - - '"4f0103d1-0000-0200-0000-67bceba70000"' + - '"8f017a8b-0000-0200-0000-67bfa1680000"' expires: - '-1' pragma: @@ -1002,7 +1046,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4702AACBF1AA4DD3B9CA6B801FAA4F17 Ref B: MAA201060513045 Ref C: 2025-02-24T21:59:50Z' + - 'Ref A: 4B0E208BEFB3447CBA8BA2A72F5FEA30 Ref B: MAA201060515047 Ref C: 2025-02-26T23:19:59Z' status: code: 200 message: OK @@ -1016,9 +1060,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with @@ -1032,15 +1076,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:59:51 GMT + - Wed, 26 Feb 2025 23:20:01 GMT mise-correlation-id: - - 3e45fcda-21f4-41f7-b36f-468b765a6735 + - 060f0db4-3cb8-43a2-b425-216a4228b3c4 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215951Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009k0y + - 20250226T232000Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000k2kk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1064,12 +1108,12 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:54.0859077Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:59:54.0855664Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:54.0860275Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:54.0861213Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:59:54.0862118Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T21%3A59%3A54Z&se=2025-02-24T22%3A59%3A54Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T22:59:54.0862998Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"ACCEPTED","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:54.075Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A05Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:05.313277Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:05.3128709Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A05Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:05.3134256Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:05.313573Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:05.3137154Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A05Z&se=2025-02-27T00%3A20%3A05Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:05.3138611Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"ACCEPTED","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:05.304Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1077,19 +1121,19 @@ interactions: connection: - keep-alive content-length: - - '5429' + - '5432' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:54 GMT + - Wed, 26 Feb 2025 23:20:05 GMT location: - - https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + - https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview mise-correlation-id: - - 40783a9a-ad1d-4342-a3d3-ba7f978c7263 + - b2f11004-19d4-47d6-9a4c-adc14efb9c9a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215951Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009k1f + - 20250226T232001Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000k2p3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1107,12 +1151,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:54.4287414Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:59:54.4283878Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:54.4288855Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:54.4290288Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:59:54.4291662Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T21%3A59%3A54Z&se=2025-02-24T22%3A59%3A54Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T22:59:54.4293104Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"NOTSTARTED","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:54.287Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A05Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:05.6477963Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:05.6471217Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A05Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:05.6479197Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:05.648054Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:05.6481962Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A05Z&se=2025-02-27T00%3A20%3A05Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:05.6483358Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"NOTSTARTED","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:05.532Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1122,17 +1166,17 @@ interactions: connection: - keep-alive content-length: - - '5478' + - '5482' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:54 GMT + - Wed, 26 Feb 2025 23:20:05 GMT mise-correlation-id: - - cc107d56-5f4d-4b6e-ac6c-1134b4220ed5 + - 4f8fdb4d-086c-4cd0-8ba7-95525c3bd56e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215954Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009k6q + - 20250226T232005Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000k339 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1150,12 +1194,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A59Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:59.6827142Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:59:59.6824511Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A59Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:59.6828039Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A59Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:59:59.6828942Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A59%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:59:59.6829797Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T21%3A59%3A59Z&se=2025-02-24T22%3A59%3A59Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T22:59:59.6857186Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:54.529Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A10Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:10.9155933Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:10.9150644Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A10Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:10.9157577Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:10.9159541Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:10.9161244Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A10Z&se=2025-02-27T00%3A20%3A10Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:10.916292Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:05.767Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1165,17 +1209,17 @@ interactions: connection: - keep-alive content-length: - - '5486' + - '5480' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:59 GMT + - Wed, 26 Feb 2025 23:20:11 GMT mise-correlation-id: - - 2dec2906-cd1b-431d-a6e7-79e40d678024 + - 81bcc974-6d98-487f-acb0-1eb0e10d4ea1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215959Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009kev + - 20250226T232010Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000k3nv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1193,12 +1237,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A04Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:04.9398448Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:04.9393813Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A04Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:04.9401623Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A04Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:04.9402613Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:04.9403582Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A04Z&se=2025-02-24T23%3A00%3A04Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:04.9404562Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:54.529Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A16Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:16.1708943Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:16.1704111Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A16Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:16.1710818Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:16.1712851Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:16.171473Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A16Z&se=2025-02-27T00%3A20%3A16Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:16.1716732Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:05.767Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1208,17 +1252,17 @@ interactions: connection: - keep-alive content-length: - - '5480' + - '5478' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:05 GMT + - Wed, 26 Feb 2025 23:20:16 GMT mise-correlation-id: - - 14f4f63e-d0f3-4629-9f8c-08a98daff120 + - a32903b5-064e-463e-ab9c-6c3ed998a681 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220004Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009ks1 + - 20250226T232016Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000k45h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1236,12 +1280,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A10Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:10.22703Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:10.22661Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A10Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:10.2271794Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:10.2273226Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:10.2274883Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A10Z&se=2025-02-24T23%3A00%3A10Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:10.2276124Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:54.529Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A21Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:21.5253723Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:21.5246592Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A21Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:21.5255219Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A21Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:21.5258686Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:21.5260007Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A21Z&se=2025-02-27T00%3A20%3A21Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:21.5263241Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:05.767Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1251,17 +1295,17 @@ interactions: connection: - keep-alive content-length: - - '5484' + - '5485' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:10 GMT + - Wed, 26 Feb 2025 23:20:21 GMT mise-correlation-id: - - 4fea1c5d-50fb-4db9-bfa1-2b5f0798a637 + - 9ec5080a-5c0f-4dd5-8bf0-dd1462ce1439 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220010Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009m43 + - 20250226T232021Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000k4qn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1279,12 +1323,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A15Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:15.4795111Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:15.4791311Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A15Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:15.4796318Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:15.4797513Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:15.4798701Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A15Z&se=2025-02-24T23%3A00%3A15Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:15.4799969Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:54.529Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A26Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:26.7787448Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:26.7782437Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A26Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:26.7789097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A26Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:26.7790703Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:26.7792301Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A26Z&se=2025-02-27T00%3A20%3A26Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:26.7793931Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:05.767Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1294,17 +1338,17 @@ interactions: connection: - keep-alive content-length: - - '5484' + - '5485' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:15 GMT + - Wed, 26 Feb 2025 23:20:27 GMT mise-correlation-id: - - ee540472-ab39-441a-9df3-537526563b25 + - dc09fbf7-f744-4a34-9d51-027e6833730f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220015Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009me3 + - 20250226T232026Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000k59r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1322,12 +1366,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A20Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:20.7317485Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:20.7313128Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A20Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:20.7319514Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A20Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:20.7321317Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:20.7322948Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A20Z&se=2025-02-24T23%3A00%3A20Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:20.7324834Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:54.529Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A32Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:32.1946249Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:32.1942559Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A32Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:32.1947263Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A32Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:32.1948236Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:32.1949202Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A32Z&se=2025-02-27T00%3A20%3A32Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:32.1950076Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:05.767Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1337,17 +1381,17 @@ interactions: connection: - keep-alive content-length: - - '5488' + - '5479' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:20 GMT + - Wed, 26 Feb 2025 23:20:32 GMT mise-correlation-id: - - 87b45e2d-1aef-4bdb-8742-6552a8206bef + - 5c6f20ba-3b4f-437a-8253-11b557fc4abc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220020Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009mtt + - 20250226T232032Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000k5x1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1365,12 +1409,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A25Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:25.9864322Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:25.9859276Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A25Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:25.9865268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A25Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:25.986619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:25.9867156Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A25Z&se=2025-02-24T23%3A00%3A25Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:25.986805Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:54.529Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A37Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:37.4463619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:37.4460066Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A37Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:37.4464896Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A37Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:37.4466129Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:37.4467204Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A37Z&se=2025-02-27T00%3A20%3A37Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:37.4468433Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:05.767Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1380,17 +1424,17 @@ interactions: connection: - keep-alive content-length: - - '5476' + - '5483' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:26 GMT + - Wed, 26 Feb 2025 23:20:37 GMT mise-correlation-id: - - a1bdeeee-1ce0-4b91-ac56-f4a40aed69b7 + - 2980e2c0-0c2e-480c-a047-a349622aea82 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220025Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009n70 + - 20250226T232037Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000k6bu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1408,12 +1452,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A31Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:31.2395315Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:31.2392407Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A31Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:31.2396082Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:31.2398171Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:31.2399427Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A31Z&se=2025-02-24T23%3A00%3A31Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:31.2400612Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:54.529Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A42Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:42.709382Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:42.7090271Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A42Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:42.7094758Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A42Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:42.7095674Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:42.7096664Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A42Z&se=2025-02-27T00%3A20%3A42Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:42.7097555Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:05.767Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1423,17 +1467,17 @@ interactions: connection: - keep-alive content-length: - - '5478' + - '5484' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:31 GMT + - Wed, 26 Feb 2025 23:20:42 GMT mise-correlation-id: - - e9a4fc26-9f09-45c7-a704-0ec0ee852f9e + - 6edaf88a-ac11-4ad2-8ed9-72468bf0ee56 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220031Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009ngu + - 20250226T232042Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000k6vn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1451,12 +1495,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A36Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:36.4903491Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:36.4899753Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A36Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:36.4904454Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A36Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:36.4905343Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:36.4906182Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A36Z&se=2025-02-24T23%3A00%3A36Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:36.4907159Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:54.529Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A48Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:48.0205067Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:48.0194684Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A48Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:48.0207034Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A48Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:48.0208745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:48.0210599Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A48Z&se=2025-02-27T00%3A20%3A48Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:48.0212287Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:05.767Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1466,17 +1510,17 @@ interactions: connection: - keep-alive content-length: - - '5472' + - '5483' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:36 GMT + - Wed, 26 Feb 2025 23:20:48 GMT mise-correlation-id: - - 708fc4ba-4406-4c49-962c-7ad026371803 + - f3cd31a2-5c34-4256-a72d-6d9eb0d89a0d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220036Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009nsc + - 20250226T232047Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000k7g0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1494,12 +1538,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A41Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:41.8323126Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:41.8320192Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A41Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:41.8323928Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:41.832472Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:41.8325494Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A41Z&se=2025-02-24T23%3A00%3A41Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:41.8326146Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:54.529Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A53Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:53.2761084Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:53.2756107Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A53Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:53.2762444Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A53Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:53.2763874Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:53.2765205Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A53Z&se=2025-02-27T00%3A20%3A53Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:53.2766515Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:05.767Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1513,13 +1557,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:41 GMT + - Wed, 26 Feb 2025 23:20:53 GMT mise-correlation-id: - - 860f46b1-2ad8-44a5-aeec-2d09154f564a + - 2dd30112-f1c3-4f87-a26c-b16e2c2409e0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220041Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009p4n + - 20250226T232053Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000k81b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1537,12 +1581,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A47Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:47.0830693Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:47.0826938Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A47Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:47.0832066Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:47.0833486Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:47.0834805Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A47Z&se=2025-02-24T23%3A00%3A47Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:47.0836224Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:54.529Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A58Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:58.565321Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:58.5650392Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A58Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:58.5654204Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A58Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:58.565512Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:58.5656059Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A58Z&se=2025-02-27T00%3A20%3A58Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:58.5656931Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:05.767Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1552,17 +1596,17 @@ interactions: connection: - keep-alive content-length: - - '5484' + - '5485' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:47 GMT + - Wed, 26 Feb 2025 23:20:58 GMT mise-correlation-id: - - 81a6fa2e-b05b-4574-a8b7-e5d8a765b11d + - 7247736c-cc85-4a7e-8d09-70733a8d7bd7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220046Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009pcf + - 20250226T232058Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000k8ht x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1580,12 +1624,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A52Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:52.3676617Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:52.367327Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A52Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:52.3677532Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A52Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:52.3680439Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:52.3681491Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A52Z&se=2025-02-24T23%3A00%3A52Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:52.3682558Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"CONFIGURING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:49.575Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A03Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:03.8228879Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:03.8224226Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A03Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:03.8230526Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A03Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:03.8232404Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:03.8234119Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A03Z&se=2025-02-27T00%3A21%3A03Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:03.82359Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"CONFIGURING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:02.528Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1595,17 +1639,17 @@ interactions: connection: - keep-alive content-length: - - '5478' + - '5490' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:52 GMT + - Wed, 26 Feb 2025 23:21:03 GMT mise-correlation-id: - - a456d911-5eb7-41bd-8a10-97f7bdc45929 + - bb9d003b-21a6-480a-a60f-28e3ee5ea636 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220052Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009pmn + - 20250226T232103Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000k950 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1623,12 +1667,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A57Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:57.6208157Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:57.6204233Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A57Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:57.6209807Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A57Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:57.6211221Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:57.621254Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A57Z&se=2025-02-24T23%3A00%3A57Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:57.6213843Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A09Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:09.0988587Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:09.0985655Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A09Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:09.0989576Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A09Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:09.0990506Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:09.0991584Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A09Z&se=2025-02-27T00%3A21%3A09Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:09.099255Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1638,17 +1682,17 @@ interactions: connection: - keep-alive content-length: - - '5484' + - '5483' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:57 GMT + - Wed, 26 Feb 2025 23:21:09 GMT mise-correlation-id: - - d9b4716f-e9f1-49a7-ba03-b272ee4dbc54 + - f06c0c70-e37b-4368-b061-db380681282c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220057Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009pvu + - 20250226T232108Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000k9mg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1666,12 +1710,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A03Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:03.6053925Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:03.6049008Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A03Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:03.6055607Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A03Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:03.6057353Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:03.6059004Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A03Z&se=2025-02-24T23%3A01%3A03Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:03.6060676Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A14Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:14.402495Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:14.4021672Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A14Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:14.4026177Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A14Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:14.4027162Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:14.4028107Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A14Z&se=2025-02-27T00%3A21%3A14Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:14.4029051Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1681,17 +1725,17 @@ interactions: connection: - keep-alive content-length: - - '5477' + - '5475' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:03 GMT + - Wed, 26 Feb 2025 23:21:14 GMT mise-correlation-id: - - 0988e903-ecbf-496b-a57c-844291c6420f + - fc7e85c3-f2cc-4fdf-b50f-1c32b3ce0960 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220102Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009q3p + - 20250226T232114Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000ka33 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1709,12 +1753,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A08Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:08.8577372Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:08.8574563Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A08Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:08.8578283Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A08Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:08.8578887Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:08.8579384Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A08Z&se=2025-02-24T23%3A01%3A08Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:08.8579863Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A19Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:19.704363Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:19.7040894Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A19Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:19.7047135Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A19Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:19.7048121Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:19.7051647Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A19Z&se=2025-02-27T00%3A21%3A19Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:19.7052581Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1724,17 +1768,17 @@ interactions: connection: - keep-alive content-length: - - '5485' + - '5475' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:08 GMT + - Wed, 26 Feb 2025 23:21:19 GMT mise-correlation-id: - - d5d2bcca-b672-4150-9c12-99ec73fbb312 + - c0271d6f-bacb-4be1-81c4-bcef94fa9ac6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220108Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009qcu + - 20250226T232119Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kagu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1752,12 +1796,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A14Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:14.1270357Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:14.1265669Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A14Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:14.1272495Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A14Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:14.1274316Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:14.1275963Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A14Z&se=2025-02-24T23%3A01%3A14Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:14.1277793Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A24Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:24.9596556Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:24.9593727Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A24Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:24.959767Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A24Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:24.9598677Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:24.9599565Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A24Z&se=2025-02-27T00%3A21%3A24Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:24.9600487Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1767,17 +1811,17 @@ interactions: connection: - keep-alive content-length: - - '5479' + - '5475' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:14 GMT + - Wed, 26 Feb 2025 23:21:25 GMT mise-correlation-id: - - dd1c9c12-5827-4687-9cfa-c141047ad14b + - eb7153bd-9757-4c70-90d8-35e78df470dd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220113Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009qnv + - 20250226T232124Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kaz0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1795,12 +1839,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A19Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:19.3797474Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:19.3792344Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A19Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:19.3799395Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A19Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:19.3801531Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:19.3803028Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A19Z&se=2025-02-24T23%3A01%3A19Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:19.3805043Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A30Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:30.2111721Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:30.2107247Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A30Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:30.2113507Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A30Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:30.2115685Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:30.2117739Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A30Z&se=2025-02-27T00%3A21%3A30Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:30.2119434Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1810,17 +1854,17 @@ interactions: connection: - keep-alive content-length: - - '5479' + - '5482' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:19 GMT + - Wed, 26 Feb 2025 23:21:30 GMT mise-correlation-id: - - 8d13e971-11fb-4552-a01b-00546014a881 + - 0773060b-695a-4e07-b0a8-7deda1c6f68a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220119Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009qyb + - 20250226T232130Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kbdh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1838,12 +1882,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A24Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:24.6306716Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:24.630181Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A24Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:24.6308394Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A24Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:24.6310315Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:24.6312204Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A24Z&se=2025-02-24T23%3A01%3A24Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:24.631393Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A35Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:35.4854921Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:35.485139Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A35Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:35.4856151Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A35Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:35.4857426Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:35.485899Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A35Z&se=2025-02-27T00%3A21%3A35Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:35.4860272Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1853,17 +1897,17 @@ interactions: connection: - keep-alive content-length: - - '5477' + - '5486' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:24 GMT + - Wed, 26 Feb 2025 23:21:35 GMT mise-correlation-id: - - ca76bcfe-3102-499a-92f8-55bfbb9db39b + - 6ceeb994-d7de-4470-9f72-00ef866c3ee8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220124Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009r9r + - 20250226T232135Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kby0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1881,12 +1925,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A29Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:29.8815338Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:29.8811089Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A29Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:29.8817036Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A29Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:29.8818755Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:29.8820455Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A29Z&se=2025-02-24T23%3A01%3A29Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:29.8822145Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A40Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:40.7404604Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:40.7399214Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A40Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:40.7407471Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A40Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:40.7408278Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:40.740905Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A40Z&se=2025-02-27T00%3A21%3A40Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:40.7409834Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1896,17 +1940,17 @@ interactions: connection: - keep-alive content-length: - - '5479' + - '5477' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:29 GMT + - Wed, 26 Feb 2025 23:21:40 GMT mise-correlation-id: - - 91e70d4b-97a6-4eb8-928b-969f27c3ff4b + - 3b8f251a-1504-4a96-a006-b8d3a5e04e77 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220129Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009rgt + - 20250226T232140Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kcbp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1924,12 +1968,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A35Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:35.1337264Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:35.1330012Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A35Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:35.1340042Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A35Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:35.1341012Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:35.1341999Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A35Z&se=2025-02-24T23%3A01%3A35Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:35.1342944Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A46Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:46.0112874Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:46.010858Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A46Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:46.0114719Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A46Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:46.0116361Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:46.0118242Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A46Z&se=2025-02-27T00%3A21%3A46Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:46.0119862Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1939,17 +1983,17 @@ interactions: connection: - keep-alive content-length: - - '5467' + - '5473' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:35 GMT + - Wed, 26 Feb 2025 23:21:46 GMT mise-correlation-id: - - 69246d4f-7deb-4a86-9c40-e6889130bb4c + - d16e73ed-8e91-47a0-a4e3-2b30cfa7c34c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220135Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009rrn + - 20250226T232145Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kcsd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1967,12 +2011,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A40Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:40.388607Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:40.3883736Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A40Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:40.3886717Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A40Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:40.3887349Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:40.388796Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A40Z&se=2025-02-24T23%3A01%3A40Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:40.3888588Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A51Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:51.2692788Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:51.2689952Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A51Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:51.2693778Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A51Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:51.2694776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:51.2695745Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A51Z&se=2025-02-27T00%3A21%3A51Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:51.2696733Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1982,17 +2026,17 @@ interactions: connection: - keep-alive content-length: - - '5471' + - '5486' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:40 GMT + - Wed, 26 Feb 2025 23:21:51 GMT mise-correlation-id: - - 53210fbf-23e1-4179-8ce4-1fb9e139433b + - 0e7eb765-6dd8-4830-b996-4a1d8a531c73 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220140Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009rzv + - 20250226T232151Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kd58 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2010,12 +2054,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A45Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:45.6449755Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:45.6438915Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A45Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:45.6452194Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A45Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:45.6454329Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:45.6458835Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A45Z&se=2025-02-24T23%3A01%3A45Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:45.6461284Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A56Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:56.5451323Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:56.5446995Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A56Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:56.5452216Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A56Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:56.5454013Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:56.5454962Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A56Z&se=2025-02-27T00%3A21%3A56Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:56.5455838Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2025,17 +2069,17 @@ interactions: connection: - keep-alive content-length: - - '5477' + - '5478' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:45 GMT + - Wed, 26 Feb 2025 23:21:56 GMT mise-correlation-id: - - b41544a6-9486-4340-b240-58b5f4652d8d + - bf97129d-011f-4312-9515-3b1fba7cf2d6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220145Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009s60 + - 20250226T232156Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kdh2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2053,12 +2097,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A50Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:50.904411Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:50.9040315Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A50Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:50.9045482Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A50Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:50.9046918Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:50.904833Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A50Z&se=2025-02-24T23%3A01%3A50Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:50.9049892Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A01Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:01.796357Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:01.7960754Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A01Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:01.7964555Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:01.7965463Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:01.7966418Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A01Z&se=2025-02-27T00%3A22%3A01Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:01.7967354Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2068,17 +2112,17 @@ interactions: connection: - keep-alive content-length: - - '5479' + - '5473' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:51 GMT + - Wed, 26 Feb 2025 23:22:01 GMT mise-correlation-id: - - d874a15f-adf7-40d9-88dc-1b2e6fce3841 + - c3937932-b92c-4f07-96e3-75c0a4e8fb2c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220150Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009sg4 + - 20250226T232201Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000ke11 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2096,12 +2140,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A56Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:56.154518Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:56.1541071Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A56Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:56.1547192Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A56Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:56.1548887Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:56.1550569Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A56Z&se=2025-02-24T23%3A01%3A56Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:56.1552191Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A07Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:07.0660543Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:07.0653821Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A07Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:07.0662757Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A07Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:07.0665115Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:07.0667159Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A07Z&se=2025-02-27T00%3A22%3A07Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:07.0668428Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2111,17 +2155,17 @@ interactions: connection: - keep-alive content-length: - - '5476' + - '5484' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:56 GMT + - Wed, 26 Feb 2025 23:22:07 GMT mise-correlation-id: - - d437d965-ce32-4b11-83b9-c35906d44618 + - 7bcac3e9-73a1-40d4-83d9-3bca2be88ac0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220156Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009srg + - 20250226T232206Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kegp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2139,12 +2183,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A01Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:01.8517579Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:01.8509663Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A01Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:01.8520992Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:01.8524376Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:01.8527213Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A01Z&se=2025-02-24T23%3A02%3A01Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:01.8529688Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A13Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:13.1484642Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:13.1480153Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A13Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:13.1486211Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:13.1487334Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:13.1488217Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A13Z&se=2025-02-27T00%3A22%3A13Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:13.1489093Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2154,17 +2198,17 @@ interactions: connection: - keep-alive content-length: - - '5479' + - '5484' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:01 GMT + - Wed, 26 Feb 2025 23:22:13 GMT mise-correlation-id: - - a28afc4d-ab9b-46e6-a39f-5efcecef395e + - 93171b7d-b265-4ca7-9ff2-83440e30cf35 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220201Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009t2x + - 20250226T232212Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kexm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2182,12 +2226,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A07Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:07.2919404Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:07.2914304Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A07Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:07.2921266Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A07Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:07.2923204Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:07.2925813Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A07Z&se=2025-02-24T23%3A02%3A07Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:07.2927631Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A18Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:18.427961Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:18.4276577Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A18Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:18.4280304Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A18Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:18.4280998Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:18.4281658Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A18Z&se=2025-02-27T00%3A22%3A18Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:18.4282297Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2197,17 +2241,17 @@ interactions: connection: - keep-alive content-length: - - '5479' + - '5473' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:07 GMT + - Wed, 26 Feb 2025 23:22:18 GMT mise-correlation-id: - - 74fd7ac8-0935-4fde-90b3-790b93938681 + - 23c19d48-16e3-4b50-b36a-847a5d234199 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220207Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009tav + - 20250226T232218Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kfhc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2225,12 +2269,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A12Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:12.5432951Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:12.5428782Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A12Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:12.5434615Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A12Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:12.543629Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:12.5438076Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A12Z&se=2025-02-24T23%3A02%3A12Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:12.5439765Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A23Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:23.6818619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:23.681535Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A23Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:23.6819526Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:23.6820387Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:23.6821254Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A23Z&se=2025-02-27T00%3A22%3A23Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:23.6822105Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2240,17 +2284,17 @@ interactions: connection: - keep-alive content-length: - - '5478' + - '5471' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:12 GMT + - Wed, 26 Feb 2025 23:22:23 GMT mise-correlation-id: - - 46ba55aa-236d-4733-baaf-f23bcebb3a3c + - 03c10a49-9637-41bd-8b04-2f8a4833a634 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220212Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009th1 + - 20250226T232223Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kg2s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2268,12 +2312,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A17Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:17.7931753Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:17.7928199Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A17Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:17.7933063Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A17Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:17.7934474Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:17.793578Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A17Z&se=2025-02-24T23%3A02%3A17Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:17.7937138Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A28Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:28.9395478Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:28.9392629Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A28Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:28.9396474Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:28.9397457Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:28.9398429Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A28Z&se=2025-02-27T00%3A22%3A28Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:28.9399402Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2283,17 +2327,17 @@ interactions: connection: - keep-alive content-length: - - '5480' + - '5474' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:17 GMT + - Wed, 26 Feb 2025 23:22:29 GMT mise-correlation-id: - - 9fdeea6f-2553-49c7-8d43-49d2311ee7f1 + - 4046c18f-0676-4b84-937f-c6085b5f24be strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220217Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009tqy + - 20250226T232228Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kgnp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2311,12 +2355,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A23Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:23.0464355Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:23.0459275Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A23Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:23.0465245Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:23.0466101Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:23.046693Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A23Z&se=2025-02-24T23%3A02%3A23Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:23.0467778Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A34Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:34.1926854Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:34.1922583Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A34Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:34.1928577Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A34Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:34.1930318Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:34.1931986Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A05Z&ske=2025-02-28T08%3A20%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A34Z&se=2025-02-27T00%3A22%3A34Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:34.1933669Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2326,17 +2370,17 @@ interactions: connection: - keep-alive content-length: - - '5474' + - '5488' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:23 GMT + - Wed, 26 Feb 2025 23:22:34 GMT mise-correlation-id: - - 7b88ad27-e6a7-49f0-9a90-196b518bc47f + - c8d27df0-b3d8-42d1-8073-10d3ff948138 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220222Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009tx0 + - 20250226T232234Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000khap x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2354,12 +2398,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A28Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:28.2963978Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:28.2957255Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A28Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:28.2966762Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:28.2969728Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:28.2972634Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A28Z&se=2025-02-24T23%3A02%3A28Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:28.2975317Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A39Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:39.4563605Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:39.4559261Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A39Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:39.4565325Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A39Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:39.4567403Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:39.4569001Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A39Z&se=2025-02-27T00%3A22%3A39Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:39.4570415Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2369,17 +2413,17 @@ interactions: connection: - keep-alive content-length: - - '5487' + - '5474' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:28 GMT + - Wed, 26 Feb 2025 23:22:39 GMT mise-correlation-id: - - 211f7e68-c269-475d-8c7f-6f822561fe3a + - e7a515db-54e5-46bb-956c-11d34a4523fb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220228Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009u37 + - 20250226T232239Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000khxr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2397,12 +2441,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A33Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:33.5491439Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:33.5487856Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A33Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:33.5492733Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A33Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:33.5493963Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:33.54957Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A15Z&ske=2025-02-25T04%3A59%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A33Z&se=2025-02-24T23%3A02%3A33Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:33.5497287Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A44Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:44.7068751Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:44.706605Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A44Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:44.7069596Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A44Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:44.707061Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:44.7071715Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A44Z&se=2025-02-27T00%3A22%3A44Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:44.7072697Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2412,17 +2456,17 @@ interactions: connection: - keep-alive content-length: - - '5481' + - '5472' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:33 GMT + - Wed, 26 Feb 2025 23:22:44 GMT mise-correlation-id: - - 239bf0d0-cd16-4aef-9a7f-f713907b42f4 + - 896f9c19-659c-4981-a171-41b28c2ed0a6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220233Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009u94 + - 20250226T232244Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kkh6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2440,12 +2484,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A38Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:38.8055586Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:38.805167Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A38Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:38.8056611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A38Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:38.8057612Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:38.8058597Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A53Z&ske=2025-02-26T06%3A59%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A38Z&se=2025-02-24T23%3A02%3A38Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:38.8059551Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A49Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:49.992644Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:49.9920089Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A49Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:49.9928168Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:49.9930035Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:49.9932316Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A49Z&se=2025-02-27T00%3A22%3A49Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:49.9934503Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2455,17 +2499,17 @@ interactions: connection: - keep-alive content-length: - - '5478' + - '5483' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:38 GMT + - Wed, 26 Feb 2025 23:22:50 GMT mise-correlation-id: - - 3d3c1b3e-7e01-411a-bf8a-c1ba69e01513 + - f9032f8e-aa70-4a9d-b166-a1e2656f0da9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220238Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009udp + - 20250226T232249Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000km0u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2483,12 +2527,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A44Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:44.0654748Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:44.0650107Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A44Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:44.0657164Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A44Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:44.0659622Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:44.0661146Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A44Z&se=2025-02-24T23%3A02%3A44Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:44.066352Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-24T21:59:54.287Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:55.514Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A55Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:55.2561265Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:55.2557626Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A55Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:55.2562549Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:55.2563822Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:55.2565099Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A55Z&se=2025-02-27T00%3A22%3A55Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:55.2566349Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:05.532Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:07.543Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2498,17 +2542,17 @@ interactions: connection: - keep-alive content-length: - - '5488' + - '5478' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:44 GMT + - Wed, 26 Feb 2025 23:22:55 GMT mise-correlation-id: - - a92c25b3-b50b-4b10-b03c-c8c033460ded + - e802c79c-6c25-431f-9480-793fa257519a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220243Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009uvw + - 20250226T232255Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kmff x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2526,13 +2570,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Logs - and results files are being processed. Refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A49Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:49.455918Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:49.4557064Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A49Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:49.4560175Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:49.4561134Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:49.4562093Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A16Z&ske=2025-02-25T04%3A59%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A49Z&se=2025-02-24T23%3A02%3A49Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:49.4563045Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"FAILED","startDateTime":"2025-02-24T21:59:54.287Z","endDateTime":"2025-02-24T22:02:47.727Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:02:48.33Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Logs + and results files are being processed. Refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A00Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:00.5185288Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:23:00.5178552Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A00Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:00.5187894Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:00.5190028Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:23:00.5192477Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A23%3A00Z&se=2025-02-27T00%3A23%3A00Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:23:00.5194616Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"FAILED","startDateTime":"2025-02-26T23:20:05.532Z","endDateTime":"2025-02-26T23:22:59.876Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:22:59.969Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2542,17 +2586,17 @@ interactions: connection: - keep-alive content-length: - - '5632' + - '5621' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:49 GMT + - Wed, 26 Feb 2025 23:23:00 GMT mise-correlation-id: - - 9c6f44ff-04a6-47ea-8ebe-56faedff9249 + - a2417eb2-8509-48cf-89f0-26b57396d067 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220249Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009v27 + - 20250226T232300Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kn0q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2575,7 +2619,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:39.421158Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:39.421158Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:18:39.568615Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:18:39.568615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2584,9 +2628,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:49 GMT + - Wed, 26 Feb 2025 23:23:01 GMT etag: - - '"4f0103d1-0000-0200-0000-67bceba70000"' + - '"8f017a8b-0000-0200-0000-67bfa1680000"' expires: - '-1' pragma: @@ -2602,7 +2646,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6D75D7AAB4E14A6392120976DC797E70 Ref B: MAA201060514031 Ref C: 2025-02-24T22:02:49Z' + - 'Ref A: C6BA0A3F856D465681D96EAEBD40913D Ref B: MAA201060515031 Ref C: 2025-02-26T23:23:00Z' status: code: 200 message: OK @@ -2616,13 +2660,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-12-01-preview&testId=delete-test-case + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-12-01-preview&testId=delete-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"c022773e-cd74-4e3c-a478-f02d686242c8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fe3c4d7c-ec51-456c-a3a5-31337692152a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"388ca397-63b2-4f8f-8384-a8fd6bac7604":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"3614749d-d6ce-4535-a2cc-4397cab566fd":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"771c815e-be2d-4261-a2e5-d591a23cb5d7":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b08f6b31-392b-4593-9ece-1daac8ab8bf2":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Logs - and results files are being processed. Refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/61abf8dc-afbc-43e1-acc4-0fa5c69dabe5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A50Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:50.4495307Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/58f27a86-5501-4edc-b27c-381dbbeca877?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:50.4492672Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/bc471a67-9154-4417-a2e8-59c00ba1d921?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A50Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:50.4495912Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/93c45eac-24f7-4003-8333-c3b3d1b6b05b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A50Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:50.4496494Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/4b34d528-6068-4e45-98ae-fa92d44a9b43/2ed0849a-50c6-4b96-9f8d-3acd9862aaf7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:50.4497076Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://izqdz27relsewcir845vtku4.z3.blob.storage.azure.net/97d4d5bd-984e-4fd2-bf66-f6331fef0b6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A14Z&ske=2025-02-25T04%3A59%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A50Z&se=2025-02-24T23%3A02%3A50Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:50.4497656Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"FAILED","startDateTime":"2025-02-24T21:59:54.287Z","endDateTime":"2025-02-24T22:02:47.727Z","executedDateTime":"2025-02-24T21:59:51.571Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-24T21:59:53.55Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:02:48.33Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"8520583e-ab83-45c6-ba32-1abd21e4e93c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e2a6aea9-afdb-4ef6-97a5-5abf7e815470":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5d72af8-6f5a-49c8-80c9-2e74bdf5bb86":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1324f26c-9b57-4f37-ae79-870237c9dbd1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"cd1bb880-d901-4698-9cd7-2d3a9d52d0ea":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"b53eb8ab-1847-4e63-8d89-f20ce43608e3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + requests were sent from one or more engines during the test. Check your script + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/fc4eb283-8b7f-4f64-93c0-9d32b6ad7142?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A02Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:02.5140378Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/12a791ec-bbed-4eda-a540-abafde68b540?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:23:02.5128358Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/b7cccd74-acab-44e6-8630-565456142b15?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A02Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:02.514208Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/17cdc9c3-1f7d-4068-8e1f-0719bc65afe2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:02.5143723Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/bda3656c-4f93-4408-ba82-314dd2f38e29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:23:02.5145366Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/8830617f-ca84-4ecb-aa43-c326d0112af2_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A02Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:02.5147027Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/e6407a97-0a29-498c-8044-71293862c917/8830617f-ca84-4ecb-aa43-c326d0112af2_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A02Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:02.5148701Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://fdakxzp926gq7vmv81lymbh8.z7.blob.storage.azure.net/8830617f-ca84-4ecb-aa43-c326d0112af2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A19Z&ske=2025-02-27T06%3A19%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A23%3A02Z&se=2025-02-27T00%3A23%3A02Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:23:02.5150367Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"FAILED","startDateTime":"2025-02-26T23:20:05.532Z","endDateTime":"2025-02-26T23:22:59.876Z","executedDateTime":"2025-02-26T23:20:01.713Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/delete-test-case/testRunId/delete-test-run-case","createdDateTime":"2025-02-26T23:20:02.844Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:23:01.834Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -2632,17 +2677,17 @@ interactions: connection: - keep-alive content-length: - - '5633' + - '6835' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:50 GMT + - Wed, 26 Feb 2025 23:23:02 GMT mise-correlation-id: - - dbe1959e-8442-4211-b4f5-a4feda63e733 + - 2a867876-d270-49bf-83e4-d5981693facc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220250Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000031e3 + - 20250226T232301Z-167c755789d9f6qshC1SG1fkqn00000002kg000000001ggg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2665,7 +2710,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:39.421158Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:39.421158Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:18:39.568615Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:18:39.568615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2674,9 +2719,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:51 GMT + - Wed, 26 Feb 2025 23:23:02 GMT etag: - - '"4f0103d1-0000-0200-0000-67bceba70000"' + - '"8f017a8b-0000-0200-0000-67bfa1680000"' expires: - '-1' pragma: @@ -2692,7 +2737,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EE116E7DC21B4D98960104019D7F2E46 Ref B: MAA201060516051 Ref C: 2025-02-24T22:02:50Z' + - 'Ref A: AEE2746047ED4C22A8757E5415A23137 Ref B: MAA201060513027 Ref C: 2025-02-26T23:23:02Z' status: code: 200 message: OK @@ -2708,9 +2753,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-12-01-preview response: body: string: '' @@ -2721,13 +2766,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 22:02:53 GMT + - Wed, 26 Feb 2025 23:23:05 GMT mise-correlation-id: - - fc79c8f4-51b4-46bc-856a-c57470652054 + - ce222c6a-5445-4e16-a870-837e0704ddbb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220251Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003qky + - 20250226T232303Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000005x70 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2750,7 +2795,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:39.421158Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:39.421158Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:18:39.568615Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:18:39.568615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2759,9 +2804,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:53 GMT + - Wed, 26 Feb 2025 23:23:07 GMT etag: - - '"4f0103d1-0000-0200-0000-67bceba70000"' + - '"8f017a8b-0000-0200-0000-67bfa1680000"' expires: - '-1' pragma: @@ -2777,7 +2822,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1FA55C92440B4F11B6AC438C60C1D68A Ref B: MAA201060516031 Ref C: 2025-02-24T22:02:53Z' + - 'Ref A: D06F42D05A1742C797B9021A36F70D19 Ref B: MAA201060513047 Ref C: 2025-02-26T23:23:06Z' status: code: 200 message: OK @@ -2791,9 +2836,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://f7672465-d07b-4f37-8a45-09b004db6ade.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-12-01-preview&testId=delete-test-case + uri: https://da3f5320-fde0-44aa-881d-05d7b8c2c460.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-12-01-preview&testId=delete-test-case response: body: string: '{"value":[]}' @@ -2810,13 +2855,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:55 GMT + - Wed, 26 Feb 2025 23:23:07 GMT mise-correlation-id: - - 10c18c96-4798-4040-8a63-a1abdaee3d27 + - cc74435a-a302-443c-b433-902b8ecb6bc5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220254Z-r17775d4f98ccgs6hC1SG1tvpn00000008r00000000000h4 + - 20250226T232307Z-167c755789dkxplchC1SG1rzhw00000001yg00000000f2xn x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_download_files.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_download_files.yaml index 57e4a14c7bb..4bd6c308139 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_download_files.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_download_files.yaml @@ -14,7 +14,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:56.0861268Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:56.0861268Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:53:53.0012133Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:53:53.0012133Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -23,9 +23,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:31 GMT + - Wed, 26 Feb 2025 22:54:26 GMT etag: - - '"4f016cd2-0000-0200-0000-67bcebb80000"' + - '"8e0190f4-0000-0200-0000-67bf9b960000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CF90A7537D4F4794A286E404E48E3203 Ref B: MAA201060516049 Ref C: 2025-02-24T21:59:30Z' + - 'Ref A: 0BC71AA68CB84CB7A2184A0A34C1DBE0 Ref B: MAA201060513047 Ref C: 2025-02-26T22:54:25Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -71,15 +71,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:59:31 GMT + - Wed, 26 Feb 2025 22:54:27 GMT mise-correlation-id: - - 9966008e-4d52-43c7-8e47-d7590afa2389 + - 0f4138fe-c7d2-4656-9a02-7243e5061e67 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215931Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003bs6 + - 20250226T225426Z-167c755789drsd6jhC1SG13zv400000001100000000097gg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -95,17 +95,18 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb": + true}, "passFailCriteria": {"passFailMetrics": {"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "81b658ce-0413-4289-8be6-a858be7f1ef6": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "f997d566-4a45-4602-a76b-a267ca7e46c3": + "78"}, "bb15326f-2711-4b6b-8c38-4ede8ef2fd6f": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "d251fa67-5463-4538-95e6-3cbc6303c89c": {"aggregate": "p75", "clientMetric": "response_time_ms", "condition": ">", "value": - "380"}, "f75bbac0-9e8c-47fd-9f4d-36d9f687819b": {"aggregate": "p99", "clientMetric": - "response_time_ms", "condition": ">", "value": "520"}, "9a532eae-d46f-460d-b951-bf7c762f3354": + "380"}, "e267018f-7d83-487a-9f9c-1f1aa233ad8f": {"aggregate": "p99", "clientMetric": + "response_time_ms", "condition": ">", "value": "520"}, "5860cda8-f4b6-47f3-9669-31bef1ac06ad": {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", - "value": "540"}, "6771b365-339a-4517-ab64-426bf1f8036b": {"aggregate": "avg", + "value": "540"}, "d6594b2d-b3ba-4445-8132-4be95e5af36b": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,17 +115,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:32.28Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:59:32.28Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T22:54:27.693Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:54:27.693Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -132,19 +133,19 @@ interactions: connection: - keep-alive content-length: - - '1647' + - '1649' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:32 GMT + - Wed, 26 Feb 2025 22:54:27 GMT location: - - https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview + - https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview mise-correlation-id: - - 84a296ea-db54-4e5e-bde2-caa608d4bfdd + - 476f566e-dc0e-4db7-b957-b25fcf6791af strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215931Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003bsk + - 20250226T225427Z-167c755789drsd6jhC1SG13zv400000001100000000097kc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -162,9 +163,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -181,13 +182,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:32 GMT + - Wed, 26 Feb 2025 22:54:28 GMT mise-correlation-id: - - fe4d2918-9a96-41af-9eac-11cc3aaa1c75 + - 47af200d-19a4-40d2-9a97-9690e6ab943a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215932Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003bt9 + - 20250226T225427Z-167c755789drsd6jhC1SG13zv400000001100000000097m2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -212,14 +213,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A33Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:09:33.0324137Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A04%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:04:28.4436538Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -227,19 +228,19 @@ interactions: connection: - keep-alive content-length: - - '575' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:33 GMT + - Wed, 26 Feb 2025 22:54:28 GMT location: - - https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 640affc7-5e02-44f0-8f12-268d3f1e22bf + - 90af94c7-1c92-4f79-aa31-46b9e4a5013b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215932Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003bty + - 20250226T225428Z-167c755789drsd6jhC1SG13zv400000001100000000097mt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -257,12 +258,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A33Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:09:33.3282296Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A04%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:04:28.7507585Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -272,17 +273,17 @@ interactions: connection: - keep-alive content-length: - - '575' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:33 GMT + - Wed, 26 Feb 2025 22:54:28 GMT mise-correlation-id: - - 1954f223-1cce-4ab8-af59-83508dffad08 + - e289d453-171a-4524-9fc9-397bd977b4af strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215933Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003bux + - 20250226T225428Z-167c755789drsd6jhC1SG13zv400000001100000000097nx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -311,14 +312,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:09:33.7405471Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A04%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:04:29.1932313Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -326,19 +327,19 @@ interactions: connection: - keep-alive content-length: - - '567' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:33 GMT + - Wed, 26 Feb 2025 22:54:29 GMT location: - - https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - b689a667-ffaf-4da4-8e74-2a34497fb678 + - a1d3ec25-61b0-4382-b697-d232a75c03e2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215933Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003bvf + - 20250226T225428Z-167c755789drsd6jhC1SG13zv400000001100000000097q2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -356,12 +357,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:09:34.8339123Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A04%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:04:29.4738665Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -375,13 +376,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:34 GMT + - Wed, 26 Feb 2025 22:54:29 GMT mise-correlation-id: - - 25e887e8-0653-4798-9da4-488763c64bda + - f5a19dfd-4883-497f-9806-afe374b1d5d0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215933Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003bw5 + - 20250226T225429Z-167c755789drsd6jhC1SG13zv400000001100000000097s5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -490,14 +491,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:35.3249434Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A04%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:04:29.9311325Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -509,15 +510,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:35 GMT + - Wed, 26 Feb 2025 22:54:30 GMT location: - - https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - de60bb2f-bf76-4b74-a539-60e50d7380c6 + - 157e5962-57fa-4a16-80d5-0d4d87b9e952 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215934Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003bxs + - 20250226T225429Z-167c755789drsd6jhC1SG13zv400000001100000000097st x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -535,55 +536,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:35.6078856Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '561' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 21:59:35 GMT - mise-correlation-id: - - 33f758cc-a4ec-45c7-95ee-d44567d05030 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T215935Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003byf - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:40.8657094Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A04%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:04:30.9079256Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -597,13 +555,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:40 GMT + - Wed, 26 Feb 2025 22:54:31 GMT mise-correlation-id: - - a427f75e-5969-4678-8ff2-fca1392b6f49 + - c8f1a720-bc01-4b63-ae7b-281851f03075 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215940Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003c77 + - 20250226T225430Z-167c755789drsd6jhC1SG13zv400000001100000000097ud x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -621,12 +579,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:46.1247512Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A04%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:04:36.1681586Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -636,17 +594,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:46 GMT + - Wed, 26 Feb 2025 22:54:36 GMT mise-correlation-id: - - 25bd5428-045d-4e51-9194-83d6bb8d4cef + - 305b41fd-f942-4603-a223-f82a3529c4c4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215945Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003cfv + - 20250226T225436Z-167c755789drsd6jhC1SG13zv40000000110000000009869 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -664,12 +622,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A51Z&ske=2025-02-25T04%3A59%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:51.4187074Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A04%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:04:41.4527474Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -679,17 +637,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:51 GMT + - Wed, 26 Feb 2025 22:54:41 GMT mise-correlation-id: - - 5f515d8a-d4a4-4bbd-bc29-881796275d52 + - 1afcfa63-1a34-40af-aa46-31c1b11f0f3f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215951Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003cr2 + - 20250226T225441Z-167c755789drsd6jhC1SG13zv400000001100000000098ua x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -707,12 +665,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A09%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:09:56.6696873Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A04%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:04:46.7019413Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -722,17 +680,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:59:56 GMT + - Wed, 26 Feb 2025 22:54:46 GMT mise-correlation-id: - - f3bbdd94-e1f6-4f83-ae76-0a420c83406a + - 436fe3a0-768d-49e4-97b0-eb40fa71837e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215956Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003cys + - 20250226T225446Z-167c755789drsd6jhC1SG13zv40000000110000000009954 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -750,12 +708,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:01.927035Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A04%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:04:51.9546606Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -765,17 +723,17 @@ interactions: connection: - keep-alive content-length: - - '564' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:02 GMT + - Wed, 26 Feb 2025 22:54:52 GMT mise-correlation-id: - - c2d66038-232b-4f4f-bc73-dab9bb1eb152 + - 6884c617-bd3e-467f-925c-d875b9646fb5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220001Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003d95 + - 20250226T225451Z-167c755789drsd6jhC1SG13zv400000001100000000099gt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -793,12 +751,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A51Z&ske=2025-02-25T04%3A59%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:07.1779271Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A04%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:04:57.2039949Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -812,13 +770,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:07 GMT + - Wed, 26 Feb 2025 22:54:57 GMT mise-correlation-id: - - 11d0918d-d3c5-46cf-bb87-ebdbeba21cbe + - 656ac867-cdda-41c1-a040-97956b9170d3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220007Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003dm2 + - 20250226T225457Z-167c755789drsd6jhC1SG13zv400000001100000000099xf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -836,12 +794,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A10%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:10:12.4297295Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A05%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:05:02.4841252Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -851,17 +809,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:12 GMT + - Wed, 26 Feb 2025 22:55:02 GMT mise-correlation-id: - - c073fc29-58cd-4803-8940-3fdfd5262699 + - 0baba998-be85-414a-a170-4a2223fef2a0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220012Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003dw9 + - 20250226T225502Z-167c755789drsd6jhC1SG13zv40000000110000000009ab7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -879,13 +837,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:12.6768153Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A12Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:12.6772218Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:12.6773919Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:32.28Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:10.354Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:55:02.7408085Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:02.7411994Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:55:02.7413259Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T22:54:27.693Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:55:01.932Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -895,17 +853,17 @@ interactions: connection: - keep-alive content-length: - - '3369' + - '3368' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:12 GMT + - Wed, 26 Feb 2025 22:55:02 GMT mise-correlation-id: - - 2ae46b59-61ba-44d8-8b92-f3ea473ea71e + - f3f9cd6d-adcd-4c7b-a70f-e9e3e9c5875f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220012Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003dwk + - 20250226T225502Z-167c755789drsd6jhC1SG13zv40000000110000000009ac0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -928,7 +886,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:56.0861268Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:56.0861268Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:53:53.0012133Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:53:53.0012133Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -937,9 +895,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:13 GMT + - Wed, 26 Feb 2025 22:55:03 GMT etag: - - '"4f016cd2-0000-0200-0000-67bcebb80000"' + - '"8e0190f4-0000-0200-0000-67bf9b960000"' expires: - '-1' pragma: @@ -955,7 +913,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 55F7BBBDDB434DFB84DA5D6A1D363188 Ref B: MAA201060515037 Ref C: 2025-02-24T22:00:13Z' + - 'Ref A: 28D23B602E6E42E2BB7338F20D4BA380 Ref B: MAA201060515031 Ref C: 2025-02-26T22:55:03Z' status: code: 200 message: OK @@ -969,13 +927,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:14.2657238Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A14Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:14.2662779Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:14.2663687Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:59:32.28Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:10.354Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:55:04.8443404Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A04Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:04.8450446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:55:04.8452613Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T22:54:27.693Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:55:01.932Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -985,17 +943,17 @@ interactions: connection: - keep-alive content-length: - - '3383' + - '3390' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:14 GMT + - Wed, 26 Feb 2025 22:55:04 GMT mise-correlation-id: - - 1082257d-6472-4a4a-8c59-74fe9f9dd03e + - 05bcf21b-e508-4248-b747-3f97ef8d163a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220014Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000c7p + - 20250226T225504Z-r17775d4f989qmrnhC1SG1rde40000001ar0000000009wfk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1018,7 +976,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:56.0861268Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:56.0861268Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:53:53.0012133Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:53:53.0012133Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1027,9 +985,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:14 GMT + - Wed, 26 Feb 2025 22:55:06 GMT etag: - - '"4f016cd2-0000-0200-0000-67bcebb80000"' + - '"8e0190f4-0000-0200-0000-67bf9b960000"' expires: - '-1' pragma: @@ -1045,7 +1003,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 20A992034331407B86E3A3FEC91255F4 Ref B: MAA201060515009 Ref C: 2025-02-24T22:00:14Z' + - 'Ref A: 4F36401B578D4C379DE0C1EDC5CE8D4A Ref B: MAA201060515033 Ref C: 2025-02-26T22:55:05Z' status: code: 200 message: OK @@ -1059,9 +1017,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with @@ -1075,15 +1033,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 22:00:16 GMT + - Wed, 26 Feb 2025 22:55:07 GMT mise-correlation-id: - - b54b6cb3-0290-4d09-938c-681624949656 + - 2e503233-2be8-4b2d-b152-bef033babe00 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T220015Z-r17775d4f98p9dsnhC1SG1tym00000000e3g00000000347w + - 20250226T225506Z-167c755789dkxplchC1SG1rzhw00000002000000000073st x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1107,12 +1065,12 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A17Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:17.8976694Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:17.8974035Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A17Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:17.897738Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A17Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:17.8978007Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:17.8978662Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A17Z&se=2025-02-24T23%3A00%3A17Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:17.8979499Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"ACCEPTED","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:17.889Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A08Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:08.2159203Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:55:08.2154452Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A08Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:08.2160982Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A08Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:08.2162768Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:55:08.2164501Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A55%3A08Z&se=2025-02-26T23%3A55%3A08Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:55:08.2166257Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"ACCEPTED","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:55:08.205Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1120,19 +1078,19 @@ interactions: connection: - keep-alive content-length: - - '5443' + - '5444' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:18 GMT + - Wed, 26 Feb 2025 22:55:08 GMT location: - - https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + - https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview mise-correlation-id: - - 323ef43b-1845-4f28-8bfc-ce13637dd549 + - b4f8d16f-6bd4-47a9-aa1b-5db226bc9b50 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220016Z-r17775d4f98p9dsnhC1SG1tym00000000e3g00000000349n + - 20250226T225507Z-167c755789dkxplchC1SG1rzhw00000002000000000073x1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1150,12 +1108,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A18Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:18.2316506Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:18.2310628Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A18Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:18.2319724Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A18Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:18.232065Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:18.2321651Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A18Z&se=2025-02-24T23%3A00%3A18Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:18.2322628Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"NOTSTARTED","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:18.082Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A08Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:08.5691937Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:55:08.5687437Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A08Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:08.5693807Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A08Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:08.5695779Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:55:08.5697731Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A55%3A08Z&se=2025-02-26T23%3A55%3A08Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:55:08.5698881Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"NOTSTARTED","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:55:08.439Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1165,17 +1123,17 @@ interactions: connection: - keep-alive content-length: - - '5498' + - '5491' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:18 GMT + - Wed, 26 Feb 2025 22:55:08 GMT mise-correlation-id: - - a957bb8b-c369-4d32-9344-cd585de1947d + - 22f113de-ac56-4411-a502-7dcc05854c36 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220018Z-r17775d4f98p9dsnhC1SG1tym00000000e3g0000000034f9 + - 20250226T225508Z-167c755789dkxplchC1SG1rzhw000000020000000000742k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1193,12 +1151,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A23Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:23.5125607Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:23.5120954Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A23Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:23.5128Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:23.5130221Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:23.513286Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A23Z&se=2025-02-24T23%3A00%3A23Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:23.5134779Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:18.291Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A13Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:13.824497Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:55:13.8241802Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A13Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:13.8245836Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:13.8246654Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:55:13.8247475Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A55%3A13Z&se=2025-02-26T23%3A55%3A13Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:55:13.8248346Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:55:08.679Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1208,17 +1166,17 @@ interactions: connection: - keep-alive content-length: - - '5487' + - '5502' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:23 GMT + - Wed, 26 Feb 2025 22:55:13 GMT mise-correlation-id: - - 73106318-1e1d-44af-9b7e-f4e5dc6bec0f + - 126c61da-9465-4654-87f1-64bb477e880e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220023Z-r17775d4f98p9dsnhC1SG1tym00000000e3g0000000034x0 + - 20250226T225513Z-167c755789dkxplchC1SG1rzhw00000002000000000074s2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1236,12 +1194,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A28Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:28.7639774Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:28.7636144Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A28Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:28.7641955Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:28.7643987Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:28.7646476Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A28Z&se=2025-02-24T23%3A00%3A28Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:28.7648746Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:18.291Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A19Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:19.0878993Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:55:19.0876362Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A19Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:19.0879982Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A19Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:19.088093Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:55:19.0881887Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A55%3A19Z&se=2025-02-26T23%3A55%3A19Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:55:19.0882908Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:55:08.679Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1251,17 +1209,17 @@ interactions: connection: - keep-alive content-length: - - '5503' + - '5504' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:28 GMT + - Wed, 26 Feb 2025 22:55:19 GMT mise-correlation-id: - - b9b545cc-b26d-413b-a2ae-900fa788f9d0 + - 3beff5b7-dc4a-4b1f-bcd3-dd20eeb9a878 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220028Z-r17775d4f98p9dsnhC1SG1tym00000000e3g0000000035am + - 20250226T225518Z-167c755789dkxplchC1SG1rzhw00000002000000000075dh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1279,12 +1237,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A34Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:34.0618098Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:34.0614452Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A34Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:34.0619904Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A34Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:34.0621595Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:34.0623359Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A34Z&se=2025-02-24T23%3A00%3A34Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:34.0625616Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:18.291Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A24Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:24.3774077Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:55:24.3771479Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A24Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:24.3775002Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A24Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:24.3775718Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:55:24.3776431Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A55%3A24Z&se=2025-02-26T23%3A55%3A24Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:55:24.3777124Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:55:08.679Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1294,17 +1252,17 @@ interactions: connection: - keep-alive content-length: - - '5497' + - '5507' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:34 GMT + - Wed, 26 Feb 2025 22:55:24 GMT mise-correlation-id: - - fc27b6ae-b5e6-4db7-aab1-c489f8931a61 + - 63d7298e-f0eb-4a32-81d1-4fbd28065513 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220033Z-r17775d4f98p9dsnhC1SG1tym00000000e3g0000000035rf + - 20250226T225524Z-167c755789dkxplchC1SG1rzhw000000020000000000762q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1322,12 +1280,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A39Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:39.3336722Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:39.3332283Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A39Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:39.333773Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A39Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:39.3339998Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:39.3340957Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A39Z&se=2025-02-24T23%3A00%3A39Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:39.3341648Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:18.291Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A29Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:29.6551353Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:55:29.6546158Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A29Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:29.6553497Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A29Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:29.6555567Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:55:29.6557606Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A55%3A29Z&se=2025-02-26T23%3A55%3A29Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:55:29.6559513Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:55:08.679Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1337,17 +1295,17 @@ interactions: connection: - keep-alive content-length: - - '5496' + - '5501' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:39 GMT + - Wed, 26 Feb 2025 22:55:29 GMT mise-correlation-id: - - 3a82c601-cc19-4f55-8bf6-f2b555b48c73 + - eb53dbb2-cf1e-478c-b9ff-81a467d346eb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220039Z-r17775d4f98p9dsnhC1SG1tym00000000e3g00000000361c + - 20250226T225529Z-167c755789dkxplchC1SG1rzhw00000002000000000076q1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1365,12 +1323,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A44Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:44.6374193Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:44.6371475Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A44Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:44.6375114Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A44Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:44.6375988Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:44.6376852Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A44Z&se=2025-02-24T23%3A00%3A44Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:44.6377797Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:18.291Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A34Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:34.9234837Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:55:34.9230714Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A34Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:34.9236233Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A34Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:34.9237691Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:55:34.9239004Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A55%3A34Z&se=2025-02-26T23%3A55%3A34Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:55:34.9240406Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:55:08.679Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1380,17 +1338,17 @@ interactions: connection: - keep-alive content-length: - - '5507' + - '5487' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:44 GMT + - Wed, 26 Feb 2025 22:55:35 GMT mise-correlation-id: - - 05dc0f64-fa5b-413d-bf04-11551a520a7e + - c0764a21-ed4a-4822-83a1-37a5af1abe92 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220044Z-r17775d4f98p9dsnhC1SG1tym00000000e3g0000000036bg + - 20250226T225534Z-167c755789dkxplchC1SG1rzhw00000002000000000077av x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1408,12 +1366,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A49Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:49.8938294Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:49.8931176Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A49Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:49.8941412Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:49.8944611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:49.8947789Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A49Z&se=2025-02-24T23%3A00%3A49Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:49.8950581Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:18.291Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A40Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:40.1742862Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:55:40.173937Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A40Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:40.1744193Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A40Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:40.1745612Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:55:40.1746953Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A55%3A40Z&se=2025-02-26T23%3A55%3A40Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:55:40.1749015Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:55:08.679Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1423,17 +1381,17 @@ interactions: connection: - keep-alive content-length: - - '5511' + - '5498' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:50 GMT + - Wed, 26 Feb 2025 22:55:40 GMT mise-correlation-id: - - df827423-cf7a-4264-b657-062231054cd6 + - 6a55ec28-c265-4038-af73-77c1fbed2f5a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220049Z-r17775d4f98p9dsnhC1SG1tym00000000e3g0000000036p6 + - 20250226T225540Z-167c755789dkxplchC1SG1rzhw000000020000000000780x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1451,12 +1409,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A55Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:55.1531366Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:00:55.1528151Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A55Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:55.153224Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:00:55.1533168Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A00%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:00:55.153405Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A00%3A55Z&se=2025-02-24T23%3A00%3A55Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:00:55.1535022Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:18.291Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A45Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:45.4685179Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:55:45.4681193Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A45Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:45.4686842Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A45Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:45.468853Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:55:45.4690192Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A55%3A45Z&se=2025-02-26T23%3A55%3A45Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:55:45.4691888Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:55:08.679Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1466,17 +1424,17 @@ interactions: connection: - keep-alive content-length: - - '5487' + - '5496' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:00:55 GMT + - Wed, 26 Feb 2025 22:55:45 GMT mise-correlation-id: - - 86228b19-e5e0-44e6-8675-2591ef37c881 + - 15aa6cb0-f2d8-4619-94d0-0fc1930a39f2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220055Z-r17775d4f98p9dsnhC1SG1tym00000000e3g0000000036yb + - 20250226T225545Z-167c755789dkxplchC1SG1rzhw00000002000000000078mm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1494,12 +1452,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A00Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:00.402641Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:00.4023856Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A00Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:00.414111Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:00.4142604Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:00.4143345Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A00Z&se=2025-02-24T23%3A01%3A00Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:00.4143988Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:18.291Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A50Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:50.7209411Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:55:50.720418Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A50Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:50.721136Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A50Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:50.72136Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:55:50.7215648Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A55%3A50Z&se=2025-02-26T23%3A55%3A50Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:55:50.7217852Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:55:08.679Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1509,17 +1467,17 @@ interactions: connection: - keep-alive content-length: - - '5489' + - '5493' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:00 GMT + - Wed, 26 Feb 2025 22:55:50 GMT mise-correlation-id: - - 4a01c8ef-3105-41ac-9201-4c272fdbe658 + - 054ca7e6-e9e8-4b3c-8685-4ca0151d8776 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220100Z-r17775d4f98p9dsnhC1SG1tym00000000e3g00000000377s + - 20250226T225550Z-167c755789dkxplchC1SG1rzhw000000020000000000799k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1537,12 +1495,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A05Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:05.6658244Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:05.665371Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A05Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:05.6660845Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:05.6662562Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:05.6664268Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A05Z&se=2025-02-24T23%3A01%3A05Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:05.666589Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:00:18.291Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A55Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:55.9830188Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:55:55.9823811Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A55Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:55.9833019Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:55:55.9835634Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A55%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:55:55.9863951Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A55%3A55Z&se=2025-02-26T23%3A55%3A55Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:55:55.9868434Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:55:08.679Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1552,17 +1510,17 @@ interactions: connection: - keep-alive content-length: - - '5505' + - '5495' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:05 GMT + - Wed, 26 Feb 2025 22:55:56 GMT mise-correlation-id: - - 0761ad1e-71a4-4b74-b9c4-efa82ea3fbef + - 815a88cd-cd84-44e3-ab31-87c61972bf42 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220105Z-r17775d4f98p9dsnhC1SG1tym00000000e3g0000000037h6 + - 20250226T225555Z-167c755789dkxplchC1SG1rzhw0000000200000000007a02 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1580,12 +1538,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A10Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:10.9183542Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:10.9181354Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A10Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:10.9184447Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:10.9185615Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:10.9186548Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A10Z&se=2025-02-24T23%3A01%3A10Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:10.9187458Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONED","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:10.807Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A01Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:01.2787948Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:56:01.2783014Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A01Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:01.2789974Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:01.279206Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:56:01.2794014Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A56%3A01Z&se=2025-02-26T23%3A56%3A01Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:56:01.2796091Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONED","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:01.144Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1595,17 +1553,17 @@ interactions: connection: - keep-alive content-length: - - '5500' + - '5485' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:11 GMT + - Wed, 26 Feb 2025 22:56:01 GMT mise-correlation-id: - - a3148a8a-06b9-495d-abed-1239da28925c + - bf1bed3b-5aee-4c44-b3c8-543228872945 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220110Z-r17775d4f98p9dsnhC1SG1tym00000000e3g0000000037ux + - 20250226T225601Z-167c755789dkxplchC1SG1rzhw0000000200000000007ake x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1623,12 +1581,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A16Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:16.1789972Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:16.1784414Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A16Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:16.1792888Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:16.1794879Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:16.1796987Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A16Z&se=2025-02-24T23%3A01%3A16Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:16.1798907Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"CONFIGURED","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.166Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A06Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:06.5334421Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:56:06.5330936Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A06Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:06.5335652Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A06Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:06.5337035Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:56:06.5338383Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A56%3A06Z&se=2025-02-26T23%3A56%3A06Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:56:06.533984Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1638,17 +1596,17 @@ interactions: connection: - keep-alive content-length: - - '5495' + - '5492' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:16 GMT + - Wed, 26 Feb 2025 22:56:06 GMT mise-correlation-id: - - b1021f85-06b4-4de1-8c87-b95c3694008c + - 4ff81aa7-55c5-4dd8-b494-5881b56b7897 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220116Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003822 + - 20250226T225606Z-167c755789dkxplchC1SG1rzhw0000000200000000007b3d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1666,12 +1624,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A21Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:21.4357688Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:21.4353356Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A21Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:21.4359268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A21Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:21.4361071Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:21.4362961Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A21Z&se=2025-02-24T23%3A01%3A21Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:21.4364638Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A11Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:11.7923566Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:56:11.7919707Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A11Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:11.7924832Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A11Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:11.7926142Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:56:11.7927429Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A56%3A11Z&se=2025-02-26T23%3A56%3A11Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:56:11.7930406Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1681,17 +1639,17 @@ interactions: connection: - keep-alive content-length: - - '5496' + - '5485' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:21 GMT + - Wed, 26 Feb 2025 22:56:11 GMT mise-correlation-id: - - c98edf61-4af3-4e75-8be2-6e351740a19e + - a8496fb4-c127-44d2-bad1-d8a8bc486b34 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220121Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003899 + - 20250226T225611Z-167c755789dkxplchC1SG1rzhw0000000200000000007bmp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1709,12 +1667,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A26Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:26.6892382Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:26.6884276Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A26Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:26.6895678Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A26Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:26.6898822Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:26.6902111Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A26Z&se=2025-02-24T23%3A01%3A26Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:26.6905495Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A17Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:17.0541303Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:56:17.0537246Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A17Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:17.0542254Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A17Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:17.0543173Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:56:17.0544077Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A56%3A17Z&se=2025-02-26T23%3A56%3A17Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:56:17.0544973Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1724,17 +1682,17 @@ interactions: connection: - keep-alive content-length: - - '5494' + - '5493' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:26 GMT + - Wed, 26 Feb 2025 22:56:17 GMT mise-correlation-id: - - df75c166-b8c2-4d28-8d53-cc003a3733ab + - 0956c612-8a90-424c-a644-e6cef15dd298 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220126Z-r17775d4f98p9dsnhC1SG1tym00000000e3g0000000038mw + - 20250226T225616Z-167c755789dkxplchC1SG1rzhw0000000200000000007c2m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1752,12 +1710,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A31Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:31.9466054Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:31.9462395Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A31Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:31.9466992Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:31.9467982Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:31.9468954Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A31Z&se=2025-02-24T23%3A01%3A31Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:31.9469921Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A22Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:22.3218577Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:56:22.3205433Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A22Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:22.3222384Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A22Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:22.3225519Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:56:22.3228759Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A56%3A22Z&se=2025-02-26T23%3A56%3A22Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:56:22.3231868Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1767,17 +1725,17 @@ interactions: connection: - keep-alive content-length: - - '5494' + - '5497' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:32 GMT + - Wed, 26 Feb 2025 22:56:22 GMT mise-correlation-id: - - 19c0b101-c78e-4082-9abf-33caf5024204 + - 96c64f13-9c65-4205-b3fa-7c40605d8b90 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220131Z-r17775d4f98p9dsnhC1SG1tym00000000e3g0000000038x3 + - 20250226T225622Z-167c755789dkxplchC1SG1rzhw0000000200000000007cm0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1795,12 +1753,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A37Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:37.1963581Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:37.196015Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A37Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:37.1964913Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A37Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:37.1966356Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:37.1967733Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A37Z&se=2025-02-24T23%3A01%3A37Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:37.1969127Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A27Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:27.5779691Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:56:27.5774789Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A27Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:27.5782064Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A27Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:27.5784022Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:56:27.5785862Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A56%3A27Z&se=2025-02-26T23%3A56%3A27Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:56:27.5787931Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1810,17 +1768,17 @@ interactions: connection: - keep-alive content-length: - - '5491' + - '5505' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:37 GMT + - Wed, 26 Feb 2025 22:56:27 GMT mise-correlation-id: - - d30a7d68-0629-4085-89ce-eeddc0502b50 + - a6715c48-e416-4b49-b301-05a0d01a69bf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220137Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003944 + - 20250226T225627Z-167c755789dkxplchC1SG1rzhw0000000200000000007d4x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1838,12 +1796,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A42Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:42.4457204Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:42.4454507Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A42Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:42.445803Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A42Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:42.445891Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:42.445988Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A42Z&se=2025-02-24T23%3A01%3A42Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:42.4460652Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A32Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:32.8360975Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:56:32.8357498Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A32Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:32.8362365Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A32Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:32.8363766Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:56:32.8365085Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A56%3A32Z&se=2025-02-26T23%3A56%3A32Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:56:32.8366369Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1857,13 +1815,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:42 GMT + - Wed, 26 Feb 2025 22:56:32 GMT mise-correlation-id: - - df749f41-4079-4914-a8f0-a83878e5bfda + - 7670a001-d902-40b8-9820-5befd1e6b13c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220142Z-r17775d4f98p9dsnhC1SG1tym00000000e3g0000000039bp + - 20250226T225632Z-167c755789dkxplchC1SG1rzhw0000000200000000007dru x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1881,12 +1839,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A47Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:47.7016862Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:47.7013645Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A47Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:47.7018424Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:47.7020627Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:47.7022342Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A47Z&se=2025-02-24T23%3A01%3A47Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:47.7026274Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A38Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:38.087371Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:56:38.0869938Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A38Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:38.0874993Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A38Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:38.087624Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:56:38.0877503Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A56%3A38Z&se=2025-02-26T23%3A56%3A38Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:56:38.0878813Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1896,17 +1854,17 @@ interactions: connection: - keep-alive content-length: - - '5494' + - '5485' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:47 GMT + - Wed, 26 Feb 2025 22:56:38 GMT mise-correlation-id: - - b30cb452-28d4-43c5-8add-62527136eed8 + - 0015f710-18a9-45eb-a445-9e33e786ba40 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220147Z-r17775d4f98p9dsnhC1SG1tym00000000e3g0000000039pa + - 20250226T225637Z-167c755789dkxplchC1SG1rzhw0000000200000000007e9w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1924,12 +1882,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A52Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:52.9555747Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:52.9551518Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A52Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:52.9557497Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A52Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:52.955928Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:52.9561086Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A52Z&se=2025-02-24T23%3A01%3A52Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:52.9562822Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A43Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:43.3584162Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:56:43.3579993Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A43Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:43.3585964Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A43Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:43.3587757Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:56:43.3589525Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A56%3A43Z&se=2025-02-26T23%3A56%3A43Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:56:43.3591511Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1939,17 +1897,17 @@ interactions: connection: - keep-alive content-length: - - '5483' + - '5495' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:53 GMT + - Wed, 26 Feb 2025 22:56:43 GMT mise-correlation-id: - - e022a31d-f09b-4f55-8ff6-58cfc347cbe1 + - 18c052a8-07b2-427b-a5e6-ea5372672933 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220152Z-r17775d4f98p9dsnhC1SG1tym00000000e3g0000000039uy + - 20250226T225643Z-167c755789dkxplchC1SG1rzhw0000000200000000007ewd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1967,12 +1925,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A58Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:58.2199623Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:01:58.2194609Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A58Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:58.2201761Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A58Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:01:58.2203769Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A01%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:01:58.220588Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A01%3A58Z&se=2025-02-24T23%3A01%3A58Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:01:58.2207919Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A48Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:48.618546Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:56:48.6176858Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A48Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:48.6186272Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A48Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:48.6187053Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:56:48.618778Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A56%3A48Z&se=2025-02-26T23%3A56%3A48Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:56:48.6188463Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1982,17 +1940,60 @@ interactions: connection: - keep-alive content-length: - - '5491' + - '5507' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Feb 2025 22:56:48 GMT + mise-correlation-id: + - 6f45ad96-fb64-43c2-8986-e702c870245b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20250226T225648Z-167c755789dkxplchC1SG1rzhw0000000200000000007fad + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + method: GET + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A53Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:53.8963629Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:56:53.8960811Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A53Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:53.8964615Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A53Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:53.8965594Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:56:53.8966567Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A56%3A53Z&se=2025-02-26T23%3A56%3A53Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:56:53.8967515Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-12-01-preview + connection: + - keep-alive + content-length: + - '5503' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:01:58 GMT + - Wed, 26 Feb 2025 22:56:54 GMT mise-correlation-id: - - 9f7e86d7-eb94-478e-bee1-c474310ab547 + - 282437bc-e6b6-4f3c-85e3-173ef149556a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220158Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003a2b + - 20250226T225653Z-167c755789dkxplchC1SG1rzhw0000000200000000007fut x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2010,12 +2011,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A03Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:03.4770739Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:03.4765423Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A03Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:03.4772725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A03Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:03.4774728Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:03.4776798Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A00%3A17Z&ske=2025-02-26T07%3A00%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A03Z&se=2025-02-24T23%3A02%3A03Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:03.4778753Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A59Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:59.1580459Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:56:59.1576378Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A59Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:59.158215Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A59Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:56:59.1583815Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A56%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:56:59.1585438Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A56%3A59Z&se=2025-02-26T23%3A56%3A59Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:56:59.1587085Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2029,13 +2030,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:03 GMT + - Wed, 26 Feb 2025 22:56:59 GMT mise-correlation-id: - - 359346ad-2d98-4f0c-8255-49b85c191757 + - dcc2912b-e229-4464-8e82-57e7f1b3f2a2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220203Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003a7v + - 20250226T225659Z-167c755789dkxplchC1SG1rzhw0000000200000000007g8n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2053,12 +2054,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A08Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:08.7400761Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:08.7396744Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A08Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:08.7402121Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A08Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:08.7403564Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:08.7404885Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A08Z&se=2025-02-24T23%3A02%3A08Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:08.7406222Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A04Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:04.4128794Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:57:04.4121489Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A04Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:04.4132022Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A04Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:04.413536Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:57:04.4137484Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A57%3A04Z&se=2025-02-26T23%3A57%3A04Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:57:04.4139668Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2068,17 +2069,17 @@ interactions: connection: - keep-alive content-length: - - '5500' + - '5506' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:08 GMT + - Wed, 26 Feb 2025 22:57:04 GMT mise-correlation-id: - - c67585cb-eed1-4932-af9d-5acc53cf1cb7 + - ffaecc9c-3956-4ef7-979e-ff762afcdccd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220208Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003ae8 + - 20250226T225704Z-167c755789dkxplchC1SG1rzhw0000000200000000007gs1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2096,12 +2097,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A13Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:13.9918521Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:13.9913768Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A13Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:13.9919719Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:13.9920909Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:13.9922087Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A13Z&se=2025-02-24T23%3A02%3A13Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:13.9923286Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A09Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:09.6671834Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:57:09.6669041Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A09Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:09.6672773Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A09Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:09.66738Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:57:09.6674717Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A57%3A09Z&se=2025-02-26T23%3A57%3A09Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:57:09.6675682Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2111,17 +2112,17 @@ interactions: connection: - keep-alive content-length: - - '5490' + - '5489' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:14 GMT + - Wed, 26 Feb 2025 22:57:09 GMT mise-correlation-id: - - 4a088a34-252b-4e80-84d0-b15272fdbd15 + - f5039431-4509-42f6-92a2-315ca4962866 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220213Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003anq + - 20250226T225709Z-167c755789dkxplchC1SG1rzhw0000000200000000007h6z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2139,12 +2140,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A19Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:19.2436861Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:19.2433109Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A19Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:19.2438298Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A19Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:19.2439757Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:19.2441138Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A19Z&se=2025-02-24T23%3A02%3A19Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:19.2442546Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A14Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:14.9231317Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:57:14.9228904Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A14Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:14.9231972Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A14Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:14.9232588Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:57:14.9233188Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A55%3A08Z&ske=2025-02-28T07%3A55%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A57%3A14Z&se=2025-02-26T23%3A57%3A14Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:57:14.9233784Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2154,17 +2155,17 @@ interactions: connection: - keep-alive content-length: - - '5496' + - '5493' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:19 GMT + - Wed, 26 Feb 2025 22:57:15 GMT mise-correlation-id: - - 9eda13b6-9d8e-49cc-88c5-adf803e85a4f + - 2feedae6-2edf-4f7d-a9de-4a843c6a8f41 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220219Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003avd + - 20250226T225714Z-167c755789dkxplchC1SG1rzhw0000000200000000007hnz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2182,12 +2183,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A24Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:24.4923772Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:24.4919009Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A24Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:24.4925642Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A24Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:24.492791Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:24.4929951Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A24Z&se=2025-02-24T23%3A02%3A24Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:24.4932189Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A20Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:20.1787463Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:57:20.1783945Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A20Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:20.1788836Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A20Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:20.1790179Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:57:20.1791516Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A57%3A20Z&se=2025-02-26T23%3A57%3A20Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:57:20.179285Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2197,17 +2198,17 @@ interactions: connection: - keep-alive content-length: - - '5495' + - '5494' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:24 GMT + - Wed, 26 Feb 2025 22:57:20 GMT mise-correlation-id: - - 875e9620-b9b4-45b1-ae76-19e54e000247 + - c4816c37-25c1-4146-bbdb-8197d7952f6f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220224Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003b41 + - 20250226T225720Z-167c755789dkxplchC1SG1rzhw0000000200000000007k5t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2225,12 +2226,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A29Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:29.7579394Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:29.7575556Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A29Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:29.7580059Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A29Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:29.7580727Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:29.7581351Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A29Z&se=2025-02-24T23%3A02%3A29Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:29.7581937Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A25Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:25.4303777Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:57:25.4300739Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A25Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:25.4304755Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A25Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:25.4306274Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:57:25.4307924Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A57%3A25Z&se=2025-02-26T23%3A57%3A25Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:57:25.4309713Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2240,17 +2241,17 @@ interactions: connection: - keep-alive content-length: - - '5504' + - '5487' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:29 GMT + - Wed, 26 Feb 2025 22:57:25 GMT mise-correlation-id: - - 4dec5c3d-66a2-4df4-89f4-27c0287607ec + - 6ba63683-1360-460b-a122-e827689f0421 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220229Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003bb6 + - 20250226T225725Z-167c755789dkxplchC1SG1rzhw0000000200000000007kmv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2268,12 +2269,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A35Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:35.0155015Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:35.0150823Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A35Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:35.015669Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A35Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:35.0158345Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:35.0159677Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A35Z&se=2025-02-24T23%3A02%3A35Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:35.0161628Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A30Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:30.7008589Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:57:30.7006511Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A30Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:30.7015425Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A30Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:30.7016623Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:57:30.7017572Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A57%3A30Z&se=2025-02-26T23%3A57%3A30Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:57:30.7018522Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2283,17 +2284,17 @@ interactions: connection: - keep-alive content-length: - - '5497' + - '5491' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:35 GMT + - Wed, 26 Feb 2025 22:57:30 GMT mise-correlation-id: - - 509623a4-0cc0-41d1-aae6-86e2da8313c8 + - 48c468a6-5638-4858-aee1-a587c6548caa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220234Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003bm1 + - 20250226T225730Z-167c755789dkxplchC1SG1rzhw0000000200000000007m1s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2311,12 +2312,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A40Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:40.2700318Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:40.2696343Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A40Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:40.2702117Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A40Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:40.2703875Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:40.2705703Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A40Z&se=2025-02-24T23%3A02%3A40Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:40.2707509Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A35Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:35.9591312Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:57:35.9588928Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A35Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:35.9591943Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A35Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:35.9592559Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:57:35.9593165Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A57%3A35Z&se=2025-02-26T23%3A57%3A35Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:57:35.9593766Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2326,17 +2327,17 @@ interactions: connection: - keep-alive content-length: - - '5506' + - '5505' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:40 GMT + - Wed, 26 Feb 2025 22:57:36 GMT mise-correlation-id: - - a157dd55-58cf-4d80-bca9-fca9a8ee7514 + - dad4092b-a479-41ce-acd8-047e9513e00a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220240Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003bud + - 20250226T225735Z-167c755789dkxplchC1SG1rzhw0000000200000000007mhr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2354,12 +2355,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A45Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:45.5219748Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:45.5215996Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A45Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:45.5221317Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A45Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:45.5223002Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:45.5224486Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A45Z&se=2025-02-24T23%3A02%3A45Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:45.5225789Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A41Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:41.2106957Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:57:41.2103349Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A41Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:41.2108393Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:41.2109821Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:57:41.211117Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A57%3A41Z&se=2025-02-26T23%3A57%3A41Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:57:41.2112536Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2369,17 +2370,17 @@ interactions: connection: - keep-alive content-length: - - '5502' + - '5482' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:45 GMT + - Wed, 26 Feb 2025 22:57:41 GMT mise-correlation-id: - - 734e6c85-e567-4672-9ccb-cb5ad08656dd + - 5600d85a-7143-407d-b7c8-bfe81e02bafb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220245Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003bzw + - 20250226T225741Z-167c755789dkxplchC1SG1rzhw0000000200000000007n00 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2397,12 +2398,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A50Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:50.7832196Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:50.7829749Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A50Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:50.7832861Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A50Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:50.7833508Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:50.7834135Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A50Z&se=2025-02-24T23%3A02%3A50Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:50.7834753Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A46Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:46.4874872Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:57:46.4872079Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A46Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:46.4875474Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A46Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:46.4876084Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:57:46.4876652Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A57%3A46Z&se=2025-02-26T23%3A57%3A46Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:57:46.4877224Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2412,17 +2413,17 @@ interactions: connection: - keep-alive content-length: - - '5498' + - '5493' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:50 GMT + - Wed, 26 Feb 2025 22:57:46 GMT mise-correlation-id: - - 9366c8f1-192b-47bd-9d72-02db38b3b77b + - 41c3feca-c582-4c5d-ad66-ffa632a003cd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220250Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003c66 + - 20250226T225746Z-167c755789dkxplchC1SG1rzhw0000000200000000007nec x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2440,12 +2441,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A56Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:56.1865552Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:02:56.1859985Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A56Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:56.1866835Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A56Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:02:56.186818Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A02%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:02:56.1869431Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A02%3A56Z&se=2025-02-24T23%3A02%3A56Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:02:56.1870721Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A51Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:51.740305Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:57:51.7398369Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A51Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:51.7405331Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A51Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:51.7406987Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:57:51.7409031Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A57%3A51Z&se=2025-02-26T23%3A57%3A51Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:57:51.741114Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2455,17 +2456,17 @@ interactions: connection: - keep-alive content-length: - - '5499' + - '5491' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:02:56 GMT + - Wed, 26 Feb 2025 22:57:51 GMT mise-correlation-id: - - d10ef06d-144b-4b2e-8bdc-93d6bdac8c8a + - a28f5018-8968-44c5-8b72-9eeecc78b554 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220256Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003ce5 + - 20250226T225751Z-167c755789dkxplchC1SG1rzhw0000000200000000007nvr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2483,12 +2484,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A01Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:01.6784668Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:03:01.6781152Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A01Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:01.6787037Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:01.6788067Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:03:01.6789009Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A03%3A01Z&se=2025-02-24T23%3A03%3A01Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:03:01.6789789Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A56Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:56.9981614Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:57:56.9976875Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A56Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:56.9983558Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A56Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:57:56.9985533Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A57%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:57:56.9987415Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A57%3A56Z&se=2025-02-26T23%3A57%3A56Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:57:56.9989485Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-26T22:55:08.439Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:56:06.42Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2498,17 +2499,17 @@ interactions: connection: - keep-alive content-length: - - '5490' + - '5495' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:01 GMT + - Wed, 26 Feb 2025 22:57:57 GMT mise-correlation-id: - - 42c65735-4f59-45b5-a6fc-655b243095e6 + - 5f03ab02-8390-48f4-bffa-351bae623706 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220301Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003cmm + - 20250226T225756Z-167c755789dkxplchC1SG1rzhw0000000200000000007pfd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2526,12 +2527,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A07Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:07.2654331Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:03:07.2651977Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A07Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:07.2655301Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A07Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:07.2656268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:03:07.2657213Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A03%3A07Z&se=2025-02-24T23%3A03%3A07Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:03:07.2658156Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:00:18.082Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:01:16.275Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A02Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:02.2483149Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:58:02.2479534Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A02Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:02.2484155Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:02.2485172Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:58:02.2486091Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A41Z&ske=2025-02-27T05%3A54%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A58%3A02Z&se=2025-02-26T23%3A58%3A02Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:58:02.2487014Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"DONE","startDateTime":"2025-02-26T22:55:08.439Z","endDateTime":"2025-02-26T22:57:57.772Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:57:58.834Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2541,21 +2542,156 @@ interactions: connection: - keep-alive content-length: - - '5496' + - '5532' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Feb 2025 22:58:02 GMT + mise-correlation-id: + - f7c257d1-e7e3-49ad-8108-ad1533056ed6 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20250226T225802Z-167c755789dkxplchC1SG1rzhw0000000200000000007pxa + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:53:53.0012133Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:53:53.0012133Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Feb 2025 22:58:03 GMT + etag: + - '"8e0190f4-0000-0200-0000-67bf9b960000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3C61306B96604B52835648CBD394D96C Ref B: MAA201060515031 Ref C: 2025-02-26T22:58:02Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + method: GET + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-12-01-preview&testId=download-test-case + response: + body: + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A04Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:04.2071638Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:58:04.2068542Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A04Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:04.2072594Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A04Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:04.207359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:58:04.2074581Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A04Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:04.2075554Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A04Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:04.2076522Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A58%3A04Z&se=2025-02-26T23%3A58%3A04Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:58:04.2077504Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"DONE","startDateTime":"2025-02-26T22:55:08.439Z","endDateTime":"2025-02-26T22:57:57.772Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:58:02.473Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-12-01-preview + connection: + - keep-alive + content-length: + - '6717' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:07 GMT + - Wed, 26 Feb 2025 22:58:04 GMT mise-correlation-id: - - aaf3798b-8245-4d8e-8be7-7d2fe08efb23 + - 1ebc71c5-424a-4d49-9efc-2e04e5672f68 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220306Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003cxz + - 20250226T225803Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000dvbm + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:53:53.0012133Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:53:53.0012133Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Feb 2025 22:58:04 GMT + etag: + - '"8e0190f4-0000-0200-0000-67bf9b960000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: BE509E3ADE3747849EAEB39430714CDB Ref B: MAA201060513027 Ref C: 2025-02-26T22:58:04Z' status: code: 200 message: OK @@ -2569,14 +2705,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A12Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:12.9603093Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:03:12.9598689Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A12Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:12.9605224Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A12Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:12.9606697Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:03:12.9609119Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A12Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:12.9611489Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A12Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:12.9613024Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A03%3A12Z&se=2025-02-24T23%3A03%3A12Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:03:12.9614995Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2025-02-24T22:00:18.082Z","endDateTime":"2025-02-24T22:03:08.217Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:03:11.602Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A05Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:05.7091882Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:58:05.7084342Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A05Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:05.7095159Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:05.7098876Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:58:05.71022Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A05Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:05.7105529Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A05Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:05.710876Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A58%3A05Z&se=2025-02-26T23%3A58%3A05Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:58:05.7112132Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"DONE","startDateTime":"2025-02-26T22:55:08.439Z","endDateTime":"2025-02-26T22:57:57.772Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:58:02.473Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2586,17 +2720,17 @@ interactions: connection: - keep-alive content-length: - - '6832' + - '6711' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:13 GMT + - Wed, 26 Feb 2025 22:58:05 GMT mise-correlation-id: - - 220450c8-0bbe-4e26-addf-fd0514253a78 + - a3ed55a4-fc04-4e24-8345-dfcdc630eab4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220312Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000003d7b + - 20250226T225805Z-167c755789dw9d62hC1SG1x2v800000001sg00000000284a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2619,7 +2753,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:56.0861268Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:56.0861268Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:53:53.0012133Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:53:53.0012133Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2628,9 +2762,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:13 GMT + - Wed, 26 Feb 2025 22:58:16 GMT etag: - - '"4f016cd2-0000-0200-0000-67bcebb80000"' + - '"8e0190f4-0000-0200-0000-67bf9b960000"' expires: - '-1' pragma: @@ -2646,7 +2780,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2B29348B3EBB4F569F5F37A92D85B37C Ref B: MAA201060514031 Ref C: 2025-02-24T22:03:13Z' + - 'Ref A: 3C1AFA77F93842978D7AEDF54E05B00B Ref B: MAA201060513047 Ref C: 2025-02-26T22:58:16Z' status: code: 200 message: OK @@ -2660,14 +2794,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-12-01-preview&testId=download-test-case + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A14Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:14.6017267Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:03:14.6008268Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A14Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:14.6019989Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A14Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:14.6022667Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:03:14.6025281Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A14Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:14.6027859Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A14Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:14.6030958Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A03%3A14Z&se=2025-02-24T23%3A03%3A14Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:03:14.6034481Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2025-02-24T22:00:18.082Z","endDateTime":"2025-02-24T22:03:08.217Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:03:11.602Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A17Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:17.6586694Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:58:17.65821Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A17Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:17.6588338Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A17Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:17.6590073Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:58:17.6591696Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A17Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:17.6593376Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A17Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:17.6595053Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A58%3A17Z&se=2025-02-26T23%3A58%3A17Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:58:17.6596786Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"DONE","startDateTime":"2025-02-26T22:55:08.439Z","endDateTime":"2025-02-26T22:57:57.772Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:58:02.473Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2677,17 +2809,17 @@ interactions: connection: - keep-alive content-length: - - '6836' + - '6696' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:14 GMT + - Wed, 26 Feb 2025 22:58:17 GMT mise-correlation-id: - - ce61061e-955f-459e-a676-b238552cfa57 + - 5ebe0284-c237-43b2-adeb-6302182732f1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220314Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000003rnf + - 20250226T225817Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000du75 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2710,7 +2842,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:56.0861268Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:56.0861268Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:53:53.0012133Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:53:53.0012133Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2719,9 +2851,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:15 GMT + - Wed, 26 Feb 2025 22:58:28 GMT etag: - - '"4f016cd2-0000-0200-0000-67bcebb80000"' + - '"8e0190f4-0000-0200-0000-67bf9b960000"' expires: - '-1' pragma: @@ -2737,7 +2869,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0D4C5EE12F1E40B2A7F5FF55B0EB4C3C Ref B: MAA201060516051 Ref C: 2025-02-24T22:03:14Z' + - 'Ref A: FCCF4DE8F991444EBCF6DC9D1699CFE8 Ref B: MAA201060515033 Ref C: 2025-02-26T22:58:27Z' status: code: 200 message: OK @@ -2751,14 +2883,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A16Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:16.0519801Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:03:16.0513611Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A16Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:16.0521158Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:16.0522464Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:03:16.0523679Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A16Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:16.0524977Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A16Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:16.0526243Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A03%3A16Z&se=2025-02-24T23%3A03%3A16Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:03:16.0527555Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2025-02-24T22:00:18.082Z","endDateTime":"2025-02-24T22:03:08.217Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:03:11.602Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A29Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:29.9628863Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:58:29.9625398Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A29Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:29.9630345Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A29Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:29.963184Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:58:29.9633277Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A29Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:29.9634745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A29Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:29.9636211Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A58%3A29Z&se=2025-02-26T23%3A58%3A29Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:58:29.9637707Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"DONE","startDateTime":"2025-02-26T22:55:08.439Z","endDateTime":"2025-02-26T22:57:57.772Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:58:02.473Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2768,17 +2898,17 @@ interactions: connection: - keep-alive content-length: - - '6842' + - '6713' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:16 GMT + - Wed, 26 Feb 2025 22:58:30 GMT mise-correlation-id: - - f903a59b-91d8-4998-9d01-e09eb47cc4de + - 0ce50e96-abf5-4389-843c-8264c98bd718 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220315Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000bvgg + - 20250226T225829Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000dvnq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2801,7 +2931,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:56.0861268Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:56.0861268Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:53:53.0012133Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:53:53.0012133Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2810,9 +2940,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:26 GMT + - Wed, 26 Feb 2025 22:58:40 GMT etag: - - '"4f016cd2-0000-0200-0000-67bcebb80000"' + - '"8e0190f4-0000-0200-0000-67bf9b960000"' expires: - '-1' pragma: @@ -2828,7 +2958,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EE722F12C95746C18820530E0F41DC82 Ref B: MAA201060516031 Ref C: 2025-02-24T22:03:26Z' + - 'Ref A: 7DC8C60144B24986B7BFDF3570A41069 Ref B: MAA201060516047 Ref C: 2025-02-26T22:58:40Z' status: code: 200 message: OK @@ -2842,14 +2972,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A27Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:27.5386799Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:03:27.5383163Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A27Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:27.538814Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A27Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:27.538949Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:03:27.5390778Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A27Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:27.5392087Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A27Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:27.5393398Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A03%3A27Z&se=2025-02-24T23%3A03%3A27Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:03:27.539472Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2025-02-24T22:00:18.082Z","endDateTime":"2025-02-24T22:03:08.217Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:03:11.602Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A41Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:41.9363203Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:58:41.9356662Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A41Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:41.9364717Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:41.9368754Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:58:41.9371903Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A41Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:41.93753Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A41Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:41.9379093Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A58%3A41Z&se=2025-02-26T23%3A58%3A41Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:58:41.9381362Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"DONE","startDateTime":"2025-02-26T22:55:08.439Z","endDateTime":"2025-02-26T22:57:57.772Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:58:02.473Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2859,17 +2987,17 @@ interactions: connection: - keep-alive content-length: - - '6837' + - '6700' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:27 GMT + - Wed, 26 Feb 2025 22:58:42 GMT mise-correlation-id: - - 6eb9bba0-d45e-4333-be48-6714991f2852 + - 297844e7-2b54-4dd5-a02e-f0ea2c712d77 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220327Z-r17775d4f98k7mk2hC1SG1n7700000000rtg0000000051tr + - 20250226T225841Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000001u6r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2892,7 +3020,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:56.0861268Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:56.0861268Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:53:53.0012133Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:53:53.0012133Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2901,9 +3029,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:38 GMT + - Wed, 26 Feb 2025 22:58:52 GMT etag: - - '"4f016cd2-0000-0200-0000-67bcebb80000"' + - '"8e0190f4-0000-0200-0000-67bf9b960000"' expires: - '-1' pragma: @@ -2919,7 +3047,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0CB5C95CE207491EBF058230D3A43B30 Ref B: MAA201060515037 Ref C: 2025-02-24T22:03:37Z' + - 'Ref A: 69989259EDCD41EFAC56974F196741EB Ref B: MAA201060513023 Ref C: 2025-02-26T22:58:52Z' status: code: 200 message: OK @@ -2933,14 +3061,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A39Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:39.003983Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:03:39.0036853Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A39Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:39.004065Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A39Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:39.0041457Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:03:39.004228Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A39Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:39.0043097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A39Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:39.0043966Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A03%3A39Z&se=2025-02-24T23%3A03%3A39Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:03:39.0047761Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2025-02-24T22:00:18.082Z","endDateTime":"2025-02-24T22:03:08.217Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:03:11.602Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A53Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:53.8820982Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:58:53.8817703Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A53Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:53.8821899Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A53Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:53.882281Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:58:53.8823691Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A53Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:53.8824587Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A58%3A53Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:58:53.8826484Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A30Z&ske=2025-02-27T05%3A54%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A58%3A53Z&se=2025-02-26T23%3A58%3A53Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:58:53.8827498Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"DONE","startDateTime":"2025-02-26T22:55:08.439Z","endDateTime":"2025-02-26T22:57:57.772Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:58:02.473Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2950,17 +3076,17 @@ interactions: connection: - keep-alive content-length: - - '6841' + - '6721' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:39 GMT + - Wed, 26 Feb 2025 22:58:53 GMT mise-correlation-id: - - 228eb96b-93e3-4df1-9fe0-16f827727502 + - a25d33b5-8f85-406d-a8dc-4223df2caf64 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220338Z-r17775d4f98lr8cghC1SG1f5ks00000008e000000000bhwh + - 20250226T225853Z-167c755789dkxplchC1SG1rzhw00000001yg00000000akga x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2983,7 +3109,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:56.0861268Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:56.0861268Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:53:53.0012133Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:53:53.0012133Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2992,9 +3118,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:49 GMT + - Wed, 26 Feb 2025 22:59:03 GMT etag: - - '"4f016cd2-0000-0200-0000-67bcebb80000"' + - '"8e0190f4-0000-0200-0000-67bf9b960000"' expires: - '-1' pragma: @@ -3010,7 +3136,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 24F13000171041A4B7C22A65A2C7E8CB Ref B: MAA201060513021 Ref C: 2025-02-24T22:03:49Z' + - 'Ref A: FADD5D31A4244D99AF62B71FEF54FCFC Ref B: MAA201060513045 Ref C: 2025-02-26T22:59:04Z' status: code: 200 message: OK @@ -3024,14 +3150,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A50Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:50.4433392Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:03:50.4431049Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A50Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:50.4434019Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A50Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:50.4434651Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:03:50.4435284Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A50Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:50.4435961Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A03%3A50Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:03:50.4436586Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A03%3A50Z&se=2025-02-24T23%3A03%3A50Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:03:50.4437199Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2025-02-24T22:00:18.082Z","endDateTime":"2025-02-24T22:03:08.217Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:03:11.602Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A05Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:05.3370951Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:59:05.3365939Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A05Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:05.3372961Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:05.3375124Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:59:05.337675Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A05Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:05.3377745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A05Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:05.3379458Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A59%3A05Z&se=2025-02-26T23%3A59%3A05Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:59:05.3381353Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"DONE","startDateTime":"2025-02-26T22:55:08.439Z","endDateTime":"2025-02-26T22:57:57.772Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:58:02.473Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3041,17 +3165,17 @@ interactions: connection: - keep-alive content-length: - - '6848' + - '6697' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:03:50 GMT + - Wed, 26 Feb 2025 22:59:05 GMT mise-correlation-id: - - e4f9d9dc-f7b7-4aab-8f7e-916dd48cb990 + - b6000138-3308-4faa-af1f-a6a21611bfc2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220349Z-r17775d4f98kr5knhC1SG1nvrw00000007w0000000002g5a + - 20250226T225904Z-r17775d4f98k7mk2hC1SG1n7700000000xx00000000089m6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3074,7 +3198,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:56.0861268Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:56.0861268Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:53:53.0012133Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:53:53.0012133Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3083,9 +3207,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:00 GMT + - Wed, 26 Feb 2025 22:59:15 GMT etag: - - '"4f016cd2-0000-0200-0000-67bcebb80000"' + - '"8e0190f4-0000-0200-0000-67bf9b960000"' expires: - '-1' pragma: @@ -3101,7 +3225,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7556F240BA864A74BE0074D3CB5E2E39 Ref B: MAA201060515053 Ref C: 2025-02-24T22:04:00Z' + - 'Ref A: 0E12DB27FB484BA58DFA4263C79EDD94 Ref B: MAA201060513027 Ref C: 2025-02-26T22:59:15Z' status: code: 200 message: OK @@ -3115,14 +3239,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A01Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:01.9313667Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:04:01.9308227Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A01Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:01.9315974Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:01.9318865Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:04:01.9321249Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A01Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:01.9323336Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A01Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:01.9325532Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A04%3A01Z&se=2025-02-24T23%3A04%3A01Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:04:01.9327607Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2025-02-24T22:00:18.082Z","endDateTime":"2025-02-24T22:03:08.217Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:03:11.602Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A17Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:17.3194874Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:59:17.3190643Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A17Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:17.3196603Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A17Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:17.3198323Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:59:17.3200038Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A17Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:17.3201745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A17Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:17.3203484Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A59%3A17Z&se=2025-02-26T23%3A59%3A17Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:59:17.3205194Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"DONE","startDateTime":"2025-02-26T22:55:08.439Z","endDateTime":"2025-02-26T22:57:57.772Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:58:02.473Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3132,17 +3254,17 @@ interactions: connection: - keep-alive content-length: - - '6840' + - '6716' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:02 GMT + - Wed, 26 Feb 2025 22:59:17 GMT mise-correlation-id: - - 7eab5d74-03f2-46ca-ae8e-dc971b51f16d + - aac65f7c-5879-47e4-acb2-68ed8f763a5f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220401Z-r17775d4f98t9jlfhC1SG10apg000000083g00000000a02f + - 20250226T225916Z-167c755789dbzxjrhC1SG1x06c00000002b000000000e18a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3165,7 +3287,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:56.0861268Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:56.0861268Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:53:53.0012133Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:53:53.0012133Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3174,9 +3296,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:12 GMT + - Wed, 26 Feb 2025 22:59:28 GMT etag: - - '"4f016cd2-0000-0200-0000-67bcebb80000"' + - '"8e0190f4-0000-0200-0000-67bf9b960000"' expires: - '-1' pragma: @@ -3192,7 +3314,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C11279AA487143CBB7823457C0F8B538 Ref B: MAA201060514045 Ref C: 2025-02-24T22:04:12Z' + - 'Ref A: DEBE1EE95E1B4208B5F36C94CFFBE26F Ref B: MAA201060515031 Ref C: 2025-02-26T22:59:27Z' status: code: 200 message: OK @@ -3206,14 +3328,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue","actualValue":-1.0,"result":"undetermined"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"testRunStatistics":{"Total":{"throughput":0.0}},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A13Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:13.4346734Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:04:13.434398Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A13Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:13.4347706Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:13.4348679Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:04:13.4349652Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A13Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:13.4350597Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A13Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:13.435154Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A04%3A13Z&se=2025-02-24T23%3A04%3A13Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:04:13.4352486Z"}}},"testResult":"NOT_APPLICABLE","virtualUsers":0,"virtualUserHours":0.0,"kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2025-02-24T22:00:18.082Z","endDateTime":"2025-02-24T22:03:08.217Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","duration":170135,"createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:04:10.879Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue","actualValue":0.0,"result":"passed"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue","actualValue":0.0,"result":"passed"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue","actualValue":450.0,"result":"failed"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue","actualValue":450.0,"result":"passed"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue","actualValue":450.0,"result":"passed"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue","actualValue":-1.0,"result":"undetermined"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"testRunStatistics":{"Total":{"transaction":"Total","sampleCount":1.0,"errorCount":0.0,"errorPct":0.0,"meanResTime":450.0,"medianResTime":450.0,"maxResTime":450.0,"minResTime":450.0,"pct75ResTime":450.0,"pct1ResTime":450.0,"pct2ResTime":450.0,"pct96ResTime":450.0,"pct98ResTime":450.0,"pct3ResTime":450.0,"pct999ResTime":450.0,"pct9999ResTime":450.0,"throughput":0.1111111111111111},"HTTP + Request":{"transaction":"HTTP Request","sampleCount":1.0,"errorCount":0.0,"errorPct":0.0,"meanResTime":450.0,"medianResTime":450.0,"maxResTime":450.0,"minResTime":450.0,"pct75ResTime":450.0,"pct1ResTime":450.0,"pct2ResTime":450.0,"pct96ResTime":450.0,"pct98ResTime":450.0,"pct3ResTime":450.0,"pct999ResTime":450.0,"pct9999ResTime":450.0,"throughput":0.1111111111111111}},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A29Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:29.2804443Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:59:29.2799835Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A29Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:29.2807255Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A29Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:29.2808412Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:59:29.2811661Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A29Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:29.2812677Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A29Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:29.2813582Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A59%3A29Z&se=2025-02-26T23%3A59%3A29Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:59:29.2814482Z"}}},"testResult":"FAILED","virtualUsers":1,"virtualUserHours":0.0,"kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"DONE","startDateTime":"2025-02-26T22:56:00Z","endDateTime":"2025-02-26T22:56:09Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","duration":9000,"createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:59:21.315Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3223,17 +3344,17 @@ interactions: connection: - keep-alive content-length: - - '7223' + - '7737' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:13 GMT + - Wed, 26 Feb 2025 22:59:29 GMT mise-correlation-id: - - d56559f5-ab81-48ba-9bff-a5d1d6c8cab4 + - 2a54620c-7900-4d86-8e11-9b46bebbff10 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220413Z-r17775d4f98dvpdwhC1SG17y38000000141g000000001g8c + - 20250226T225928Z-r17775d4f989qmrnhC1SG1rde40000001apg00000000e2bf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3256,7 +3377,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:56.0861268Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:56.0861268Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:53:53.0012133Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:53:53.0012133Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3265,9 +3386,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:24 GMT + - Wed, 26 Feb 2025 22:59:39 GMT etag: - - '"4f016cd2-0000-0200-0000-67bcebb80000"' + - '"8e0190f4-0000-0200-0000-67bf9b960000"' expires: - '-1' pragma: @@ -3283,7 +3404,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 24D07A9F4FE34AD38D0F1CAF39FE84C6 Ref B: MAA201060514047 Ref C: 2025-02-24T22:04:23Z' + - 'Ref A: CF7C1C1D1FC14FCABD3479907F13E2E2 Ref B: MAA201060513047 Ref C: 2025-02-26T22:59:39Z' status: code: 200 message: OK @@ -3297,14 +3418,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue","actualValue":-1.0,"result":"undetermined"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"testRunStatistics":{"Total":{"throughput":0.0}},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A25Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:25.3972501Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:04:25.3966397Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A25Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:25.3973481Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A25Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:25.3974417Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:04:25.3975363Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A25Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:25.3976345Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A25Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:25.3977283Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A04%3A25Z&se=2025-02-24T23%3A04%3A25Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:04:25.3978345Z"}}},"testResult":"NOT_APPLICABLE","virtualUsers":0,"virtualUserHours":0.0,"kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2025-02-24T22:00:18.082Z","endDateTime":"2025-02-24T22:03:08.217Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","duration":170135,"createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:04:10.879Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue","actualValue":0.0,"result":"passed"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue","actualValue":0.0,"result":"passed"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue","actualValue":450.0,"result":"failed"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue","actualValue":450.0,"result":"passed"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue","actualValue":450.0,"result":"passed"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue","actualValue":-1.0,"result":"undetermined"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"testRunStatistics":{"Total":{"transaction":"Total","sampleCount":1.0,"errorCount":0.0,"errorPct":0.0,"meanResTime":450.0,"medianResTime":450.0,"maxResTime":450.0,"minResTime":450.0,"pct75ResTime":450.0,"pct1ResTime":450.0,"pct2ResTime":450.0,"pct96ResTime":450.0,"pct98ResTime":450.0,"pct3ResTime":450.0,"pct999ResTime":450.0,"pct9999ResTime":450.0,"throughput":0.1111111111111111},"HTTP + Request":{"transaction":"HTTP Request","sampleCount":1.0,"errorCount":0.0,"errorPct":0.0,"meanResTime":450.0,"medianResTime":450.0,"maxResTime":450.0,"minResTime":450.0,"pct75ResTime":450.0,"pct1ResTime":450.0,"pct2ResTime":450.0,"pct96ResTime":450.0,"pct98ResTime":450.0,"pct3ResTime":450.0,"pct999ResTime":450.0,"pct9999ResTime":450.0,"throughput":0.1111111111111111}},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A41Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:41.7405134Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:59:41.7402248Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A41Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:41.7406128Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:41.7407069Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:59:41.7408126Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A41Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:41.7412592Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A41Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:41.7413692Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A59%3A41Z&se=2025-02-26T23%3A59%3A41Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:59:41.7414681Z"}}},"testResult":"FAILED","virtualUsers":1,"virtualUserHours":0.0,"kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"DONE","startDateTime":"2025-02-26T22:56:00Z","endDateTime":"2025-02-26T22:56:09Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","duration":9000,"createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:59:21.315Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3314,17 +3434,17 @@ interactions: connection: - keep-alive content-length: - - '7201' + - '7741' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:25 GMT + - Wed, 26 Feb 2025 22:59:41 GMT mise-correlation-id: - - 3745d384-c2a9-47d0-9d3a-b7daf90ddf0b + - affdea88-6123-4683-a564-31306974be2a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220424Z-r17775d4f984s8x2hC1SG1rtbn000000083g0000000095sh + - 20250226T225941Z-167c755789dh5d2xhC1SG1c6dc0000000190000000006ezp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3347,7 +3467,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:56.0861268Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:56.0861268Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:53:53.0012133Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:53:53.0012133Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3356,9 +3476,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:36 GMT + - Wed, 26 Feb 2025 22:59:51 GMT etag: - - '"4f016cd2-0000-0200-0000-67bcebb80000"' + - '"8e0190f4-0000-0200-0000-67bf9b960000"' expires: - '-1' pragma: @@ -3374,7 +3494,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 036A0D3A161D48D5A18AB45A542697B7 Ref B: MAA201060516051 Ref C: 2025-02-24T22:04:35Z' + - 'Ref A: 24A57ADAD44D4C1E8BECA77679644CDE Ref B: MAA201060515033 Ref C: 2025-02-26T22:59:52Z' status: code: 200 message: OK @@ -3388,14 +3508,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue","actualValue":-1.0,"result":"undetermined"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"testRunStatistics":{"Total":{"throughput":0.0}},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A36Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:36.8754004Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:04:36.8749685Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A36Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:36.8755708Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A36Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:36.8757415Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:04:36.8759112Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"reportFileInfo":{"url":"https://maltccstorageaccounteus.blob.core.windows.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/45338dc4-7a4c-4a73-8628-26d1cb16bcd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A42%3A45Z&ske=2025-02-26T05%3A42%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A36Z&sr=b&sp=r&sig=***","fileName":"reports.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:36.8764154Z","validationStatus":"VALIDATION_SUCCESS"},"resultFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A36Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:36.876083Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A36Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:36.8762482Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A04%3A36Z&se=2025-02-24T23%3A04%3A36Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:04:36.8765821Z"}}},"testResult":"NOT_APPLICABLE","virtualUsers":0,"virtualUserHours":0.0,"kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2025-02-24T22:00:18.082Z","endDateTime":"2025-02-24T22:03:08.217Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","duration":170135,"createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:04:25.968Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue","actualValue":0.0,"result":"passed"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue","actualValue":0.0,"result":"passed"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue","actualValue":450.0,"result":"failed"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue","actualValue":450.0,"result":"passed"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue","actualValue":450.0,"result":"passed"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue","actualValue":-1.0,"result":"undetermined"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"testRunStatistics":{"Total":{"transaction":"Total","sampleCount":1.0,"errorCount":0.0,"errorPct":0.0,"meanResTime":450.0,"medianResTime":450.0,"maxResTime":450.0,"minResTime":450.0,"pct75ResTime":450.0,"pct1ResTime":450.0,"pct2ResTime":450.0,"pct96ResTime":450.0,"pct98ResTime":450.0,"pct3ResTime":450.0,"pct999ResTime":450.0,"pct9999ResTime":450.0,"throughput":0.1111111111111111},"HTTP + Request":{"transaction":"HTTP Request","sampleCount":1.0,"errorCount":0.0,"errorPct":0.0,"meanResTime":450.0,"medianResTime":450.0,"maxResTime":450.0,"minResTime":450.0,"pct75ResTime":450.0,"pct1ResTime":450.0,"pct2ResTime":450.0,"pct96ResTime":450.0,"pct98ResTime":450.0,"pct3ResTime":450.0,"pct999ResTime":450.0,"pct9999ResTime":450.0,"throughput":0.1111111111111111}},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A53Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:53.4413631Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:59:53.4410826Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A53Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:53.4414593Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A53Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:53.4415554Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:59:53.4416417Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"reportFileInfo":{"url":"https://maltccstorageaccounteus.blob.core.windows.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/9dae9b5b-d1e2-4ef1-9600-27ee76d25137?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T18%3A35%3A13Z&ske=2025-02-28T03%3A35%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A53Z&sr=b&sp=r&sig=***","fileName":"reports.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:53.4419257Z","validationStatus":"VALIDATION_SUCCESS"},"resultFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A53Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:53.4417357Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A53Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:53.4418313Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A29Z&ske=2025-02-27T05%3A54%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A59%3A53Z&se=2025-02-26T23%3A59%3A53Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:59:53.4420094Z"}}},"testResult":"FAILED","virtualUsers":1,"virtualUserHours":0.0,"kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"DONE","startDateTime":"2025-02-26T22:56:00Z","endDateTime":"2025-02-26T22:56:09Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","duration":9000,"createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:59:44.717Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3405,17 +3524,17 @@ interactions: connection: - keep-alive content-length: - - '7770' + - '8321' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:36 GMT + - Wed, 26 Feb 2025 22:59:53 GMT mise-correlation-id: - - b6fbd1d7-1637-4eca-b63b-8ad0863561d1 + - 7fd53148-30aa-40bd-82a9-b9331e7dd4fa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220436Z-r17775d4f98mc5fbhC1SG1vp2s000000140g0000000037uv + - 20250226T225952Z-167c755789dbhjzdhC1SG1t7h800000001tg0000000029vq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3438,7 +3557,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:58:56.0861268Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:58:56.0861268Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:53:53.0012133Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:53:53.0012133Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3447,9 +3566,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:37 GMT + - Wed, 26 Feb 2025 22:59:54 GMT etag: - - '"4f016cd2-0000-0200-0000-67bcebb80000"' + - '"8e0190f4-0000-0200-0000-67bf9b960000"' expires: - '-1' pragma: @@ -3465,7 +3584,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1FBE8A259EED433BBD60C6BB5F12B460 Ref B: MAA201060514031 Ref C: 2025-02-24T22:04:37Z' + - 'Ref A: 6AA836BC11CD480386F169B2BEC970D9 Ref B: MAA201060515047 Ref C: 2025-02-26T22:59:53Z' status: code: 200 message: OK @@ -3479,14 +3598,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://0b161f78-748e-4075-ab8b-198df51009a4.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview + uri: https://2d6e9e28-5dcb-4e96-aa97-684c1c013abf.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5c243a08-31b0-4fd4-bcdf-46e5d85aedfb":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue","actualValue":-1.0,"result":"undetermined"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"testRunStatistics":{"Total":{"throughput":0.0}},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A38Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:38.7646761Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:04:38.7643697Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A38Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:38.764762Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A38Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:38.76484Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:04:38.7649253Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"reportFileInfo":{"url":"https://maltccstorageaccounteus.blob.core.windows.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/45338dc4-7a4c-4a73-8628-26d1cb16bcd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T19%3A26%3A19Z&ske=2025-02-26T04%3A26%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A38Z&sr=b&sp=r&sig=***","fileName":"reports.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:38.7651811Z","validationStatus":"VALIDATION_SUCCESS"},"resultFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A38Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:38.7650097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A38Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:38.7650941Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A04%3A38Z&se=2025-02-24T23%3A04%3A38Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:04:38.7652642Z"}}},"testResult":"NOT_APPLICABLE","virtualUsers":0,"virtualUserHours":0.0,"kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2025-02-24T22:00:18.082Z","endDateTime":"2025-02-24T22:03:08.217Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","duration":170135,"createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:04:25.968Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue","actualValue":0.0,"result":"passed"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue","actualValue":0.0,"result":"passed"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue","actualValue":450.0,"result":"failed"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue","actualValue":450.0,"result":"passed"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue","actualValue":450.0,"result":"passed"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue","actualValue":-1.0,"result":"undetermined"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"testRunStatistics":{"Total":{"transaction":"Total","sampleCount":1.0,"errorCount":0.0,"errorPct":0.0,"meanResTime":450.0,"medianResTime":450.0,"maxResTime":450.0,"minResTime":450.0,"pct75ResTime":450.0,"pct1ResTime":450.0,"pct2ResTime":450.0,"pct96ResTime":450.0,"pct98ResTime":450.0,"pct3ResTime":450.0,"pct999ResTime":450.0,"pct9999ResTime":450.0,"throughput":0.1111111111111111},"HTTP + Request":{"transaction":"HTTP Request","sampleCount":1.0,"errorCount":0.0,"errorPct":0.0,"meanResTime":450.0,"medianResTime":450.0,"maxResTime":450.0,"minResTime":450.0,"pct75ResTime":450.0,"pct1ResTime":450.0,"pct2ResTime":450.0,"pct96ResTime":450.0,"pct98ResTime":450.0,"pct3ResTime":450.0,"pct999ResTime":450.0,"pct9999ResTime":450.0,"throughput":0.1111111111111111}},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:54.9207103Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:59:54.9203272Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:54.9208345Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:54.9209627Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:59:54.921086Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"reportFileInfo":{"url":"https://maltccstorageaccounteus.blob.core.windows.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/9dae9b5b-d1e2-4ef1-9600-27ee76d25137?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A56%3A50Z&ske=2025-02-28T07%3A56%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"reports.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:54.9214568Z","validationStatus":"VALIDATION_SUCCESS"},"resultFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:54.9212106Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A54Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:59:54.9213379Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A59%3A54Z&se=2025-02-26T23%3A59%3A54Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:59:54.9215839Z"}}},"testResult":"FAILED","virtualUsers":1,"virtualUserHours":0.0,"kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"DONE","startDateTime":"2025-02-26T22:56:00Z","endDateTime":"2025-02-26T22:56:09Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","duration":9000,"createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:59:44.717Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3496,17 +3614,17 @@ interactions: connection: - keep-alive content-length: - - '7780' + - '8304' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:38 GMT + - Wed, 26 Feb 2025 22:59:55 GMT mise-correlation-id: - - 0b395563-3529-494f-a1c0-a615cea79a19 + - ab614589-449e-44a3-9caf-a6f9ed436021 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220438Z-r17775d4f98ksdkhhC1SG17z7g00000014cg000000005c1e + - 20250226T225954Z-167c755789d9f6qshC1SG1fkqn00000002gg000000002tuf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3526,7 +3644,7 @@ interactions: User-Agent: - python-requests/2.32.3 method: GET - uri: https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A38Z&sr=b&sp=r&sig=*** + uri: https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A54Z&sr=b&sp=r&sig=*** response: body: string: "displayName: CLI-Test\ntestPlan: sample-JMX-file.jmx\ndescription: @@ -3546,11 +3664,11 @@ interactions: content-type: - application/octet-stream date: - - Mon, 24 Feb 2025 22:04:39 GMT + - Wed, 26 Feb 2025 22:59:54 GMT etag: - - '"0x8DD551E9F47037C"' + - '"0x8DD56B89DB5E4C4"' last-modified: - - Mon, 24 Feb 2025 22:00:16 GMT + - Wed, 26 Feb 2025 22:55:07 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -3558,7 +3676,7 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Mon, 24 Feb 2025 22:00:16 GMT + - Wed, 26 Feb 2025 22:55:07 GMT x-ms-group: - 713ccf3d-dc33-4787-a1ee-6b0cc537c37a x-ms-lease-state: @@ -3596,7 +3714,7 @@ interactions: User-Agent: - python-requests/2.32.3 method: GET - uri: https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A33Z&ske=2025-02-25T04%3A59%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A38Z&sr=b&sp=r&sig=*** + uri: https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A59%3A54Z&sr=b&sp=r&sig=*** response: body: string: "\n","value":78.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"81b658ce-0413-4289-8be6-a858be7f1ef6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"f997d566-4a45-4602-a76b-a267ca7e46c3":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"f75bbac0-9e8c-47fd-9f4d-36d9f687819b":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"9a532eae-d46f-460d-b951-bf7c762f3354":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"6771b365-339a-4517-ab64-426bf1f8036b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue","actualValue":-1.0,"result":"undetermined"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No - requests were sent from one or more engines during the test. Check your script - and try again."}],"testRunStatistics":{"Total":{"throughput":0.0}},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A52Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:52.3482542Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:04:52.3478451Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/1266cf27-a855-4138-b0ad-d512390b2bb0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A52Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:52.3484323Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/0234c33c-ec78-4842-bc58-aa89a8547819?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A52Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:52.3486015Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/2e577c97-b36b-4c57-a3fd-7a625ea4a210?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:04:52.3487694Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"reportFileInfo":{"url":"https://maltccstorageaccounteus.blob.core.windows.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/45338dc4-7a4c-4a73-8628-26d1cb16bcd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A14Z&ske=2025-02-26T05%3A53%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A52Z&sr=b&sp=r&sig=***","fileName":"reports.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:52.3492672Z","validationStatus":"VALIDATION_SUCCESS"},"resultFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A52Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:52.3489368Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/8a6b4d38-460d-48a9-9333-339fb2268d96_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A52Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:04:52.349101Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8a6b4d38-460d-48a9-9333-339fb2268d96?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A04%3A52Z&se=2025-02-24T23%3A04%3A52Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:04:52.3494325Z"}}},"testResult":"NOT_APPLICABLE","virtualUsers":0,"virtualUserHours":0.0,"kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2025-02-24T22:00:18.082Z","endDateTime":"2025-02-24T22:03:08.217Z","executedDateTime":"2025-02-24T22:00:16.555Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","duration":170135,"createdDateTime":"2025-02-24T22:00:17.596Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:04:25.968Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"06e5b6a5-7432-4f87-9f5d-e20eb5d21df6":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue","actualValue":0.0,"result":"passed"},"bb15326f-2711-4b6b-8c38-4ede8ef2fd6f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue","actualValue":0.0,"result":"passed"},"d251fa67-5463-4538-95e6-3cbc6303c89c":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue","actualValue":450.0,"result":"failed"},"e267018f-7d83-487a-9f9c-1f1aa233ad8f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue","actualValue":450.0,"result":"passed"},"5860cda8-f4b6-47f3-9669-31bef1ac06ad":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue","actualValue":450.0,"result":"passed"},"d6594b2d-b3ba-4445-8132-4be95e5af36b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue","actualValue":-1.0,"result":"undetermined"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"testRunStatistics":{"Total":{"transaction":"Total","sampleCount":1.0,"errorCount":0.0,"errorPct":0.0,"meanResTime":450.0,"medianResTime":450.0,"maxResTime":450.0,"minResTime":450.0,"pct75ResTime":450.0,"pct1ResTime":450.0,"pct2ResTime":450.0,"pct96ResTime":450.0,"pct98ResTime":450.0,"pct3ResTime":450.0,"pct999ResTime":450.0,"pct9999ResTime":450.0,"throughput":0.1111111111111111},"HTTP + Request":{"transaction":"HTTP Request","sampleCount":1.0,"errorCount":0.0,"errorPct":0.0,"meanResTime":450.0,"medianResTime":450.0,"maxResTime":450.0,"minResTime":450.0,"pct75ResTime":450.0,"pct1ResTime":450.0,"pct2ResTime":450.0,"pct96ResTime":450.0,"pct98ResTime":450.0,"pct3ResTime":450.0,"pct999ResTime":450.0,"pct9999ResTime":450.0,"throughput":0.1111111111111111}},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A00%3A08Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:00:08.1521108Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A00%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:00:08.1518315Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/219a11c7-6bd8-4165-b320-3b146c150d80?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A00%3A08Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:00:08.1521907Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/7f59a30d-ba0a-41ff-8e13-b3b644aff13c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A00%3A08Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:00:08.1522707Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/031b0c1e-16be-44db-b858-569b97815410?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A00%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:00:08.1523478Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"reportFileInfo":{"url":"https://maltccstorageaccounteus.blob.core.windows.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/9dae9b5b-d1e2-4ef1-9600-27ee76d25137?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A56%3A50Z&ske=2025-02-28T07%3A56%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A00%3A08Z&sr=b&sp=r&sig=***","fileName":"reports.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:00:08.1525879Z","validationStatus":"VALIDATION_SUCCESS"},"resultFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A00%3A08Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:00:08.1524245Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A00%3A08Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:00:08.1525036Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/28d6d2f4-1c8d-4f90-97d9-bf05a6f36b39?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A00%3A08Z&se=2025-02-27T00%3A00%3A08Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:00:08.1526654Z"}}},"testResult":"FAILED","virtualUsers":1,"virtualUserHours":0.0,"kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"DONE","startDateTime":"2025-02-26T22:56:00Z","endDateTime":"2025-02-26T22:56:09Z","executedDateTime":"2025-02-26T22:55:07.568Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/download-test-case/testRunId/download-test-run-case","duration":9000,"createdDateTime":"2025-02-26T22:55:07.853Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:59:44.717Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -140185,17 +140309,17 @@ interactions: connection: - keep-alive content-length: - - '7786' + - '8323' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:52 GMT + - Wed, 26 Feb 2025 23:00:08 GMT mise-correlation-id: - - f5c9af7f-eb77-4771-ab50-9558fe7ca38a + - 7fa7f842-8780-4953-9e0b-cde7224211c6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220451Z-r17775d4f98fb5c8hC1SG163n000000008g0000000009guv + - 20250226T230007Z-167c755789dpktj6hC1SG1nr68000000023g00000000dk0z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -140215,7 +140339,7 @@ interactions: User-Agent: - python-requests/2.32.3 method: GET - uri: https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/ec2e73b6-07c8-4bde-99c9-2e9c45147aea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A52Z&sr=b&sp=r&sig=*** + uri: https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/f970e5a8-8c50-4b51-8cbc-6fd713026ba1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A00%3A08Z&sr=b&sp=r&sig=*** response: body: string: "displayName: CLI-Test\ntestPlan: sample-JMX-file.jmx\ndescription: @@ -140235,11 +140359,11 @@ interactions: content-type: - application/octet-stream date: - - Mon, 24 Feb 2025 22:04:52 GMT + - Wed, 26 Feb 2025 23:00:08 GMT etag: - - '"0x8DD551E9F47037C"' + - '"0x8DD56B89DB5E4C4"' last-modified: - - Mon, 24 Feb 2025 22:00:16 GMT + - Wed, 26 Feb 2025 22:55:07 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -140247,7 +140371,7 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Mon, 24 Feb 2025 22:00:16 GMT + - Wed, 26 Feb 2025 22:55:07 GMT x-ms-group: - 713ccf3d-dc33-4787-a1ee-6b0cc537c37a x-ms-lease-state: @@ -140285,7 +140409,7 @@ interactions: User-Agent: - python-requests/2.32.3 method: GET - uri: https://r105xs7oprns077dk62vdqoz.z34.blob.storage.azure.net/8476bb0d-34d5-415d-a5b8-34a9fe59377e/93031561-4b1e-4850-8e0f-17caa789d2ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A59%3A35Z&ske=2025-02-25T04%3A59%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A04%3A52Z&sr=b&sp=r&sig=*** + uri: https://a9ffli4pz4bnwj3ccqe6j448.z36.blob.storage.azure.net/efddff8f-a5bf-4334-a12a-7ba4957cae6f/65300187-58e7-4e63-a62f-b7173972a054?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A54%3A28Z&ske=2025-02-27T05%3A54%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A00%3A08Z&sr=b&sp=r&sig=*** response: body: string: "\n", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": - 85, "errorRateTimeWindowInSeconds": 120}}' + 85, "errorRateTimeWindowInSeconds": 120}, "engineBuiltinIdentityType": null, + "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -115,7 +116,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1375' + - '1444' Content-Type: - application/merge-patch+json User-Agent: @@ -723,7 +724,7 @@ interactions: connection: - keep-alive content-length: - - '561' + - '563' content-type: - application/json; charset=utf-8 date: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_list.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_list.yaml index be5f708b20b..d9ebb676e01 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_list.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_list.yaml @@ -105,7 +105,8 @@ interactions: {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", "value": "540"}, "01a7b960-fca5-4bb9-b797-bc0f67f9e389": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,7 +115,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: @@ -227,7 +228,7 @@ interactions: connection: - keep-alive content-length: - - '580' + - '572' content-type: - application/json; charset=utf-8 date: @@ -636,7 +637,7 @@ interactions: connection: - keep-alive content-length: - - '559' + - '560' content-type: - application/json; charset=utf-8 date: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_metrics.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_metrics.yaml index 929dbc8d69a..16db8b2889b 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_metrics.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_metrics.yaml @@ -14,7 +14,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:20.5081002Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:20.5081002Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:18:39.5961113Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:18:39.5961113Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -23,9 +23,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:55 GMT + - Wed, 26 Feb 2025 23:19:13 GMT etag: - - '"4f0182ee-0000-0200-0000-67bcecfb0000"' + - '"8f01698b-0000-0200-0000-67bfa1670000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 04871E8C65BD408394A98316C30ED681 Ref B: MAA201060516031 Ref C: 2025-02-24T22:04:54Z' + - 'Ref A: 9FA30D840F004FA48AF2ED34B7854BE3 Ref B: MAA201060516047 Ref C: 2025-02-26T23:19:12Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -71,15 +71,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 22:04:55 GMT + - Wed, 26 Feb 2025 23:19:14 GMT mise-correlation-id: - - abe984f6-b2d7-43cd-9556-2fe0bbcded89 + - a7756b2c-716c-4a66-a1c4-d06f3ca37371 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T220455Z-r17775d4f98ccgs6hC1SG1tvpn00000008r00000000004zy + - 20250226T231913Z-167c755789drsd6jhC1SG13zv4000000011000000000dph8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -95,17 +95,18 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "120"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"16cfc70c-3986-42be-b697-a208aac0ae42": + true}, "passFailCriteria": {"passFailMetrics": {"20762ad5-6ed1-4564-aceb-e088282d16df": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "4aad42c7-fb27-4d7f-bc15-931086fa4d57": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "33015c58-c892-4470-a8bc-152a65d7c71d": + "78"}, "f0988dc0-e172-4cfc-b880-4a63377fffda": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "97b52381-51c6-4d4a-949c-f474228d850b": {"aggregate": "p75", "clientMetric": "response_time_ms", "condition": ">", "value": - "380"}, "1928ee2e-54b0-4349-b090-312a9b6233bb": {"aggregate": "p99", "clientMetric": - "response_time_ms", "condition": ">", "value": "520"}, "37dcf1ed-7419-4487-a5b3-eed5ad231a6f": + "380"}, "58ff8050-6cc2-42ca-8788-a5b239d72bd5": {"aggregate": "p99", "clientMetric": + "response_time_ms", "condition": ">", "value": "520"}, "6f3db965-439c-4b72-bc73-14c781e77a48": {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", - "value": "540"}, "4390c1a2-f7a6-47fc-b219-95228882d874": {"aggregate": "avg", + "value": "540"}, "5b7e513d-1974-435e-8871-e10925bc2c9c": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,17 +115,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1309' + - '1378' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T22:04:56.236Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:04:56.236Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:19:15.183Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:19:15.183Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -136,15 +137,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:56 GMT + - Wed, 26 Feb 2025 23:19:15 GMT location: - - https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-12-01-preview + - https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-12-01-preview mise-correlation-id: - - d9c43406-9000-4089-9e16-f314fa01cd0a + - c1c5ed63-bef7-49cd-8c9a-1ee9e21a8d04 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220455Z-r17775d4f98ccgs6hC1SG1tvpn00000008r000000000050s + - 20250226T231914Z-167c755789drsd6jhC1SG13zv4000000011000000000dpmn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -162,9 +163,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -181,13 +182,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:56 GMT + - Wed, 26 Feb 2025 23:19:15 GMT mise-correlation-id: - - ec83873e-5621-4882-8039-8fed28fbb93f + - 9b61d9c7-a0f6-4256-aa25-604793e9459b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220456Z-r17775d4f98ccgs6hC1SG1tvpn00000008r000000000051f + - 20250226T231915Z-167c755789drsd6jhC1SG13zv4000000011000000000dppp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -212,14 +213,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A14%3A56Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:14:56.9749034Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:29:16.0059662Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -227,19 +228,19 @@ interactions: connection: - keep-alive content-length: - - '575' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:57 GMT + - Wed, 26 Feb 2025 23:19:16 GMT location: - - https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 27d3652d-cbe1-419d-8213-2cefedcba2a5 + - ddd1b287-0541-45f2-84bd-f795a843eb3e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220456Z-r17775d4f98ccgs6hC1SG1tvpn00000008r000000000051k + - 20250226T231915Z-167c755789drsd6jhC1SG13zv4000000011000000000dpqe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -257,12 +258,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A14%3A57Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:14:57.260892Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:29:16.3217851Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -272,17 +273,17 @@ interactions: connection: - keep-alive content-length: - - '574' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:57 GMT + - Wed, 26 Feb 2025 23:19:16 GMT mise-correlation-id: - - b765cec1-f5be-4353-b748-3a3686380649 + - 833ddcf5-99b6-4095-9b60-3c7388d6a773 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220457Z-r17775d4f98ccgs6hC1SG1tvpn00000008r0000000000528 + - 20250226T231916Z-167c755789drsd6jhC1SG13zv4000000011000000000dprn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -311,14 +312,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A14%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:14:57.6857869Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:29:17.1990478Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -330,15 +331,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:57 GMT + - Wed, 26 Feb 2025 23:19:17 GMT location: - - https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 873384cb-1f16-4447-bbac-8b161128bcb7 + - 546b8aa6-774d-4007-b1f7-aed25cfc2f2c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220457Z-r17775d4f98ccgs6hC1SG1tvpn00000008r000000000052k + - 20250226T231916Z-167c755789drsd6jhC1SG13zv4000000011000000000dpsn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -356,12 +357,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A14%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:14:58.9092577Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:29:18.2406305Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -371,17 +372,17 @@ interactions: connection: - keep-alive content-length: - - '567' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:59 GMT + - Wed, 26 Feb 2025 23:19:18 GMT mise-correlation-id: - - b206c20b-7cf8-4b83-90e9-616b3520ebc6 + - ab6fa06c-f4ca-44dc-be7c-380d10211b07 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220457Z-r17775d4f98ccgs6hC1SG1tvpn00000008r0000000000533 + - 20250226T231917Z-167c755789drsd6jhC1SG13zv4000000011000000000dpuh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -490,14 +491,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:00.2749131Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:18.7665588Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -505,19 +506,19 @@ interactions: connection: - keep-alive content-length: - - '561' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:00 GMT + - Wed, 26 Feb 2025 23:19:18 GMT location: - - https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - d3fc2bd5-905f-49a4-a7d7-c07944f9d901 + - 53a37d4d-082b-46b4-a765-d06193171788 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220459Z-r17775d4f98ccgs6hC1SG1tvpn00000008r000000000054w + - 20250226T231918Z-167c755789drsd6jhC1SG13zv4000000011000000000dpxg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -535,12 +536,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:00.5650369Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:19.0292335Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -550,17 +551,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:00 GMT + - Wed, 26 Feb 2025 23:19:19 GMT mise-correlation-id: - - 476e5e67-1c09-4bdc-b293-e170fe4f1ea5 + - 12abf30f-474e-423e-a4eb-27185e8659eb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220500Z-r17775d4f98ccgs6hC1SG1tvpn00000008r000000000056b + - 20250226T231918Z-167c755789drsd6jhC1SG13zv4000000011000000000dpz0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -578,12 +579,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:05.8264531Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:24.2797592Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -597,13 +598,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:05 GMT + - Wed, 26 Feb 2025 23:19:24 GMT mise-correlation-id: - - 43d100da-a8a9-4255-9fbc-c73a4828f11e + - 6013bbfe-ba93-491a-a2b2-94d031b28b86 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220505Z-r17775d4f98ccgs6hC1SG1tvpn00000008r00000000005cw + - 20250226T231924Z-167c755789drsd6jhC1SG13zv4000000011000000000dqhw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -621,12 +622,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:11.0779291Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A18Z&ske=2025-02-27T06%3A19%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:29.5319806Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -636,17 +637,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:11 GMT + - Wed, 26 Feb 2025 23:19:29 GMT mise-correlation-id: - - e16a4550-77e8-40bd-9396-d531f97b3bdb + - 33fa9e98-13e4-44a1-9220-47df4c9b01b5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220510Z-r17775d4f98ccgs6hC1SG1tvpn00000008r00000000005na + - 20250226T231929Z-167c755789drsd6jhC1SG13zv4000000011000000000dr08 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -664,12 +665,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:16.3300998Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:34.7862044Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -683,13 +684,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:16 GMT + - Wed, 26 Feb 2025 23:19:34 GMT mise-correlation-id: - - 500a8581-e14a-447a-8c0a-06fcb08de7b3 + - b2e22e80-a020-46ef-a90e-1546acee2010 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220516Z-r17775d4f98ccgs6hC1SG1tvpn00000008r00000000005uk + - 20250226T231934Z-167c755789drsd6jhC1SG13zv4000000011000000000drcq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -707,12 +708,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:21.582952Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:40.11686Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -722,17 +723,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:21 GMT + - Wed, 26 Feb 2025 23:19:40 GMT mise-correlation-id: - - e97cbf48-8c01-469c-a260-a2fe75515dcf + - 52dfd235-3487-4970-97bf-5ebf150f46ed strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220521Z-r17775d4f98ccgs6hC1SG1tvpn00000008r000000000063m + - 20250226T231939Z-167c755789drsd6jhC1SG13zv4000000011000000000drx1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -750,12 +751,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:26.8309863Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:45.3737064Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -765,17 +766,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:26 GMT + - Wed, 26 Feb 2025 23:19:45 GMT mise-correlation-id: - - 9aae0984-7721-4650-b856-3243e54aed07 + - 4947d19e-7afb-4445-8c42-13e6b8259402 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220526Z-r17775d4f98ccgs6hC1SG1tvpn00000008r00000000006ad + - 20250226T231945Z-167c755789drsd6jhC1SG13zv4000000011000000000dsed x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -793,12 +794,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:32.1011082Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:50.6255761Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -812,13 +813,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:32 GMT + - Wed, 26 Feb 2025 23:19:50 GMT mise-correlation-id: - - 26b3011f-4511-48b5-9527-c88f5b053a08 + - 3469f5ed-483a-4740-bd74-d3a0749c25a9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220531Z-r17775d4f98ccgs6hC1SG1tvpn00000008r00000000006k9 + - 20250226T231950Z-167c755789drsd6jhC1SG13zv4000000011000000000dt0s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -836,12 +837,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:37.3569662Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A29%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:29:55.8860693Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -851,17 +852,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:37 GMT + - Wed, 26 Feb 2025 23:19:56 GMT mise-correlation-id: - - 9dc004cc-a8f3-4585-bce6-e7067ee8e647 + - 0f19417c-830e-4720-bec0-d6b8354885cb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220537Z-r17775d4f98ccgs6hC1SG1tvpn00000008r00000000006tm + - 20250226T231955Z-167c755789drsd6jhC1SG13zv4000000011000000000dts7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -879,13 +880,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:37.61059Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A37Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:37.6109799Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:37.6111232Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T22:04:56.236Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:32.86Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A19%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:19:57.2471456Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A19%3A57Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:19:57.2476118Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A19%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:19:57.2477553Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:19:15.183Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:19:52.086Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -895,17 +896,17 @@ interactions: connection: - keep-alive content-length: - - '3371' + - '3382' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:37 GMT + - Wed, 26 Feb 2025 23:19:57 GMT mise-correlation-id: - - 28334df9-a074-419f-a59c-ad1ef901e37d + - a2504a5d-f56d-4e22-8c9c-9c6f4dad2bb9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220537Z-r17775d4f98ccgs6hC1SG1tvpn00000008r00000000006tw + - 20250226T231956Z-167c755789drsd6jhC1SG13zv4000000011000000000dtth x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -928,7 +929,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:20.5081002Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:20.5081002Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:18:39.5961113Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:18:39.5961113Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -937,9 +938,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:37 GMT + - Wed, 26 Feb 2025 23:19:57 GMT etag: - - '"4f0182ee-0000-0200-0000-67bcecfb0000"' + - '"8f01698b-0000-0200-0000-67bfa1670000"' expires: - '-1' pragma: @@ -955,7 +956,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2D0AB8F772BC41688EC47CDAE71BDE0F Ref B: MAA201060513019 Ref C: 2025-02-24T22:05:37Z' + - 'Ref A: 63FA04023F854B238DA8CA40A6BF27EE Ref B: MAA201060515031 Ref C: 2025-02-26T23:19:57Z' status: code: 200 message: OK @@ -969,13 +970,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:39.094368Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A39Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:39.0947802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:39.0949904Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T22:04:56.236Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:32.86Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A19%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:19:58.9187956Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A19%3A58Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:19:58.9190765Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A19%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:19:58.9191777Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:19:15.183Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:19:52.086Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -985,17 +986,17 @@ interactions: connection: - keep-alive content-length: - - '3380' + - '3382' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:39 GMT + - Wed, 26 Feb 2025 23:19:59 GMT mise-correlation-id: - - 5255e134-e4e3-4fb8-99f4-d1858d428294 + - 56f2b46c-2e8c-4157-912f-fe7e58e12742 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220538Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000c4f4 + - 20250226T231958Z-167c755789dkxplchC1SG1rzhw000000020000000000bsmq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1018,7 +1019,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:20.5081002Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:20.5081002Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:18:39.5961113Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:18:39.5961113Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1027,9 +1028,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:39 GMT + - Wed, 26 Feb 2025 23:19:59 GMT etag: - - '"4f0182ee-0000-0200-0000-67bcecfb0000"' + - '"8f01698b-0000-0200-0000-67bfa1670000"' expires: - '-1' pragma: @@ -1045,7 +1046,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DE6805AD74C142179988878513E9913E Ref B: MAA201060515053 Ref C: 2025-02-24T22:05:39Z' + - 'Ref A: 08777AE7F6644A58BFF7B905998291E4 Ref B: MAA201060513045 Ref C: 2025-02-26T23:19:59Z' status: code: 200 message: OK @@ -1059,9 +1060,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with @@ -1075,15 +1076,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 22:05:40 GMT + - Wed, 26 Feb 2025 23:20:01 GMT mise-correlation-id: - - 951bfb72-ef9c-49b3-9dce-de7b13da994a + - a3d98330-9594-4dcf-a500-4796afa23909 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T220540Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000x0r + - 20250226T232000Z-167c755789dw9d62hC1SG1x2v800000001sg000000005kny x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1107,12 +1108,12 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A42Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:42.2925175Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:42.2921209Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A42Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:42.2927097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A42Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:42.2929241Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:42.2931276Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A05%3A42Z&se=2025-02-24T23%3A05%3A42Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:05:42.293306Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"ACCEPTED","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:42.282Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A04Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:04.2336369Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:04.2322447Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A04Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:04.233812Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A04Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:04.2339984Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:04.2341606Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A04Z&se=2025-02-27T00%3A20%3A04Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:04.2343454Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"ACCEPTED","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:04.222Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1124,15 +1125,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:42 GMT + - Wed, 26 Feb 2025 23:20:04 GMT location: - - https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + - https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview mise-correlation-id: - - b1cbde28-f696-40f1-b596-6be6670b58a1 + - 6564c434-0b57-41d2-92bf-fc3f285e5c26 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220540Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000x1s + - 20250226T232001Z-167c755789dw9d62hC1SG1x2v800000001sg000000005kq1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1150,12 +1151,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A42Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:42.6336728Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:42.6331539Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A42Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:42.63389Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A42Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:42.634075Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:42.6342607Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A05%3A42Z&se=2025-02-24T23%3A05%3A42Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:05:42.6344443Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"NOTSTARTED","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:42.485Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A04Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:04.5896886Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:04.5880309Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A04Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:04.5900512Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A04Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:04.5903698Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:04.5907266Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A04Z&se=2025-02-27T00%3A20%3A04Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:04.5910026Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"NOTSTARTED","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:04.442Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1165,17 +1166,17 @@ interactions: connection: - keep-alive content-length: - - '5484' + - '5485' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:42 GMT + - Wed, 26 Feb 2025 23:20:04 GMT mise-correlation-id: - - 591733a4-fc08-43a5-8582-99712509cc48 + - f234186c-e114-4a99-8253-8d97b6286fef strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220542Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000x48 + - 20250226T232004Z-167c755789dw9d62hC1SG1x2v800000001sg000000005kw7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1193,12 +1194,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A47Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:47.903802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:47.9032984Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A47Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:47.9039557Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:47.904109Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:47.9042592Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A05%3A47Z&se=2025-02-24T23%3A05%3A47Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:05:47.90441Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:42.641Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A09Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:09.8480604Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:09.8477638Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A09Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:09.8481387Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A09Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:09.8482185Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:09.8483054Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A09Z&se=2025-02-27T00%3A20%3A09Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:09.8484319Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:04.753Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1208,17 +1209,17 @@ interactions: connection: - keep-alive content-length: - - '5487' + - '5499' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:48 GMT + - Wed, 26 Feb 2025 23:20:09 GMT mise-correlation-id: - - 82602677-6f42-4162-b560-fa9059856a58 + - 7ab03c17-65be-480f-8efd-f5f48f1db863 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220547Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000xez + - 20250226T232009Z-167c755789dw9d62hC1SG1x2v800000001sg000000005m7k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1236,12 +1237,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A53Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:53.1554627Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:53.154818Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A53Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:53.1555987Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A53Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:53.1557372Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:53.155875Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A05%3A53Z&se=2025-02-24T23%3A05%3A53Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:05:53.1560074Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:42.641Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A15Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:15.2399824Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:15.2396869Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A15Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:15.2401135Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:15.2402445Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:15.2403773Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A15Z&se=2025-02-27T00%3A20%3A15Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:15.240511Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:04.753Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1251,17 +1252,17 @@ interactions: connection: - keep-alive content-length: - - '5487' + - '5494' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:53 GMT + - Wed, 26 Feb 2025 23:20:15 GMT mise-correlation-id: - - 6e539d5d-ebf3-40a8-a50b-222e6942a461 + - eb7fdd0c-642a-4105-8443-a0fc90006c4a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220553Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000xpn + - 20250226T232015Z-167c755789dw9d62hC1SG1x2v800000001sg000000005mk1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1279,12 +1280,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A58Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:58.8676528Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:58.8673006Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A58Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:58.8678248Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A58Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:58.86795Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:58.8680837Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A05%3A58Z&se=2025-02-24T23%3A05%3A58Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:05:58.8682216Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:42.641Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A20Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:20.7772236Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:20.776747Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A20Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:20.777368Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A20Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:20.7775123Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:20.7776484Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A20Z&se=2025-02-27T00%3A20%3A20Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:20.7777831Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:04.753Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1294,17 +1295,17 @@ interactions: connection: - keep-alive content-length: - - '5481' + - '5493' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:59 GMT + - Wed, 26 Feb 2025 23:20:20 GMT mise-correlation-id: - - 9dc37a33-05d9-4c95-b032-46eedc1cd61d + - ea762fed-1477-416b-a928-009bfc1d20c6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220558Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000y77 + - 20250226T232020Z-167c755789dw9d62hC1SG1x2v800000001sg000000005n39 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1322,12 +1323,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A04Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:04.1447782Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:04.1443259Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A04Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:04.1449848Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A04Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:04.1451643Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:04.1453385Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A04Z&se=2025-02-24T23%3A06%3A04Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:04.1455145Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:42.641Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A26Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:26.0630338Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:26.0625888Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A26Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:26.063201Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A26Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:26.0633707Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:26.0635365Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A26Z&se=2025-02-27T00%3A20%3A26Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:26.0637066Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:04.753Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1337,17 +1338,17 @@ interactions: connection: - keep-alive content-length: - - '5495' + - '5482' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:04 GMT + - Wed, 26 Feb 2025 23:20:26 GMT mise-correlation-id: - - 283d4bc5-9fe5-4d25-a5b5-8fc52ae2382b + - ffd4905f-3919-414c-942d-44f3ead42ae8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220604Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000ynp + - 20250226T232025Z-167c755789dw9d62hC1SG1x2v800000001sg000000005ngd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1365,12 +1366,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A09Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:09.4299862Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:09.3951998Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A09Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:09.4301484Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A09Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:09.4302956Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:09.4304323Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A09Z&se=2025-02-24T23%3A06%3A09Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:09.4305989Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:42.641Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A31Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:31.3166516Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:31.3161494Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A31Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:31.3168138Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:31.3169552Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:31.3171415Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A31Z&se=2025-02-27T00%3A20%3A31Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:31.3172842Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:04.753Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1380,17 +1381,17 @@ interactions: connection: - keep-alive content-length: - - '5485' + - '5483' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:09 GMT + - Wed, 26 Feb 2025 23:20:31 GMT mise-correlation-id: - - 34817e09-9ef3-492c-a28c-82b0bb5f15f2 + - 496144f3-3119-4f91-8a80-3c868d27964a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220609Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000yya + - 20250226T232031Z-167c755789dw9d62hC1SG1x2v800000001sg000000005nth x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1408,12 +1409,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A14Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:14.7219743Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:14.7212454Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A14Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:14.7221867Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A14Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:14.7224045Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:14.7226098Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A14Z&se=2025-02-24T23%3A06%3A14Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:14.7228381Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:42.641Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A36Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:36.5720756Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:36.5716682Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A36Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:36.5722215Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A36Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:36.5723648Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:36.5725059Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A36Z&se=2025-02-27T00%3A20%3A36Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:36.5726402Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:04.753Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1423,17 +1424,17 @@ interactions: connection: - keep-alive content-length: - - '5491' + - '5489' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:14 GMT + - Wed, 26 Feb 2025 23:20:36 GMT mise-correlation-id: - - 2c632de9-a5b0-4088-881a-98ee72e96fe5 + - b2669b86-621a-4efc-b7c1-0424d9d19c2e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220614Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000z92 + - 20250226T232036Z-167c755789dw9d62hC1SG1x2v800000001sg000000005p5y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1451,12 +1452,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A19Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:19.9730223Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:19.9726947Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A19Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:19.9731191Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A19Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:19.9732145Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:19.9733109Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A19Z&se=2025-02-24T23%3A06%3A19Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:19.9734036Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:42.641Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A41Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:41.8363443Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:41.8360678Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A41Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:41.8364254Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:41.8365067Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:41.8365899Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A41Z&se=2025-02-27T00%3A20%3A41Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:41.8367133Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:04.753Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1466,17 +1467,17 @@ interactions: connection: - keep-alive content-length: - - '5499' + - '5493' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:20 GMT + - Wed, 26 Feb 2025 23:20:41 GMT mise-correlation-id: - - 99e2b813-1813-4b27-a66c-6c90896e42ac + - 80508afb-e58a-4953-bbb6-f6e70921a3f1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220619Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000zhy + - 20250226T232041Z-167c755789dw9d62hC1SG1x2v800000001sg000000005prr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1494,12 +1495,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A25Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:25.2676577Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:25.2670392Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A25Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:25.2679241Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A25Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:25.2682588Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:25.2685059Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A25Z&se=2025-02-24T23%3A06%3A25Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:25.268765Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:42.641Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A47Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:47.0896161Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:47.08903Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A47Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:47.0899101Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:47.0900549Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:47.0902326Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A47Z&se=2025-02-27T00%3A20%3A47Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:47.0904241Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:04.753Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1509,17 +1510,17 @@ interactions: connection: - keep-alive content-length: - - '5490' + - '5491' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:25 GMT + - Wed, 26 Feb 2025 23:20:47 GMT mise-correlation-id: - - ef18aeff-17ff-4d82-98f8-d4a805ab4f4c + - 5567400b-d1e9-403c-99e5-80ac5af1508c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220625Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000000zw0 + - 20250226T232046Z-167c755789dw9d62hC1SG1x2v800000001sg000000005q3w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1537,12 +1538,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A30Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:30.520547Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:30.5199905Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A30Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:30.5206703Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A30Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:30.5210247Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:30.5211396Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A30Z&se=2025-02-24T23%3A06%3A30Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:30.5214382Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:42.641Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A52Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:52.3444755Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:52.3437592Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A52Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:52.3447678Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A52Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:52.3450869Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:52.3453621Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A52Z&se=2025-02-27T00%3A20%3A52Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:52.345641Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:04.753Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1552,17 +1553,17 @@ interactions: connection: - keep-alive content-length: - - '5494' + - '5480' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:30 GMT + - Wed, 26 Feb 2025 23:20:52 GMT mise-correlation-id: - - b41ba32b-490d-4ef9-86bb-4190abae6546 + - 464cb627-7601-40c1-9c5e-bb07b8d59d6f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220630Z-r17775d4f98t9jlfhC1SG10apg00000008ag00000000104a + - 20250226T232052Z-167c755789dw9d62hC1SG1x2v800000001sg000000005qpc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1580,12 +1581,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A35Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:35.7809956Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:35.7807119Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A35Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:35.7810659Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A35Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:35.7811375Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:35.7812103Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A35Z&se=2025-02-24T23%3A06%3A35Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:35.7812772Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:42.641Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A57Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:57.6819308Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:20:57.6815113Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A57Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:57.6820728Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A57Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:20:57.682212Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A20%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:20:57.6823483Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A20%3A57Z&se=2025-02-27T00%3A20%3A57Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:20:57.6824861Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:04.753Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1595,17 +1596,17 @@ interactions: connection: - keep-alive content-length: - - '5483' + - '5484' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:35 GMT + - Wed, 26 Feb 2025 23:20:57 GMT mise-correlation-id: - - ce73829e-699c-453f-895b-722b5f39cd68 + - c9adb291-7d7c-4b24-a3b5-0088cd166ba0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220635Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000010d1 + - 20250226T232057Z-167c755789dw9d62hC1SG1x2v800000001sg000000005r2g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1623,12 +1624,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A41Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:41.039229Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:41.0390302Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A41Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:41.0392802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:41.0393294Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:41.0393755Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A41Z&se=2025-02-24T23%3A06%3A41Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:41.0394227Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"CONFIGURING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:38.564Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A02Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:02.9368206Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:02.9363585Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A02Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:02.9369728Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:02.9371271Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:02.9372868Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A02Z&se=2025-02-27T00%3A21%3A02Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:02.9374088Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"CONFIGURING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:20:58.231Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1638,17 +1639,17 @@ interactions: connection: - keep-alive content-length: - - '5483' + - '5486' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:41 GMT + - Wed, 26 Feb 2025 23:21:03 GMT mise-correlation-id: - - 7fa14649-4755-42d8-858a-c9d5f0fe5b8f + - 2a2e75ef-7e1a-4474-be50-4f34536f4067 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220640Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000010nh + - 20250226T232102Z-167c755789dw9d62hC1SG1x2v800000001sg000000005rft x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1666,12 +1667,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A46Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:46.2930239Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:46.2926766Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A46Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:46.2931168Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A46Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:46.2932062Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:46.2932935Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A46Z&se=2025-02-24T23%3A06%3A46Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:46.2933832Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A08Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:08.1873253Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:08.187037Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A08Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:08.1874184Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A08Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:08.1875097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:08.1875965Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A08Z&se=2025-02-27T00%3A21%3A08Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:08.1876818Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1681,17 +1682,17 @@ interactions: connection: - keep-alive content-length: - - '5484' + - '5489' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:46 GMT + - Wed, 26 Feb 2025 23:21:08 GMT mise-correlation-id: - - 6f444e16-7766-475c-95e1-43deb56035b2 + - e31c85aa-a691-48d2-8b7b-83b840bb080d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220646Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000010wt + - 20250226T232108Z-167c755789dw9d62hC1SG1x2v800000001sg000000005rup x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1709,12 +1710,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A52Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:52.0332516Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:52.0328507Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A52Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:52.033423Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A52Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:52.0335962Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:52.0337631Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A52Z&se=2025-02-24T23%3A06%3A52Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:52.0339347Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A13Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:13.44359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:13.4432051Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A13Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:13.4437625Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:13.4439337Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:13.4441038Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A13Z&se=2025-02-27T00%3A21%3A13Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:13.4442669Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1724,17 +1725,17 @@ interactions: connection: - keep-alive content-length: - - '5479' + - '5488' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:52 GMT + - Wed, 26 Feb 2025 23:21:13 GMT mise-correlation-id: - - 4c9ff6df-7e7a-46de-823a-6bf53f6a469d + - d611499d-d309-4af1-a693-1ff2dd98b88c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220651Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000001144 + - 20250226T232113Z-167c755789dw9d62hC1SG1x2v800000001sg000000005s4d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1752,12 +1753,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A57Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:57.2872203Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:57.2868683Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A57Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:57.2873562Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A57Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:57.2874991Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:57.2876347Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A57Z&se=2025-02-24T23%3A06%3A57Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:57.2877758Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A18Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:18.7043423Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:18.7040285Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A18Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:18.7044691Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A18Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:18.7046108Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:18.7047565Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A18Z&se=2025-02-27T00%3A21%3A18Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:18.704893Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1767,17 +1768,17 @@ interactions: connection: - keep-alive content-length: - - '5492' + - '5497' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:57 GMT + - Wed, 26 Feb 2025 23:21:18 GMT mise-correlation-id: - - 87033dc8-9134-4569-8068-ab7800520b94 + - 5936f718-1390-43a4-8cf9-149306bae8c2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220657Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000011c8 + - 20250226T232118Z-167c755789dw9d62hC1SG1x2v800000001sg000000005sm0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1795,12 +1796,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A02Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:02.5403249Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:02.5400436Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A02Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:02.5404171Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:02.5405058Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:02.5405921Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A02Z&se=2025-02-24T23%3A07%3A02Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:02.540678Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A23Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:23.9666736Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:23.9613144Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A23Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:23.9667764Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:23.9668733Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:23.9669675Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A23Z&se=2025-02-27T00%3A21%3A23Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:23.9670753Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1810,17 +1811,17 @@ interactions: connection: - keep-alive content-length: - - '5483' + - '5480' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:02 GMT + - Wed, 26 Feb 2025 23:21:24 GMT mise-correlation-id: - - 2e74737e-1098-48e6-8a8f-7659176922ea + - aac91ba2-c268-4e94-b9a5-41dc2f192090 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220702Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000011pw + - 20250226T232123Z-167c755789dw9d62hC1SG1x2v800000001sg000000005swz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1838,12 +1839,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A07Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:07.7953343Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:07.7948841Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A07Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:07.7955442Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A07Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:07.7957012Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:07.7959489Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A07Z&se=2025-02-24T23%3A07%3A07Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:07.796182Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A29Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:29.2184353Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:29.2180905Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A29Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:29.221469Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A29Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:29.2216194Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:29.2217318Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A29Z&se=2025-02-27T00%3A21%3A29Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:29.2219094Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1853,17 +1854,17 @@ interactions: connection: - keep-alive content-length: - - '5483' + - '5493' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:07 GMT + - Wed, 26 Feb 2025 23:21:29 GMT mise-correlation-id: - - 5d964656-3fb6-45d8-ba7f-379f5c93fbd2 + - 701e3328-0e9c-4143-a8cc-9395f2b747d6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220707Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000011ws + - 20250226T232129Z-167c755789dw9d62hC1SG1x2v800000001sg000000005t8m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1881,12 +1882,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A13Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:13.0510837Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:13.0506442Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A13Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:13.0512701Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:13.0514529Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:13.0516389Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A13Z&se=2025-02-24T23%3A07%3A13Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:13.0518323Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A34Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:34.4744136Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:34.4741748Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A34Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:34.4744744Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A34Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:34.4745337Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:34.4745906Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A34Z&se=2025-02-27T00%3A21%3A34Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:34.4746493Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1896,17 +1897,17 @@ interactions: connection: - keep-alive content-length: - - '5498' + - '5494' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:13 GMT + - Wed, 26 Feb 2025 23:21:34 GMT mise-correlation-id: - - 4c17601b-b8c8-4160-a6d2-c019486fad18 + - 52aaaece-50cf-4fa1-8422-34b8f0778295 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220712Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000001260 + - 20250226T232134Z-167c755789dw9d62hC1SG1x2v800000001sg000000005trz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1924,12 +1925,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A18Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:18.3095679Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:18.3091624Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A18Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:18.3096756Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A18Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:18.3097771Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:18.3098718Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A18Z&se=2025-02-24T23%3A07%3A18Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:18.3099684Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A39Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:39.7284073Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:39.7279627Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A39Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:39.7285075Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A39Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:39.7286052Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:39.7287023Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A39Z&se=2025-02-27T00%3A21%3A39Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:39.7287976Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1939,17 +1940,17 @@ interactions: connection: - keep-alive content-length: - - '5496' + - '5502' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:18 GMT + - Wed, 26 Feb 2025 23:21:39 GMT mise-correlation-id: - - b00b6e33-cdcc-42b6-aee0-42b12b449e8d + - 2111828d-e1e8-4e51-8757-ce28f7f9990e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220718Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000012fr + - 20250226T232139Z-167c755789dw9d62hC1SG1x2v800000001sg000000005u4z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1967,12 +1968,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A23Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:23.5641519Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:23.5636617Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A23Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:23.5642452Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:23.56434Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:23.564429Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A23Z&se=2025-02-24T23%3A07%3A23Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:23.564525Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A44Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:44.9811776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:44.9807293Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A44Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:44.9813167Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A44Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:44.9814694Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:44.9816071Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A44Z&se=2025-02-27T00%3A21%3A44Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:44.9817473Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1982,17 +1983,17 @@ interactions: connection: - keep-alive content-length: - - '5478' + - '5494' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:23 GMT + - Wed, 26 Feb 2025 23:21:45 GMT mise-correlation-id: - - edaaa492-d2c8-40d9-aff5-e43423f2cd50 + - 71697afe-5b31-4ef5-81db-dbb39747cbfb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220723Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000012sn + - 20250226T232144Z-167c755789dw9d62hC1SG1x2v800000001sg000000005ugh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2010,12 +2011,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A28Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:28.8144282Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:28.8140519Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A28Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:28.8146236Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:28.8147473Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:28.8148682Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A28Z&se=2025-02-24T23%3A07%3A28Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:28.8150067Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A50Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:50.2741761Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:50.2736035Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A50Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:50.2743364Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A50Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:50.2745533Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:50.2747229Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A50Z&se=2025-02-27T00%3A21%3A50Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:50.274947Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2025,17 +2026,17 @@ interactions: connection: - keep-alive content-length: - - '5494' + - '5485' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:28 GMT + - Wed, 26 Feb 2025 23:21:50 GMT mise-correlation-id: - - e1f55446-ffae-4235-8f06-499d30bbf7a5 + - 6a5d93a4-2ba4-4adb-b44b-7444c7d9f277 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220728Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000012zv + - 20250226T232150Z-167c755789dw9d62hC1SG1x2v800000001sg000000005uvv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2053,12 +2054,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A34Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:34.0660414Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:34.0656155Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A34Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:34.0661839Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A34Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:34.0663282Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:34.066461Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A34Z&se=2025-02-24T23%3A07%3A34Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:34.0666008Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A55Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:55.5234216Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:21:55.5231409Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A55Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:55.5235171Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:21:55.523613Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A21%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:21:55.52371Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A21%3A55Z&se=2025-02-27T00%3A21%3A55Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:21:55.5238033Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2068,17 +2069,17 @@ interactions: connection: - keep-alive content-length: - - '5485' + - '5481' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:34 GMT + - Wed, 26 Feb 2025 23:21:55 GMT mise-correlation-id: - - 248a9d67-085d-4ca3-aea2-2de90a8a963a + - b4445bba-c1d7-464f-8301-3c6a84aed35d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220733Z-r17775d4f98t9jlfhC1SG10apg00000008ag00000000137v + - 20250226T232155Z-167c755789dw9d62hC1SG1x2v800000001sg000000005v6h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2096,12 +2097,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A39Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:39.3213676Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:39.3209027Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A39Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:39.3215931Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A39Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:39.321842Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:39.322012Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A39Z&se=2025-02-24T23%3A07%3A39Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:39.3221211Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A01Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:01.9448323Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:01.9445926Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A01Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:01.9448996Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:01.9449622Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:01.9450238Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A01Z&se=2025-02-27T00%3A22%3A01Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:01.9450871Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2115,13 +2116,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:39 GMT + - Wed, 26 Feb 2025 23:22:02 GMT mise-correlation-id: - - 4dfd21ef-0abf-491e-ada6-2258814320e1 + - 57875f8e-d48e-4434-8ac6-be9bc3fea4e9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220739Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000013g1 + - 20250226T232200Z-167c755789dw9d62hC1SG1x2v800000001sg000000005vk6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2139,12 +2140,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A44Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:44.5855915Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:44.5853112Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A44Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:44.5856546Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A44Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:44.5857145Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:44.5857737Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A44Z&se=2025-02-24T23%3A07%3A44Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:44.5858589Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A07Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:07.2194098Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:07.219119Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A07Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:07.2195481Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A07Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:07.2196644Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:07.2197441Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A07Z&se=2025-02-27T00%3A22%3A07Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:07.2198371Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2154,17 +2155,17 @@ interactions: connection: - keep-alive content-length: - - '5490' + - '5497' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:44 GMT + - Wed, 26 Feb 2025 23:22:07 GMT mise-correlation-id: - - 4b442210-1d03-482d-9839-b7c6510b670b + - 18472bab-4309-43b7-8491-fa568a5a2ade strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220744Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000013qy + - 20250226T232207Z-167c755789dw9d62hC1SG1x2v800000001sg000000005w2r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2182,12 +2183,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A49Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:49.8395988Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:49.8391138Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A49Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:49.8397638Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:49.8398866Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:49.8400765Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A49Z&se=2025-02-24T23%3A07%3A49Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:49.8401995Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A12Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:12.4794378Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:12.4790333Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A12Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:12.4795846Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A12Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:12.4797201Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:12.4798188Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A12Z&se=2025-02-27T00%3A22%3A12Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:12.480141Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2197,17 +2198,17 @@ interactions: connection: - keep-alive content-length: - - '5480' + - '5479' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:49 GMT + - Wed, 26 Feb 2025 23:22:12 GMT mise-correlation-id: - - 8d9f0571-8b05-44b1-8663-bb8eca05e4a0 + - 612be282-75cc-4f10-9458-e887be8b7c9f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220749Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000013x0 + - 20250226T232212Z-167c755789dw9d62hC1SG1x2v800000001sg000000005wm2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2225,12 +2226,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A55Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:55.0939324Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:55.0935257Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A55Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:55.0940544Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:55.0941907Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:55.0943271Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A55Z&se=2025-02-24T23%3A07%3A55Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:55.0944596Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A17Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:17.7508593Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:17.7505194Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A17Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:17.7509943Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A17Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:17.7511305Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:17.7512601Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A17Z&se=2025-02-27T00%3A22%3A17Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:17.7513934Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2240,17 +2241,17 @@ interactions: connection: - keep-alive content-length: - - '5486' + - '5484' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:55 GMT + - Wed, 26 Feb 2025 23:22:17 GMT mise-correlation-id: - - d27466ab-3bcd-4e3a-80c5-7f388d0f4daa + - e9385d30-2628-4b8f-8ff5-67141fe81a40 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220754Z-r17775d4f98t9jlfhC1SG10apg00000008ag00000000142u + - 20250226T232217Z-167c755789dw9d62hC1SG1x2v800000001sg000000005wzc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2268,12 +2269,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A00Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:00.3450306Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:00.3447564Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A00Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:00.3451033Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:00.3451688Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:00.3452304Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A00Z&se=2025-02-24T23%3A08%3A00Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:00.3452927Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A23Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:23.1557338Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:23.1555241Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A23Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:23.1558243Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:23.1559142Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:23.1560014Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A23Z&se=2025-02-27T00%3A22%3A23Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:23.1560884Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2283,17 +2284,17 @@ interactions: connection: - keep-alive content-length: - - '5486' + - '5480' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:00 GMT + - Wed, 26 Feb 2025 23:22:23 GMT mise-correlation-id: - - 0ae98a97-4a21-4894-a64a-08bfec75af06 + - d22ef6c9-77e8-4b61-ba38-94bd4287778f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220800Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000014c8 + - 20250226T232222Z-167c755789dw9d62hC1SG1x2v800000001sg000000005xd6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2311,12 +2312,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A05Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:05.6061704Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:05.6054302Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A05Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:05.6064956Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:05.6068349Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:05.6071038Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A05Z&se=2025-02-24T23%3A08%3A05Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:05.6073248Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A28Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:28.4094398Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:28.4091489Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A28Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:28.4095079Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:28.409572Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:28.4096338Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A28Z&se=2025-02-27T00%3A22%3A28Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:28.4217405Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2326,17 +2327,17 @@ interactions: connection: - keep-alive content-length: - - '5482' + - '5493' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:05 GMT + - Wed, 26 Feb 2025 23:22:28 GMT mise-correlation-id: - - 9509d24a-d1ba-41e2-9b4c-1f7780125fe2 + - 43f113d1-55ac-4156-96f6-338445ab639d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220805Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000014nw + - 20250226T232228Z-167c755789dw9d62hC1SG1x2v800000001sg000000005xtm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2354,12 +2355,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A10Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:10.873258Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:10.8730234Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A10Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:10.8733483Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:10.8734375Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:10.8735202Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A10Z&se=2025-02-24T23%3A08%3A10Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:10.8736181Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A33Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:33.7561509Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:33.7556042Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A33Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:33.7563175Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A33Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:33.7564859Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:33.7566512Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A33Z&se=2025-02-27T00%3A22%3A33Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:33.7568199Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2369,17 +2370,17 @@ interactions: connection: - keep-alive content-length: - - '5487' + - '5490' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:10 GMT + - Wed, 26 Feb 2025 23:22:33 GMT mise-correlation-id: - - 4a07c178-000f-4c36-96ab-91efe8d9b0e1 + - ff4cad71-ac38-4287-9715-5604e8a3f1d1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220810Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000014we + - 20250226T232233Z-167c755789dw9d62hC1SG1x2v800000001sg000000005y5n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2397,12 +2398,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A16Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:16.125491Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:16.1249993Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A16Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:16.1256536Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:16.1258366Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:16.1260025Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A16Z&se=2025-02-24T23%3A08%3A16Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:16.1261675Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A39Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:39.0119075Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:39.0114883Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A39Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:39.0120825Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A39Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:39.0122843Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:39.0124562Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A39Z&se=2025-02-27T00%3A22%3A39Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:39.0126623Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2412,17 +2413,17 @@ interactions: connection: - keep-alive content-length: - - '5489' + - '5482' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:16 GMT + - Wed, 26 Feb 2025 23:22:39 GMT mise-correlation-id: - - 8adee08b-4679-45f6-a39e-94eebc762e84 + - d983dd91-b206-4219-a78d-530e5a3c4570 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220815Z-r17775d4f98t9jlfhC1SG10apg00000008ag00000000152g + - 20250226T232238Z-167c755789dw9d62hC1SG1x2v800000001sg000000005ykq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2440,12 +2441,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A22Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:22.2503527Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:22.2498468Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A22Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:22.2505212Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A22Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:22.2506931Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:22.2508639Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A22Z&se=2025-02-24T23%3A08%3A22Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:22.2510419Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A44Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:44.2665749Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:44.266187Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A44Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:44.2666962Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A44Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:44.2668148Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:44.2669332Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A44Z&se=2025-02-27T00%3A22%3A44Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:44.2670529Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2455,17 +2456,17 @@ interactions: connection: - keep-alive content-length: - - '5488' + - '5481' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:22 GMT + - Wed, 26 Feb 2025 23:22:44 GMT mise-correlation-id: - - aa12a3de-cd9b-4f17-9b2c-6431ead673b7 + - f1412788-d144-4516-a050-5ec9c17e352b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220821Z-r17775d4f98t9jlfhC1SG10apg00000008ag00000000159s + - 20250226T232244Z-167c755789dw9d62hC1SG1x2v800000001sg000000005yy1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2483,12 +2484,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A27Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:27.5054506Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:27.5049712Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A27Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:27.5056569Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A27Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:27.5058498Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:27.5060518Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A27Z&se=2025-02-24T23%3A08%3A27Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:27.5062462Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A49Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:49.5160978Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:49.5157333Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A49Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:49.5161965Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:49.5162827Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:49.5163655Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A49Z&se=2025-02-27T00%3A22%3A49Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:49.5164482Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2502,13 +2503,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:27 GMT + - Wed, 26 Feb 2025 23:22:49 GMT mise-correlation-id: - - 66abb881-23b7-4456-b551-fdf42a19c391 + - 9d136d9a-abd9-419a-b083-cb77c6e945e3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220827Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000015vv + - 20250226T232249Z-167c755789dw9d62hC1SG1x2v800000001sg000000005z9x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2526,12 +2527,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A32Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:32.7567536Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:32.7563977Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A32Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:32.7569104Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A32Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:32.7571142Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:32.7572817Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A32Z&se=2025-02-24T23%3A08%3A32Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:32.7574141Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A54Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:54.7705516Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:22:54.770153Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A54Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:54.77084Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A54Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:22:54.7711254Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A22%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:22:54.771253Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A22%3A54Z&se=2025-02-27T00%3A22%3A54Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:22:54.7714548Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2541,17 +2542,17 @@ interactions: connection: - keep-alive content-length: - - '5482' + - '5480' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:32 GMT + - Wed, 26 Feb 2025 23:22:54 GMT mise-correlation-id: - - e48c6d86-9267-4935-bca3-16a23d1053fe + - 748959bf-4800-423d-ab9d-ce0800dd6c19 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220832Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000001640 + - 20250226T232254Z-167c755789dw9d62hC1SG1x2v800000001sg000000005zs4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2569,12 +2570,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A38Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:38.0127548Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:38.0121919Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A38Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:38.0129971Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A38Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:38.0131756Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:38.0133627Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A38Z&se=2025-02-24T23%3A08%3A38Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:38.0135476Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A00Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:00.0237242Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:23:00.0234336Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A00Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:00.0237954Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:00.0238635Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:23:00.0239302Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A23%3A00Z&se=2025-02-27T00%3A23%3A00Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:23:00.0239955Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2588,13 +2589,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:38 GMT + - Wed, 26 Feb 2025 23:23:00 GMT mise-correlation-id: - - 675ce2f4-1499-4b3f-b516-a33fc52ba3f3 + - 4e8ce700-86a9-42f8-8a62-c9d47b6d0bfe strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220837Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000016av + - 20250226T232259Z-167c755789dw9d62hC1SG1x2v800000001sg000000006062 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2612,12 +2613,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A43Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:43.2694989Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:43.2688638Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A43Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:43.2697578Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A43Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:43.2700213Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:43.2702757Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A43Z&se=2025-02-24T23%3A08%3A43Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:43.2705393Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A05Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:05.284929Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:23:05.2844911Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A05Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:05.2851099Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:05.2853017Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:23:05.2854836Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A23%3A05Z&se=2025-02-27T00%3A23%3A05Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:23:05.2856775Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2627,17 +2628,17 @@ interactions: connection: - keep-alive content-length: - - '5482' + - '5491' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:43 GMT + - Wed, 26 Feb 2025 23:23:05 GMT mise-correlation-id: - - b8680409-ae2e-4a9b-92f8-17c5b2e4f8f4 + - 50843daf-e7d2-4dd0-bd8c-85ed517fbdcb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220843Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000016q3 + - 20250226T232305Z-167c755789dw9d62hC1SG1x2v800000001sg0000000060hn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2655,12 +2656,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A48Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:48.5258047Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:48.5247201Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A48Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:48.5260872Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A48Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:48.526364Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:48.5264902Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A48Z&se=2025-02-24T23%3A08%3A48Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:48.5267611Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A10Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:10.538931Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:23:10.538477Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A10Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:10.5390723Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:10.5392442Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:23:10.5394095Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A23%3A10Z&se=2025-02-27T00%3A23%3A10Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:23:10.5395552Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2670,17 +2671,17 @@ interactions: connection: - keep-alive content-length: - - '5485' + - '5484' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:48 GMT + - Wed, 26 Feb 2025 23:23:10 GMT mise-correlation-id: - - c9cc8d5d-3a04-428c-98ed-98d8d93176db + - 0116c59e-57b3-4336-bf33-be0aa3124b1d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220848Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000016y8 + - 20250226T232310Z-167c755789dw9d62hC1SG1x2v800000001sg000000006182 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2698,12 +2699,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A53Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:53.7941963Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:53.7932509Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A53Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:53.794412Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A53Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:53.7946229Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:53.7948387Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A53Z&se=2025-02-24T23%3A08%3A53Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:53.7950505Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A15Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:15.8241966Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:23:15.8237424Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A15Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:15.8243489Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:15.8245035Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:23:15.8246259Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A23%3A15Z&se=2025-02-27T00%3A23%3A15Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:23:15.824808Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2713,17 +2714,17 @@ interactions: connection: - keep-alive content-length: - - '5493' + - '5491' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:53 GMT + - Wed, 26 Feb 2025 23:23:15 GMT mise-correlation-id: - - 6e9e2fea-3add-4959-aef1-0f4150233fcc + - 333ab62f-9d93-47ef-96e1-78c58518f636 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220853Z-r17775d4f98t9jlfhC1SG10apg00000008ag00000000176k + - 20250226T232315Z-167c755789dw9d62hC1SG1x2v800000001sg0000000061r9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2741,12 +2742,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A59Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:59.0548018Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:59.0545121Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A59Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:59.0548826Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A59Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:59.0550169Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:59.0551018Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A59Z&se=2025-02-24T23%3A08%3A59Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:59.0551827Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A21Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:21.0778671Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:23:21.0758576Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A21Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:21.078106Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A21Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:21.0783804Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:23:21.078674Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A23%3A21Z&se=2025-02-27T00%3A23%3A21Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:23:21.0791304Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2760,13 +2761,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:59 GMT + - Wed, 26 Feb 2025 23:23:21 GMT mise-correlation-id: - - cacb0299-635d-49f9-b600-24b6c2d00cb0 + - 86fac464-2957-420c-b5ba-7456bc07592a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220858Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000017d8 + - 20250226T232320Z-167c755789dw9d62hC1SG1x2v800000001sg00000000621y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2784,12 +2785,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A04Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:04.3171618Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:04.3165621Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A04Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:04.3173859Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A04Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:04.3175995Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:04.3178414Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A04Z&se=2025-02-24T23%3A09%3A04Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:04.3180813Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A26Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:26.3318106Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:23:26.3315335Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A26Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:26.3319109Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A26Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:26.3320098Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:23:26.3321046Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A23%3A26Z&se=2025-02-27T00%3A23%3A26Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:23:26.3322Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2799,17 +2800,17 @@ interactions: connection: - keep-alive content-length: - - '5490' + - '5477' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:04 GMT + - Wed, 26 Feb 2025 23:23:26 GMT mise-correlation-id: - - 65a07961-712f-4a4a-ade7-676f054b55c0 + - 4932585c-9edd-47a0-8157-4e5dc9abdfda strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220904Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000017ms + - 20250226T232326Z-167c755789dw9d62hC1SG1x2v800000001sg0000000062dt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2827,12 +2828,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A09Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:09.5713522Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:09.5709272Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A09Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:09.5715205Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A09Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:09.5716917Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:09.5718583Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A09Z&se=2025-02-24T23%3A09%3A09Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:09.5720264Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A31Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:31.5835377Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:23:31.583154Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A31Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:31.5836875Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:31.583849Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:23:31.5839858Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A23%3A31Z&se=2025-02-27T00%3A23%3A31Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:23:31.584119Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2842,17 +2843,17 @@ interactions: connection: - keep-alive content-length: - - '5496' + - '5477' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:09 GMT + - Wed, 26 Feb 2025 23:23:31 GMT mise-correlation-id: - - aea9c6e6-a278-43dd-b26a-99eea92f7a53 + - c57e9160-6ee1-450a-852b-50ca9de58d4c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220909Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000017ud + - 20250226T232331Z-167c755789dw9d62hC1SG1x2v800000001sg0000000062t8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2870,12 +2871,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A14Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:14.8232654Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:14.8229179Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A14Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:14.8234029Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A14Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:14.8235491Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:14.8236896Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A14Z&se=2025-02-24T23%3A09%3A14Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:14.8238276Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A36Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:36.8381833Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:23:36.837828Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A36Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:36.8383105Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A36Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:36.8384508Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:23:36.8386115Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A23%3A36Z&se=2025-02-27T00%3A23%3A36Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:23:36.838734Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2885,17 +2886,17 @@ interactions: connection: - keep-alive content-length: - - '5482' + - '5490' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:14 GMT + - Wed, 26 Feb 2025 23:23:36 GMT mise-correlation-id: - - fd2ae0f9-d380-40cf-9696-c066dc4a1aa5 + - 1b8a315e-feeb-44d5-bb67-c0ee9dae6471 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220914Z-r17775d4f98t9jlfhC1SG10apg00000008ag00000000181g + - 20250226T232336Z-167c755789dw9d62hC1SG1x2v800000001sg00000000636e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2913,12 +2914,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A20Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:20.0751746Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:20.0745477Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A20Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:20.0753Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A20Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:20.0756798Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:20.0757733Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A20Z&se=2025-02-24T23%3A09%3A20Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:20.0758665Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A42Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:42.0898844Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:23:42.0894783Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A42Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:42.0900545Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A42Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:42.0902262Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:23:42.0903994Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A23%3A42Z&se=2025-02-27T00%3A23%3A42Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:23:42.0905758Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2928,17 +2929,17 @@ interactions: connection: - keep-alive content-length: - - '5477' + - '5488' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:20 GMT + - Wed, 26 Feb 2025 23:23:42 GMT mise-correlation-id: - - c9eb6732-0f8b-4eef-a08f-a1c64eb5c3c5 + - 8bfc3fd0-66e5-4d63-908f-4d0e787baf68 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220919Z-r17775d4f98t9jlfhC1SG10apg00000008ag00000000188m + - 20250226T232341Z-167c755789dw9d62hC1SG1x2v800000001sg0000000063gt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2956,12 +2957,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A25Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:25.3323261Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:25.3319635Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A25Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:25.3324717Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A25Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:25.3326122Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:25.3327499Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A25Z&se=2025-02-24T23%3A09%3A25Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:25.332887Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A48Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:48.0562438Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:23:48.0559463Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A48Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:48.056388Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A48Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:48.0565159Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:23:48.0566622Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A23%3A48Z&se=2025-02-27T00%3A23%3A48Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:23:48.0568042Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2971,17 +2972,17 @@ interactions: connection: - keep-alive content-length: - - '5485' + - '5493' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:25 GMT + - Wed, 26 Feb 2025 23:23:48 GMT mise-correlation-id: - - 4bb2538f-8714-4a6b-8a29-03a9725356bb + - e989a1c9-4eb8-4c48-86a2-6a27cfec5108 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220925Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000018eh + - 20250226T232347Z-167c755789dw9d62hC1SG1x2v800000001sg0000000063un x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2999,12 +3000,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A30Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:30.5880141Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:30.5877157Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A30Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:30.5881047Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A30Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:30.5881932Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:30.5883061Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A30Z&se=2025-02-24T23%3A09%3A30Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:30.5884014Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A53Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:53.3102815Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:23:53.3098923Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A53Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:53.310422Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A53Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:53.3105601Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:23:53.3106807Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A23%3A53Z&se=2025-02-27T00%3A23%3A53Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:23:53.3108289Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3014,17 +3015,17 @@ interactions: connection: - keep-alive content-length: - - '5492' + - '5485' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:30 GMT + - Wed, 26 Feb 2025 23:23:53 GMT mise-correlation-id: - - 7e3ca1bf-632b-4790-88fe-85bd02c95449 + - e63c6e46-cad2-4cf6-9167-236c31ac00f7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220930Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000018qs + - 20250226T232353Z-167c755789dw9d62hC1SG1x2v800000001sg00000000644y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3042,12 +3043,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A35Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:35.8440113Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:35.8437199Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A35Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:35.8441044Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A35Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:35.844198Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:35.8442848Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A35Z&se=2025-02-24T23%3A09%3A35Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:35.844382Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A58Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:58.6485028Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:23:58.6482354Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A58Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:58.6485658Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A58Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:23:58.6486418Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A23%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:23:58.6487118Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A23%3A58Z&se=2025-02-27T00%3A23%3A58Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:23:58.6487754Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3057,17 +3058,17 @@ interactions: connection: - keep-alive content-length: - - '5494' + - '5484' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:35 GMT + - Wed, 26 Feb 2025 23:23:58 GMT mise-correlation-id: - - fce8963f-f286-42f0-9278-dfba9ec1602d + - 7a7063c6-bc2c-4960-9858-c163aca35fb4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220935Z-r17775d4f98t9jlfhC1SG10apg00000008ag0000000018xb + - 20250226T232358Z-167c755789dw9d62hC1SG1x2v800000001sg0000000064eq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3085,12 +3086,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A41Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:41.0987723Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:41.0984418Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A41Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:41.0988598Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:41.0989521Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:41.0990427Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A41Z&se=2025-02-24T23%3A09%3A41Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:41.0991414Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A03Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:03.9065877Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:24:03.9062311Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A03Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:03.9066871Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A03Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:03.9067829Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:24:03.9068811Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A24%3A03Z&se=2025-02-27T00%3A24%3A03Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:24:03.9069782Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3104,13 +3105,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:41 GMT + - Wed, 26 Feb 2025 23:24:04 GMT mise-correlation-id: - - cfb1b6a3-bcf0-4a6e-95b0-be765061c636 + - 797cd568-6348-4ceb-a6f4-3bf18142baf6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220940Z-r17775d4f98t9jlfhC1SG10apg00000008ag00000000194t + - 20250226T232403Z-167c755789dw9d62hC1SG1x2v800000001sg0000000064ue x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3128,12 +3129,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A46Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:46.3572355Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:46.3569914Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A46Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:46.3573005Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A46Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:46.3573638Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:46.3574248Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A46Z&se=2025-02-24T23%3A09%3A46Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:46.3574858Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A09Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:09.6316553Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:24:09.6312242Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A09Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:09.6318244Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A09Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:09.631994Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:24:09.6321602Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A24%3A09Z&se=2025-02-27T00%3A24%3A09Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:24:09.6323285Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3143,60 +3144,17 @@ interactions: connection: - keep-alive content-length: - - '5494' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 22:09:46 GMT - mise-correlation-id: - - 5d43d16c-da4e-4262-99d8-751dcb1b6ab8 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T220946Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000012a0 - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview - response: - body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A51Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:51.6060884Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:51.605814Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A51Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:51.6061781Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A51Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:51.6062656Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:51.6063531Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A51Z&se=2025-02-24T23%3A09%3A51Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:51.6064389Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '5487' + - '5493' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:51 GMT + - Wed, 26 Feb 2025 23:24:09 GMT mise-correlation-id: - - ccf767a2-b747-494e-9ea8-59b97321b929 + - 0ec92543-3719-4539-9517-dff2c3725ebf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220951Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000012qf + - 20250226T232409Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000ews7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3214,12 +3172,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A56Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:56.8585827Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:56.8578904Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A56Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:56.858666Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A56Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:56.8587507Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:56.8588344Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A56Z&se=2025-02-24T23%3A09%3A56Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:56.8589166Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A14Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:14.8824697Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:24:14.8821852Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A14Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:14.8825615Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A14Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:14.8826576Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:24:14.8827446Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A24%3A14Z&se=2025-02-27T00%3A24%3A14Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:24:14.8828327Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3229,17 +3187,17 @@ interactions: connection: - keep-alive content-length: - - '5483' + - '5484' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:56 GMT + - Wed, 26 Feb 2025 23:24:14 GMT mise-correlation-id: - - 0f0105b0-1ca9-4b8a-9a0a-fde794a4f4e1 + - 057cd441-b9a2-4262-b38e-41dbe5e7d719 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220956Z-r17775d4f98kr5knhC1SG1nvrw00000007xg00000000131u + - 20250226T232414Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000ex9c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3257,12 +3215,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A02Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:02.1232446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:10:02.122881Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A02Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:02.1233326Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:02.1234201Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:10:02.1235064Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A10%3A02Z&se=2025-02-24T23%3A10%3A02Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:10:02.1235904Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A20Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:20.1388832Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:24:20.1381887Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A20Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:20.1390368Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A20Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:20.1391969Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:24:20.139358Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A24%3A20Z&se=2025-02-27T00%3A24%3A20Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:24:20.1395237Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3276,13 +3234,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:02 GMT + - Wed, 26 Feb 2025 23:24:20 GMT mise-correlation-id: - - a57d5661-1368-4258-bee4-7f5161f06bc6 + - 2a59efbb-4b59-4f3d-9c53-3494de9d0f75 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221001Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000013da + - 20250226T232420Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000exvf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3300,12 +3258,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A07Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:07.3877153Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:10:07.38727Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A07Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:07.3878974Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A07Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:07.3880802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:10:07.3882568Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A10%3A07Z&se=2025-02-24T23%3A10%3A07Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:10:07.3884398Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A25Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:25.4063001Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:24:25.4046036Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A25Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:25.4064248Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A25Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:25.4084172Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:24:25.4085469Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A24%3A25Z&se=2025-02-27T00%3A24%3A25Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:24:25.4088485Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3315,17 +3273,17 @@ interactions: connection: - keep-alive content-length: - - '5492' + - '5494' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:07 GMT + - Wed, 26 Feb 2025 23:24:25 GMT mise-correlation-id: - - 913851dd-dcad-4953-80fc-e42da7aca6a6 + - ca1170f3-612c-4d1a-81ab-365b0169cbba strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221007Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000013tu + - 20250226T232425Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000eybt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3343,12 +3301,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A12Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:12.6444028Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:10:12.6439848Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A12Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:12.6445564Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A12Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:12.6446893Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:10:12.6448242Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A42Z&ske=2025-02-26T07%3A05%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A10%3A12Z&se=2025-02-24T23%3A10%3A12Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:10:12.6449704Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A30Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:30.669858Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:24:30.6695287Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A30Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:30.6699906Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A30Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:30.6701322Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:24:30.6702636Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A24%3A30Z&se=2025-02-27T00%3A24%3A30Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:24:30.6703966Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3358,17 +3316,17 @@ interactions: connection: - keep-alive content-length: - - '5502' + - '5489' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:12 GMT + - Wed, 26 Feb 2025 23:24:30 GMT mise-correlation-id: - - df3b122c-75d2-4c30-a70d-78f88333797d + - eae764df-74fe-4466-b851-670bde128229 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221012Z-r17775d4f98kr5knhC1SG1nvrw00000007xg00000000141k + - 20250226T232430Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000eyw7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3386,12 +3344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A17Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:17.9365015Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:10:17.9362678Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A17Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:17.9365668Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A17Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:17.9366294Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:10:17.936691Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A56Z&ske=2025-02-25T05%3A04%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A10%3A17Z&se=2025-02-24T23%3A10%3A17Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:10:17.9367519Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A35Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:35.9427625Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:24:35.9419807Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A35Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:35.9430574Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A35Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:35.9434123Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:24:35.9437317Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A24%3A35Z&se=2025-02-27T00%3A24%3A35Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:24:35.9439521Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3401,17 +3359,17 @@ interactions: connection: - keep-alive content-length: - - '5489' + - '5488' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:18 GMT + - Wed, 26 Feb 2025 23:24:36 GMT mise-correlation-id: - - c0db96b0-837e-4cf5-aa4d-2737d1a09190 + - 885b9c09-5b4a-4430-b107-1bc5c950b7b1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221017Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000014az + - 20250226T232435Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000ezcf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3429,12 +3387,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A23Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:23.195231Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:10:23.1948205Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A23Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:23.1954035Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:23.1955683Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:10:23.1957331Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A10%3A23Z&se=2025-02-24T23%3A10%3A23Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:10:23.1959Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A41Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:41.3269215Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:24:41.3267249Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A41Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:41.3270024Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:41.3270971Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:24:41.3271834Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A24%3A41Z&se=2025-02-27T00%3A24%3A41Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:24:41.3272666Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3444,17 +3402,17 @@ interactions: connection: - keep-alive content-length: - - '5490' + - '5480' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:23 GMT + - Wed, 26 Feb 2025 23:24:41 GMT mise-correlation-id: - - abd71ed7-e68f-417e-a5e6-a45857887ec9 + - b14fef47-dc41-40d0-8a26-bb2c35b2c556 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221023Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000014mf + - 20250226T232441Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000ezwf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3472,12 +3430,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A28Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:28.4463862Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:10:28.4457075Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A28Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:28.4512814Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:28.4517471Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:10:28.4518814Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A10%3A28Z&se=2025-02-24T23%3A10%3A28Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:10:28.4522522Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A46Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:46.5835104Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:24:46.5828238Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A46Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:46.5837594Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A46Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:46.5840096Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:24:46.5842961Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A24%3A46Z&se=2025-02-27T00%3A24%3A46Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:24:46.5845463Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3487,17 +3445,17 @@ interactions: connection: - keep-alive content-length: - - '5482' + - '5490' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:28 GMT + - Wed, 26 Feb 2025 23:24:46 GMT mise-correlation-id: - - d8f6d659-19f9-4d9e-98e0-b7afc02e3251 + - cd7ea678-9558-4a59-8110-2ed0de01da07 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221028Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000014wh + - 20250226T232446Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000f0gf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3515,12 +3473,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A33Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:33.7008442Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:10:33.7004388Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A33Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:33.7010062Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A33Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:33.7011093Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:10:33.7012086Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A09Z&ske=2025-02-25T05%3A06%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A10%3A33Z&se=2025-02-24T23%3A10%3A33Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:10:33.7013037Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:42.485Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:43.664Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A51Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:51.8369774Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:24:51.8366412Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A51Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:51.8370769Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A51Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:51.8371735Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:24:51.8374557Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A24%3A51Z&se=2025-02-27T00%3A24%3A51Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:24:51.8377009Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:20:04.442Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:21:03.689Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3530,17 +3488,17 @@ interactions: connection: - keep-alive content-length: - - '5486' + - '5488' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:33 GMT + - Wed, 26 Feb 2025 23:24:51 GMT mise-correlation-id: - - 5bbfd91b-1f23-4405-803f-a95e40d0ac37 + - 934225d0-7a03-4647-8526-217049aa034b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221033Z-r17775d4f98kr5knhC1SG1nvrw00000007xg00000000158g + - 20250226T232451Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000f0zs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3558,12 +3516,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A38Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:38.9467892Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:10:38.9464379Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A38Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:38.9469162Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A38Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:38.9470511Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:10:38.9471878Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A38Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:38.9473174Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A38Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:38.9474636Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A10%3A38Z&se=2025-02-24T23%3A10%3A38Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:10:38.9476146Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2025-02-24T22:05:42.485Z","endDateTime":"2025-02-24T22:10:34.7Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:10:38.87Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A57Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:57.0991237Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:24:57.0986712Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A57Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:57.0992947Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A57Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:57.0994707Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:24:57.0996374Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/657ac081-aff8-463d-bc4d-45f13209dcd8_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A57Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:57.0998134Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/657ac081-aff8-463d-bc4d-45f13209dcd8_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A57Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:57.099986Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A40Z&ske=2025-02-27T06%3A19%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A24%3A57Z&se=2025-02-27T00%3A24%3A57Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:24:57.1001536Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2025-02-26T23:20:04.442Z","endDateTime":"2025-02-26T23:24:51.973Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:24:55.901Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3573,17 +3531,17 @@ interactions: connection: - keep-alive content-length: - - '6699' + - '6695' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:39 GMT + - Wed, 26 Feb 2025 23:24:57 GMT mise-correlation-id: - - 784f4dc4-cd3e-4281-9f95-96e29a939c47 + - 9b755ae5-9390-4174-ac54-49640a6e47f8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221038Z-r17775d4f98kr5knhC1SG1nvrw00000007xg0000000015mk + - 20250226T232456Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000f1hh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3606,7 +3564,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:20.5081002Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:20.5081002Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:18:39.5961113Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:18:39.5961113Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3615,9 +3573,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:39 GMT + - Wed, 26 Feb 2025 23:24:58 GMT etag: - - '"4f0182ee-0000-0200-0000-67bcecfb0000"' + - '"8f01698b-0000-0200-0000-67bfa1670000"' expires: - '-1' pragma: @@ -3633,7 +3591,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B1357FCC65FA406BB11AF79EF7E31C3D Ref B: MAA201060514031 Ref C: 2025-02-24T22:10:39Z' + - 'Ref A: 4CAC4D3845F84094831820246A82DCF4 Ref B: MAA201060515031 Ref C: 2025-02-26T23:24:57Z' status: code: 200 message: OK @@ -3647,12 +3605,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-12-01-preview&testId=metric-test-case + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-12-01-preview&testId=metric-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A40Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:40.4501211Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:10:40.4498119Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A40Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:40.4502427Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A40Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:40.4503717Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:10:40.4504893Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A40Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:40.4506134Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A40Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:40.4507299Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A10%3A40Z&se=2025-02-24T23%3A10%3A40Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:10:40.4508604Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2025-02-24T22:05:42.485Z","endDateTime":"2025-02-24T22:10:34.7Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:10:38.87Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A59Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:59.0900395Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:24:59.0897675Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A59Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:59.0901326Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A59Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:59.0902237Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:24:59.0903236Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/657ac081-aff8-463d-bc4d-45f13209dcd8_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A59Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:59.0904212Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/657ac081-aff8-463d-bc4d-45f13209dcd8_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A24%3A59Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:24:59.0905134Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A24%3A59Z&se=2025-02-27T00%3A24%3A59Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:24:59.0906293Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2025-02-26T23:20:04.442Z","endDateTime":"2025-02-26T23:24:51.973Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:24:55.901Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -3662,17 +3620,17 @@ interactions: connection: - keep-alive content-length: - - '6709' + - '6720' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:40 GMT + - Wed, 26 Feb 2025 23:24:59 GMT mise-correlation-id: - - fcb662f9-76d7-4361-af8b-0870faa89111 + - 855d575a-55fd-431f-82e4-e86db43a1a88 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221040Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000004hac + - 20250226T232458Z-167c755789dbhjzdhC1SG1t7h800000001vg000000001q90 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3695,7 +3653,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:20.5081002Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:20.5081002Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:18:39.5961113Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:18:39.5961113Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3704,9 +3662,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:41 GMT + - Wed, 26 Feb 2025 23:25:00 GMT etag: - - '"4f0182ee-0000-0200-0000-67bcecfb0000"' + - '"8f01698b-0000-0200-0000-67bfa1670000"' expires: - '-1' pragma: @@ -3722,7 +3680,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 370056103DA64086A84774B3F44CC410 Ref B: MAA201060516019 Ref C: 2025-02-24T22:10:40Z' + - 'Ref A: E2A87836FAF84F3E93E1E206BB2648BD Ref B: MAA201060513027 Ref C: 2025-02-26T23:24:59Z' status: code: 200 message: OK @@ -3736,12 +3694,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A41Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:41.9887168Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:10:41.9883144Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A41Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:41.9888359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:41.9889551Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:10:41.9890746Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A41Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:41.989193Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A41Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:41.9893116Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A10%3A41Z&se=2025-02-24T23%3A10%3A41Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:10:41.989432Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2025-02-24T22:05:42.485Z","endDateTime":"2025-02-24T22:10:34.7Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:10:38.87Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A00Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:00.6918154Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:25:00.6913721Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A00Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:00.6919834Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:00.6921358Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:25:00.6922998Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/657ac081-aff8-463d-bc4d-45f13209dcd8_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A00Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:00.6924505Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/657ac081-aff8-463d-bc4d-45f13209dcd8_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A00Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:00.6926365Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A17Z&ske=2025-02-27T06%3A19%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A25%3A00Z&se=2025-02-27T00%3A25%3A00Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:25:00.6928013Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2025-02-26T23:20:04.442Z","endDateTime":"2025-02-26T23:24:51.973Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:24:55.901Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3751,17 +3709,17 @@ interactions: connection: - keep-alive content-length: - - '6697' + - '6700' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:42 GMT + - Wed, 26 Feb 2025 23:25:00 GMT mise-correlation-id: - - 98ac1d4b-3ba9-435c-be00-f8e0769afccb + - e840b169-bdad-419d-a290-d68aa99ce016 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221041Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000004hct + - 20250226T232500Z-167c755789dw9d62hC1SG1x2v800000001sg0000000069f6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3779,9 +3737,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-definitions?api-version=2024-12-01-preview&metricNamespace=LoadTestRunMetrics + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-definitions?api-version=2024-12-01-preview&metricNamespace=LoadTestRunMetrics response: body: string: '{"value":[{"dimensions":[{"description":"Request Name","name":"RequestName"},{"description":"Engine @@ -3805,13 +3763,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:42 GMT + - Wed, 26 Feb 2025 23:25:01 GMT mise-correlation-id: - - 434ccbef-625c-4c1f-a003-df2bd3e9404f + - 5e6ff8cb-2bea-4a2f-a94a-90d5b5780171 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221042Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000004hdc + - 20250226T232500Z-167c755789dw9d62hC1SG1x2v800000001sg0000000069fs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3833,12 +3791,12 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: POST - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-24T22%3A05%3A42.485Z%2F2025-02-24T22%3A10%3A34.7Z + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-26T23%3A20%3A04.442Z%2F2025-02-26T23%3A24%3A51.973Z response: body: - string: '{"value":[{"data":[{"timestamp":"2025-02-24T22:06:00.000Z","value":1.0},{"timestamp":"2025-02-24T22:07:00.000Z","value":1.0},{"timestamp":"2025-02-24T22:08:00.000Z","value":1.0}]}]}' + string: '{"value":[{"data":[{"timestamp":"2025-02-26T23:21:00.000Z","value":1.0},{"timestamp":"2025-02-26T23:22:00.000Z","value":1.0}]}]}' headers: accept-ranges: - bytes @@ -3848,17 +3806,17 @@ interactions: connection: - keep-alive content-length: - - '181' + - '128' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:42 GMT + - Wed, 26 Feb 2025 23:25:01 GMT mise-correlation-id: - - 837f8898-93bb-4c5a-874a-8c44d5cacd95 + - e1cbbf04-de21-450f-9c74-6a3358cae4ef strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221042Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000004hdt + - 20250226T232501Z-167c755789dw9d62hC1SG1x2v800000001sg0000000069g7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3880,12 +3838,12 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: POST - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=ResponseTime&metricNamespace=LoadTestRunMetrics×pan=2025-02-24T22%3A05%3A42.485Z%2F2025-02-24T22%3A10%3A34.7Z + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=ResponseTime&metricNamespace=LoadTestRunMetrics×pan=2025-02-26T23%3A20%3A04.442Z%2F2025-02-26T23%3A24%3A51.973Z response: body: - string: '{"value":[{"data":[{"timestamp":"2025-02-24T22:06:00.000Z","value":277.0},{"timestamp":"2025-02-24T22:07:00.000Z","value":225.0}]}]}' + string: '{"value":[{"data":[{"timestamp":"2025-02-26T23:21:00.000Z","value":225.0},{"timestamp":"2025-02-26T23:22:00.000Z","value":22.0},{"timestamp":"2025-02-26T23:23:00.000Z","value":43.0}]}]}' headers: accept-ranges: - bytes @@ -3895,17 +3853,17 @@ interactions: connection: - keep-alive content-length: - - '132' + - '185' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:44 GMT + - Wed, 26 Feb 2025 23:25:02 GMT mise-correlation-id: - - e37fb21f-3294-468a-8dc7-4853a06fe442 + - 53acf491-be35-4dbb-9786-6f176b470e50 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221042Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000004hey + - 20250226T232501Z-167c755789dw9d62hC1SG1x2v800000001sg0000000069h7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3927,12 +3885,12 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: POST - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=TotalRequests&metricNamespace=LoadTestRunMetrics×pan=2025-02-24T22%3A05%3A42.485Z%2F2025-02-24T22%3A10%3A34.7Z + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=TotalRequests&metricNamespace=LoadTestRunMetrics×pan=2025-02-26T23%3A20%3A04.442Z%2F2025-02-26T23%3A24%3A51.973Z response: body: - string: '{"value":[{"data":[{"timestamp":"2025-02-24T22:06:00.000Z","value":22.0},{"timestamp":"2025-02-24T22:07:00.000Z","value":57.0},{"timestamp":"2025-02-24T22:08:00.000Z","value":41.0}]}]}' + string: '{"value":[{"data":[{"timestamp":"2025-02-26T23:21:00.000Z","value":56.0},{"timestamp":"2025-02-26T23:22:00.000Z","value":56.0},{"timestamp":"2025-02-26T23:23:00.000Z","value":8.0}]}]}' headers: accept-ranges: - bytes @@ -3942,17 +3900,17 @@ interactions: connection: - keep-alive content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:45 GMT + - Wed, 26 Feb 2025 23:25:03 GMT mise-correlation-id: - - a32ceb3b-e35a-439f-9cb6-14d24ca2daea + - ee55786e-1e24-4737-8286-d613fc687ed6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221044Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000004hkf + - 20250226T232502Z-167c755789dw9d62hC1SG1x2v800000001sg0000000069m3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3974,9 +3932,9 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: POST - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=Errors&metricNamespace=LoadTestRunMetrics×pan=2025-02-24T22%3A05%3A42.485Z%2F2025-02-24T22%3A10%3A34.7Z + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=Errors&metricNamespace=LoadTestRunMetrics×pan=2025-02-26T23%3A20%3A04.442Z%2F2025-02-26T23%3A24%3A51.973Z response: body: string: '{"value":[{"data":[]}]}' @@ -3993,13 +3951,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:48 GMT + - Wed, 26 Feb 2025 23:25:08 GMT mise-correlation-id: - - 4eaeacb8-8d9d-4c13-9bee-e90a135cc706 + - d83639e5-1ead-4ac3-becc-164c0aa954ed strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221045Z-r17775d4f9888gqkhC1SG1bvr800000008b0000000004hmq + - 20250226T232503Z-167c755789dw9d62hC1SG1x2v800000001sg0000000069pk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4022,7 +3980,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:20.5081002Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:20.5081002Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:18:39.5961113Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:18:39.5961113Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4031,9 +3989,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:48 GMT + - Wed, 26 Feb 2025 23:25:09 GMT etag: - - '"4f0182ee-0000-0200-0000-67bcecfb0000"' + - '"8f01698b-0000-0200-0000-67bfa1670000"' expires: - '-1' pragma: @@ -4049,7 +4007,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 97D3A0807D434D169E4E1E021FA0D77D Ref B: MAA201060514045 Ref C: 2025-02-24T22:10:48Z' + - 'Ref A: 7ADB9040E3DD479B885D9C760325C4D4 Ref B: MAA201060513047 Ref C: 2025-02-26T23:25:08Z' status: code: 200 message: OK @@ -4063,12 +4021,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A49Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:49.4159618Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:10:49.4154847Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A49Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:49.4161721Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:49.4163426Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:10:49.4165049Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A49Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:49.4166788Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A49Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:49.4168391Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A10%3A49Z&se=2025-02-24T23%3A10%3A49Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:10:49.4170068Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2025-02-24T22:05:42.485Z","endDateTime":"2025-02-24T22:10:34.7Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:10:38.87Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A10Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:10.8383071Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:25:10.8345555Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A10Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:10.8426018Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:10.8426832Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:25:10.8427473Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/657ac081-aff8-463d-bc4d-45f13209dcd8_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A10Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:10.8428069Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/657ac081-aff8-463d-bc4d-45f13209dcd8_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A10Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:10.8428682Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A25%3A10Z&se=2025-02-27T00%3A25%3A10Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:25:10.8429183Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2025-02-26T23:20:04.442Z","endDateTime":"2025-02-26T23:24:51.973Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:24:55.901Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -4078,17 +4036,17 @@ interactions: connection: - keep-alive content-length: - - '6699' + - '6702' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:49 GMT + - Wed, 26 Feb 2025 23:25:10 GMT mise-correlation-id: - - 0e2b0c83-fb31-496c-8276-364d8536d480 + - 7a9a9ad6-b91b-45e6-b5d8-e53a5d24d090 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221049Z-r17775d4f984s8x2hC1SG1rtbn00000008400000000091sk + - 20250226T232510Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kyvf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4110,12 +4068,12 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: POST - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-24T22%3A05%3A42.485Z%2F2025-02-24T22%3A10%3A34.7Z + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-26T23%3A20%3A04.442Z%2F2025-02-26T23%3A24%3A51.973Z response: body: - string: '{"value":[{"data":[{"timestamp":"2025-02-24T22:06:00.000Z","value":1.0},{"timestamp":"2025-02-24T22:07:00.000Z","value":1.0},{"timestamp":"2025-02-24T22:08:00.000Z","value":1.0}]}]}' + string: '{"value":[{"data":[{"timestamp":"2025-02-26T23:21:00.000Z","value":1.0},{"timestamp":"2025-02-26T23:22:00.000Z","value":1.0}]}]}' headers: accept-ranges: - bytes @@ -4125,17 +4083,17 @@ interactions: connection: - keep-alive content-length: - - '181' + - '128' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:49 GMT + - Wed, 26 Feb 2025 23:25:11 GMT mise-correlation-id: - - bb2339cd-25e7-475e-9884-54ff91e2df3c + - 9075a1b0-ae18-4b57-9e19-441d6004e295 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221049Z-r17775d4f984s8x2hC1SG1rtbn00000008400000000091st + - 20250226T232510Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000kyya x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4158,7 +4116,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:20.5081002Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:20.5081002Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:18:39.5961113Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:18:39.5961113Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4167,9 +4125,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:51 GMT + - Wed, 26 Feb 2025 23:25:12 GMT etag: - - '"4f0182ee-0000-0200-0000-67bcecfb0000"' + - '"8f01698b-0000-0200-0000-67bfa1670000"' expires: - '-1' pragma: @@ -4185,7 +4143,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4E9101F515984ADDB572B0B8B05CE83D Ref B: MAA201060513017 Ref C: 2025-02-24T22:10:50Z' + - 'Ref A: D4F7E41BFD0645BEB09241AB15A6BE94 Ref B: MAA201060515033 Ref C: 2025-02-26T23:25:11Z' status: code: 200 message: OK @@ -4199,12 +4157,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A52Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:52.0015846Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:10:52.0011114Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A52Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:52.0016753Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A52Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:52.0019876Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:10:52.0020784Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A52Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:52.0023126Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A52Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:52.002422Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A10%3A52Z&se=2025-02-24T23%3A10%3A52Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:10:52.0025687Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2025-02-24T22:05:42.485Z","endDateTime":"2025-02-24T22:10:34.7Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:10:38.87Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A13Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:13.4668874Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:25:13.4664707Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A13Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:13.4671791Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:13.4672962Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:25:13.4675839Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/657ac081-aff8-463d-bc4d-45f13209dcd8_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A13Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:13.4676734Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/657ac081-aff8-463d-bc4d-45f13209dcd8_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A13Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:13.4677636Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A25%3A13Z&se=2025-02-27T00%3A25%3A13Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:25:13.4678587Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2025-02-26T23:20:04.442Z","endDateTime":"2025-02-26T23:24:51.973Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:24:55.901Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -4214,17 +4172,17 @@ interactions: connection: - keep-alive content-length: - - '6694' + - '6706' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:52 GMT + - Wed, 26 Feb 2025 23:25:13 GMT mise-correlation-id: - - 8986c7fb-cb62-4976-92c0-ca69f4e7e99a + - 3333e6ce-ea4e-4912-badf-9b53a9214c37 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221051Z-r17775d4f98k7mk2hC1SG1n7700000000rtg000000005utd + - 20250226T232512Z-167c755789d9f6qshC1SG1fkqn00000002kg000000001vts x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4242,9 +4200,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-definitions?api-version=2024-12-01-preview&metricNamespace=LoadTestRunMetrics + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-definitions?api-version=2024-12-01-preview&metricNamespace=LoadTestRunMetrics response: body: string: '{"value":[{"dimensions":[{"description":"Request Name","name":"RequestName"},{"description":"Engine @@ -4268,13 +4226,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:52 GMT + - Wed, 26 Feb 2025 23:25:13 GMT mise-correlation-id: - - 264a8f1d-7fc5-41d3-aad6-0cb18e011fa3 + - 80220ab2-4d11-4b77-b34a-7bab64032d69 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221052Z-r17775d4f98k7mk2hC1SG1n7700000000rtg000000005uud + - 20250226T232513Z-167c755789d9f6qshC1SG1fkqn00000002kg000000001vvt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4292,9 +4250,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/RequestName/values?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-24T22%3A05%3A42.485Z%2F2025-02-24T22%3A10%3A34.7Z + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/RequestName/values?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-26T23%3A20%3A04.442Z%2F2025-02-26T23%3A24%3A51.973Z response: body: string: '{"value":["HTTP Request"]}' @@ -4311,13 +4269,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:53 GMT + - Wed, 26 Feb 2025 23:25:14 GMT mise-correlation-id: - - 400a5472-5b6f-428b-9db6-f8c78ffda1c9 + - e55b440b-7d9c-43da-b21e-1a5157848592 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221052Z-r17775d4f98k7mk2hC1SG1n7700000000rtg000000005uuq + - 20250226T232513Z-167c755789d9f6qshC1SG1fkqn00000002kg000000001vwf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4335,9 +4293,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/EngineRegion/values?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-24T22%3A05%3A42.485Z%2F2025-02-24T22%3A10%3A34.7Z + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/EngineRegion/values?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-26T23%3A20%3A04.442Z%2F2025-02-26T23%3A24%3A51.973Z response: body: string: '{"value":[""]}' @@ -4354,13 +4312,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:54 GMT + - Wed, 26 Feb 2025 23:25:15 GMT mise-correlation-id: - - c78ee8ce-96aa-4bf0-bab7-638e41c9430f + - fad2b5f6-a601-454a-a820-e49b37a048eb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221053Z-r17775d4f98k7mk2hC1SG1n7700000000rtg000000005uvm + - 20250226T232514Z-167c755789d9f6qshC1SG1fkqn00000002kg000000001vyf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4383,12 +4341,12 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: POST - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-24T22%3A05%3A42.485Z%2F2025-02-24T22%3A10%3A34.7Z + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-26T23%3A20%3A04.442Z%2F2025-02-26T23%3A24%3A51.973Z response: body: - string: '{"value":[{"data":[{"timestamp":"2025-02-24T22:06:00.000Z","value":1.0},{"timestamp":"2025-02-24T22:07:00.000Z","value":1.0},{"timestamp":"2025-02-24T22:08:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP + string: '{"value":[{"data":[{"timestamp":"2025-02-26T23:21:00.000Z","value":1.0},{"timestamp":"2025-02-26T23:22:00.000Z","value":1.0},{"timestamp":"2025-02-26T23:23:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP Request"},{"name":"EngineRegion","value":""}]}]}' headers: accept-ranges: @@ -4403,13 +4361,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:54 GMT + - Wed, 26 Feb 2025 23:25:16 GMT mise-correlation-id: - - 3d4d240d-d9b8-41d1-8290-d6d72f4016f2 + - 96268075-4604-44a6-8854-225ddcea2905 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221054Z-r17775d4f98k7mk2hC1SG1n7700000000rtg000000005ux1 + - 20250226T232515Z-167c755789d9f6qshC1SG1fkqn00000002kg000000001w3y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4432,7 +4390,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:20.5081002Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:20.5081002Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:18:39.5961113Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:18:39.5961113Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4441,9 +4399,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:55 GMT + - Wed, 26 Feb 2025 23:25:17 GMT etag: - - '"4f0182ee-0000-0200-0000-67bcecfb0000"' + - '"8f01698b-0000-0200-0000-67bfa1670000"' expires: - '-1' pragma: @@ -4459,7 +4417,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D97D7CBCC72D40558E4B52F7548EBF5C Ref B: MAA201060513017 Ref C: 2025-02-24T22:10:54Z' + - 'Ref A: D99090C9CD284465828032E9F82016B5 Ref B: MAA201060516047 Ref C: 2025-02-26T23:25:16Z' status: code: 200 message: OK @@ -4473,12 +4431,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A56Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:56.0044839Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:10:56.0037932Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A56Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:56.0046452Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A56Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:56.0048411Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:10:56.0050417Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A56Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:56.0052428Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A56Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:56.0054264Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A00Z&ske=2025-02-25T05%3A05%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A10%3A56Z&se=2025-02-24T23%3A10%3A56Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:10:56.0056326Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2025-02-24T22:05:42.485Z","endDateTime":"2025-02-24T22:10:34.7Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:10:38.87Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A18Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:18.4773908Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:25:18.4771149Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A18Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:18.4774808Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A18Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:18.477564Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:25:18.4776439Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/657ac081-aff8-463d-bc4d-45f13209dcd8_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A18Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:18.4777331Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/657ac081-aff8-463d-bc4d-45f13209dcd8_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A18Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:18.4778124Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A20%3A04Z&ske=2025-02-28T08%3A20%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A25%3A18Z&se=2025-02-27T00%3A25%3A18Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:25:18.4779021Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2025-02-26T23:20:04.442Z","endDateTime":"2025-02-26T23:24:51.973Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:24:55.901Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -4492,13 +4450,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:56 GMT + - Wed, 26 Feb 2025 23:25:18 GMT mise-correlation-id: - - 834eff52-77d1-47a1-9168-1550132ea37e + - 609f3b5b-bd05-4a50-94ee-d3593f7c4491 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221055Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000001cka + - 20250226T232517Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000006avu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4516,9 +4474,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/RequestName/values?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-24T22%3A05%3A42.485Z%2F2025-02-24T22%3A10%3A34.7Z + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/RequestName/values?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-26T23%3A20%3A04.442Z%2F2025-02-26T23%3A24%3A51.973Z response: body: string: '{"value":["HTTP Request"]}' @@ -4535,13 +4493,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:56 GMT + - Wed, 26 Feb 2025 23:25:19 GMT mise-correlation-id: - - 2cddf6df-d212-4d5c-8f55-0a0ac229d9d4 + - 46892ac3-96c8-4d95-bd8a-63a8d6b1f583 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221056Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000001ckv + - 20250226T232518Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000006axu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4563,12 +4521,12 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: POST - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-24T22%3A05%3A42.485Z%2F2025-02-24T22%3A10%3A34.7Z + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-26T23%3A20%3A04.442Z%2F2025-02-26T23%3A24%3A51.973Z response: body: - string: '{"value":[{"data":[{"timestamp":"2025-02-24T22:06:00.000Z","value":1.0},{"timestamp":"2025-02-24T22:07:00.000Z","value":1.0},{"timestamp":"2025-02-24T22:08:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP + string: '{"value":[{"data":[{"timestamp":"2025-02-26T23:21:00.000Z","value":1.0},{"timestamp":"2025-02-26T23:22:00.000Z","value":1.0},{"timestamp":"2025-02-26T23:23:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP Request"}]}]}' headers: accept-ranges: @@ -4583,13 +4541,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:57 GMT + - Wed, 26 Feb 2025 23:25:20 GMT mise-correlation-id: - - 2eb3b44b-f275-4d4c-b349-04bbfe92a6fe + - 5f2bf2ca-1c32-45b6-96e6-a202bf85355a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221056Z-r17775d4f98t9jlfhC1SG10apg00000008ag000000001cmz + - 20250226T232519Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000006b17 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4612,7 +4570,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:20.5081002Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:20.5081002Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:18:39.5961113Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:18:39.5961113Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4621,9 +4579,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:58 GMT + - Wed, 26 Feb 2025 23:25:21 GMT etag: - - '"4f0182ee-0000-0200-0000-67bcecfb0000"' + - '"8f01698b-0000-0200-0000-67bfa1670000"' expires: - '-1' pragma: @@ -4639,7 +4597,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 02DE3C6E9B994FC7AFDCCC63E8A4E20F Ref B: MAA201060514031 Ref C: 2025-02-24T22:10:57Z' + - 'Ref A: B31F957F94E041428BAADBF7E7408332 Ref B: MAA201060513023 Ref C: 2025-02-26T23:25:21Z' status: code: 200 message: OK @@ -4653,12 +4611,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"16cfc70c-3986-42be-b697-a208aac0ae42":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4aad42c7-fb27-4d7f-bc15-931086fa4d57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"33015c58-c892-4470-a8bc-152a65d7c71d":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"1928ee2e-54b0-4349-b090-312a9b6233bb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"37dcf1ed-7419-4487-a5b3-eed5ad231a6f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4390c1a2-f7a6-47fc-b219-95228882d874":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/99e8eced-c2aa-4806-b92b-a5a079b8074d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A58Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:58.843352Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/d1a9b1cd-3801-49e3-aea9-1fa272e71457?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:10:58.8429717Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/fc4def2c-5f9e-4cfe-be90-befd0945effa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A58Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:58.8434656Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/6c48f08b-6b26-4428-85d7-e308a21b2e33?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A58Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:58.8435933Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/584dda39-fd43-483b-bf34-cf355905ca81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:10:58.8437131Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A58Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:58.8438191Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/65843903-1439-4e53-84f1-4a2b026d13e0/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A10%3A58Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:10:58.843948Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://aeu0634xszee6zrci0owsdj7.z40.blob.storage.azure.net/b141fccf-d2c7-4a5e-a04e-cdac48c9a2b7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A57Z&ske=2025-02-25T05%3A04%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A10%3A58Z&se=2025-02-24T23%3A10%3A58Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:10:58.8440752Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2025-02-24T22:05:42.485Z","endDateTime":"2025-02-24T22:10:34.7Z","executedDateTime":"2025-02-24T22:05:40.942Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-24T22:05:41.801Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:10:38.87Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"20762ad5-6ed1-4564-aceb-e088282d16df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0988dc0-e172-4cfc-b880-4a63377fffda":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97b52381-51c6-4d4a-949c-f474228d850b":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"58ff8050-6cc2-42ca-8788-a5b239d72bd5":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"6f3db965-439c-4b72-bc73-14c781e77a48":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"5b7e513d-1974-435e-8871-e10925bc2c9c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a138ccdb-42ca-49e5-b74b-ffabbfb4cb76?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A22Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:22.8253823Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/6c365066-fd49-4791-8b35-f8895caeaa87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:25:22.8248672Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/06425902-9869-4598-9c9e-e76f0ddcff79?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A22Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:22.8255982Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/a7af00b1-f7f3-4c7d-8d7f-509827c4933f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A22Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:22.825784Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/d5beac35-38d8-4f3d-bca3-f268ceef8486?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:25:22.8259114Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/657ac081-aff8-463d-bc4d-45f13209dcd8_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A22Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:22.8260407Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/630c4827-6b5c-4139-92e4-929e7c3aad57/657ac081-aff8-463d-bc4d-45f13209dcd8_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A25%3A22Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:25:22.8261644Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://rdr548mxjwqqidcpfs2k5sio.z28.blob.storage.azure.net/657ac081-aff8-463d-bc4d-45f13209dcd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A19%3A16Z&ske=2025-02-27T06%3A19%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A25%3A22Z&se=2025-02-27T00%3A25%3A22Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:25:22.8262934Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2025-02-26T23:20:04.442Z","endDateTime":"2025-02-26T23:24:51.973Z","executedDateTime":"2025-02-26T23:20:01.986Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/metric-test-case/testRunId/metric-test-run-case","createdDateTime":"2025-02-26T23:20:03.753Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:24:55.901Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -4668,17 +4626,17 @@ interactions: connection: - keep-alive content-length: - - '6697' + - '6705' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:10:58 GMT + - Wed, 26 Feb 2025 23:25:22 GMT mise-correlation-id: - - acb2379e-b083-484f-a37a-80ae17e9bf3e + - 5f538840-431c-4029-8536-0a328ca4fe0f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221058Z-r17775d4f98ksdkhhC1SG17z7g00000014cg000000005xkh + - 20250226T232522Z-167c755789dkxplchC1SG1rzhw00000001yg00000000fhuq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4700,12 +4658,12 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: POST - uri: https://fc486f3a-4f5e-4bc2-bb01-ce5a2aa7e536.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-24T22%3A05%3A42.485Z%2F2025-02-24T22%3A10%3A34.7Z + uri: https://7e209fbd-8655-4919-b470-7dc8bc96c3fd.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-12-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2025-02-26T23%3A20%3A04.442Z%2F2025-02-26T23%3A24%3A51.973Z response: body: - string: '{"value":[{"data":[{"timestamp":"2025-02-24T22:06:00.000Z","value":1.0},{"timestamp":"2025-02-24T22:07:00.000Z","value":1.0},{"timestamp":"2025-02-24T22:08:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP + string: '{"value":[{"data":[{"timestamp":"2025-02-26T23:21:00.000Z","value":1.0},{"timestamp":"2025-02-26T23:22:00.000Z","value":1.0},{"timestamp":"2025-02-26T23:23:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP Request"}]}]}' headers: accept-ranges: @@ -4720,13 +4678,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:11:00 GMT + - Wed, 26 Feb 2025 23:25:23 GMT mise-correlation-id: - - 4ff7c445-d119-4fec-8825-8e3ffe340819 + - 33164046-1a23-4077-b6ea-eff3172b0b3a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T221058Z-r17775d4f98ksdkhhC1SG17z7g00000014cg000000005xky + - 20250226T232522Z-167c755789dkxplchC1SG1rzhw00000001yg00000000fhx3 x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_server_metric.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_server_metric.yaml index 2ab7f6e011a..a979d9c00ee 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_server_metric.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_server_metric.yaml @@ -105,7 +105,8 @@ interactions: {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", "value": "540"}, "59d9d43d-3600-44fc-9808-184a2666d4ed": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,7 +115,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: @@ -851,7 +852,7 @@ interactions: connection: - keep-alive content-length: - - '561' + - '571' content-type: - application/json; charset=utf-8 date: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_show.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_show.yaml index 70f5d988b15..5ef7cc700ff 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_show.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_show.yaml @@ -105,7 +105,8 @@ interactions: {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", "value": "540"}, "4b8fa786-7922-4b19-9994-dd9322258617": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,7 +115,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_stop.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_stop.yaml index 5db372bf73a..3099d7d1277 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_stop.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_stop.yaml @@ -14,7 +14,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:37.9107328Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:37.9107328Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:38:49.1641842Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:38:49.1641842Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -23,9 +23,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:12 GMT + - Wed, 26 Feb 2025 22:39:23 GMT etag: - - '"4f012cf0-0000-0200-0000-67bced0d0000"' + - '"8e01e8b5-0000-0200-0000-67bf980f0000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5386F5B99BB6498CB1219F75CB80C024 Ref B: MAA201060513021 Ref C: 2025-02-24T22:05:12Z' + - 'Ref A: F6D03DBB26154AC5B7146DD061015F7F Ref B: MAA201060516047 Ref C: 2025-02-26T22:39:23Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -71,15 +71,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 22:05:14 GMT + - Wed, 26 Feb 2025 22:39:25 GMT mise-correlation-id: - - cb2e7481-afff-48c8-9a01-d75891734dcf + - ae9b665f-23f8-4bb5-93a5-084f01247a60 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T220513Z-r17775d4f98nkpf8hC1SG11nqg000000140g0000000057t1 + - 20250226T223924Z-167c755789drsd6jhC1SG13zv40000000110000000006vw9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -95,17 +95,18 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "120"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"049edeb4-7b74-43c3-ab65-9ed71f9a6232": + true}, "passFailCriteria": {"passFailMetrics": {"49d3dbae-8122-4eb4-b4eb-bb670d58bf0b": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "04962077-947b-4fc8-a68a-016752de62bb": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "f01fed8a-55d0-4d84-8f88-02fb461bebd5": + "78"}, "882ebe32-6eb5-457e-9002-0768a175bf95": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "c10599ae-d445-4eec-ab55-856b64b4e888": {"aggregate": "p75", "clientMetric": "response_time_ms", "condition": ">", "value": - "380"}, "2aa80df6-6e5b-4588-acb7-eec73d53ab70": {"aggregate": "p99", "clientMetric": - "response_time_ms", "condition": ">", "value": "520"}, "4a23f2d9-6b94-4c84-bd27-74ced97b6c59": + "380"}, "a4f7c8c7-3a5a-485b-822b-bb229483ecdb": {"aggregate": "p99", "clientMetric": + "response_time_ms", "condition": ">", "value": "520"}, "0735c6ec-5aac-4a13-a5c3-9dfd3c22c38f": {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", - "value": "540"}, "d40fa25f-4573-4faf-af01-7c593b181564": {"aggregate": "avg", + "value": "540"}, "7482ee6b-a9b8-4887-bd8a-c8b6149481ca": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,17 +115,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1309' + - '1378' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"049edeb4-7b74-43c3-ab65-9ed71f9a6232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"04962077-947b-4fc8-a68a-016752de62bb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f01fed8a-55d0-4d84-8f88-02fb461bebd5":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"2aa80df6-6e5b-4588-acb7-eec73d53ab70":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"4a23f2d9-6b94-4c84-bd27-74ced97b6c59":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d40fa25f-4573-4faf-af01-7c593b181564":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"stop-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T22:05:14.656Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:14.656Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"49d3dbae-8122-4eb4-b4eb-bb670d58bf0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"882ebe32-6eb5-457e-9002-0768a175bf95":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c10599ae-d445-4eec-ab55-856b64b4e888":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a4f7c8c7-3a5a-485b-822b-bb229483ecdb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0735c6ec-5aac-4a13-a5c3-9dfd3c22c38f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"7482ee6b-a9b8-4887-bd8a-c8b6149481ca":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"stop-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T22:39:25.536Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:39:25.536Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -136,15 +137,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:14 GMT + - Wed, 26 Feb 2025 22:39:25 GMT location: - - https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-12-01-preview + - https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-12-01-preview mise-correlation-id: - - 154dc328-27a5-47ad-b8fe-d062cfacfcd8 + - 3cff1e79-6dd0-45d5-95f3-8babc53a9f3d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220514Z-r17775d4f98nkpf8hC1SG11nqg000000140g0000000057ut + - 20250226T223925Z-167c755789drsd6jhC1SG13zv40000000110000000006vxx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -162,9 +163,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -181,13 +182,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:15 GMT + - Wed, 26 Feb 2025 22:39:27 GMT mise-correlation-id: - - f608cfee-65a1-4499-8c99-1feb85acb298 + - 67469cdc-ffad-428c-bfde-fd7702c72546 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220514Z-r17775d4f98nkpf8hC1SG11nqg000000140g0000000057vr + - 20250226T223925Z-167c755789drsd6jhC1SG13zv40000000110000000006vzs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -212,14 +213,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/3fc7d245-a7e1-4ab5-baee-0a13dd7904f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A15Z&ske=2025-02-25T05%3A05%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:15:15.429114Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/fb6686ae-b9a2-4b70-86ff-0219009aa059?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T22%3A49%3A29Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T22:49:29.1849902Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -227,19 +228,19 @@ interactions: connection: - keep-alive content-length: - - '574' + - '575' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:15 GMT + - Wed, 26 Feb 2025 22:39:29 GMT location: - - https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 524ee8c8-cffd-4f92-a810-8b5142782c5c + - 76305c8a-6d69-4390-af2f-bcf77a8840f0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220515Z-r17775d4f98nkpf8hC1SG11nqg000000140g0000000057w5 + - 20250226T223927Z-167c755789drsd6jhC1SG13zv40000000110000000006w4v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -257,12 +258,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/3fc7d245-a7e1-4ab5-baee-0a13dd7904f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A15Z&ske=2025-02-25T05%3A05%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:15:15.7450606Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/fb6686ae-b9a2-4b70-86ff-0219009aa059?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T22%3A49%3A29Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T22:49:29.4633864Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -276,13 +277,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:15 GMT + - Wed, 26 Feb 2025 22:39:29 GMT mise-correlation-id: - - 33224b05-a14a-4646-a257-484d461b9ee3 + - 4df9b43e-9d6f-49fa-80a4-2ec072faaa7b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220515Z-r17775d4f98nkpf8hC1SG11nqg000000140g0000000057wr + - 20250226T223929Z-167c755789drsd6jhC1SG13zv40000000110000000006w9q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -311,14 +312,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/9eff1ecc-2c57-49f9-82ed-14876e5a8dc4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A15Z&ske=2025-02-25T05%3A05%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:15:16.1111295Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/6e611862-a99a-4763-b958-3cd7d5eb7828?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T22%3A49%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T22:49:29.9910325Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -330,15 +331,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:16 GMT + - Wed, 26 Feb 2025 22:39:30 GMT location: - - https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - f77f675f-9c98-48a8-bc0e-245e8b3891b0 + - c660240a-a145-40c2-b8c5-443d3c51bce7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220515Z-r17775d4f98nkpf8hC1SG11nqg000000140g0000000057xa + - 20250226T223929Z-167c755789drsd6jhC1SG13zv40000000110000000006wab x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -356,12 +357,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/9eff1ecc-2c57-49f9-82ed-14876e5a8dc4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:15:16.3959919Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/6e611862-a99a-4763-b958-3cd7d5eb7828?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T22%3A49%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T22:49:30.312274Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -371,17 +372,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:16 GMT + - Wed, 26 Feb 2025 22:39:30 GMT mise-correlation-id: - - 5e69ddda-4090-4733-b6f8-a4b27a0ef4d5 + - 7ae5d363-be16-49d9-b837-79fc1c2804bd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220516Z-r17775d4f98nkpf8hC1SG11nqg000000140g0000000057xs + - 20250226T223930Z-167c755789drsd6jhC1SG13zv40000000110000000006wbv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -490,14 +491,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:16.9227444Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T22%3A49%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T22:49:30.7732969Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -509,15 +510,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:17 GMT + - Wed, 26 Feb 2025 22:39:30 GMT location: - - https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - bc4dd232-b448-4018-8543-a68089cb4e88 + - 8b9c6c9a-5fc0-4bc3-a76e-4ae82ef77b2d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220516Z-r17775d4f98nkpf8hC1SG11nqg000000140g0000000057y0 + - 20250226T223930Z-167c755789drsd6jhC1SG13zv40000000110000000006wcx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -535,55 +536,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A17Z&ske=2025-02-25T05%3A05%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:17.2182504Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '563' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 22:05:17 GMT - mise-correlation-id: - - 25f1b076-b034-49bd-b84f-66f66c6e994f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T220517Z-r17775d4f98nkpf8hC1SG11nqg000000140g0000000057yp - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A15Z&ske=2025-02-25T05%3A05%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:22.4704686Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A31Z&ske=2025-02-27T05%3A39%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T22%3A49%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T22:49:31.0733765Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -597,13 +555,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:22 GMT + - Wed, 26 Feb 2025 22:39:31 GMT mise-correlation-id: - - f85e9a31-384a-4e6c-9f03-673e29ac8c48 + - d04f8d36-6176-463c-8e0a-59e7a6b58509 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220522Z-r17775d4f98nkpf8hC1SG11nqg000000140g00000000586h + - 20250226T223930Z-167c755789drsd6jhC1SG13zv40000000110000000006wec x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -621,12 +579,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A27Z&ske=2025-02-25T05%3A05%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:27.7722254Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A36Z&ske=2025-02-27T05%3A39%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T22%3A49%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T22:49:36.3615142Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -636,17 +594,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:27 GMT + - Wed, 26 Feb 2025 22:39:36 GMT mise-correlation-id: - - 51895f9b-ba31-4c2b-ac53-397348e411ef + - 45c9beaf-7be9-4b10-8481-3ce03ec4191c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220527Z-r17775d4f98nkpf8hC1SG11nqg000000140g0000000058f9 + - 20250226T223936Z-167c755789drsd6jhC1SG13zv40000000110000000006wza x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -664,12 +622,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A27Z&ske=2025-02-25T05%3A05%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:33.019322Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A41Z&ske=2025-02-27T05%3A39%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T22%3A49%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T22:49:41.6847331Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -679,17 +637,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:33 GMT + - Wed, 26 Feb 2025 22:39:41 GMT mise-correlation-id: - - 5f753553-d577-427e-a201-4e3ebc79d161 + - 6012407e-be64-4004-84ec-483b9213678e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220532Z-r17775d4f98nkpf8hC1SG11nqg000000140g0000000058p6 + - 20250226T223941Z-167c755789drsd6jhC1SG13zv40000000110000000006xes x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -707,12 +665,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:38.2691135Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A36Z&ske=2025-02-27T05%3A39%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T22%3A49%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T22:49:47.4370191Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -722,17 +680,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:38 GMT + - Wed, 26 Feb 2025 22:39:47 GMT mise-correlation-id: - - feb8d1d2-0c6c-4008-b8f9-bcd011272c1a + - 18ec41fa-d8b2-4cf0-a7f4-e675b1636af4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220538Z-r17775d4f98nkpf8hC1SG11nqg000000140g0000000058vt + - 20250226T223946Z-167c755789drsd6jhC1SG13zv40000000110000000006xz5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -750,12 +708,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A17Z&ske=2025-02-25T05%3A05%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:43.5192643Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A52Z&ske=2025-02-27T05%3A39%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T22%3A49%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T22:49:52.7821914Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -765,17 +723,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:43 GMT + - Wed, 26 Feb 2025 22:39:52 GMT mise-correlation-id: - - 3374530f-dc3f-473f-a722-110d3bff3f28 + - be5eaf56-9f38-4bc9-9c2a-97d3d788a85e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220543Z-r17775d4f98nkpf8hC1SG11nqg000000140g000000005954 + - 20250226T223952Z-167c755789drsd6jhC1SG13zv40000000110000000006yfu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -793,12 +751,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A15Z&ske=2025-02-25T05%3A05%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:48.7674457Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A41Z&ske=2025-02-27T05%3A39%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T22%3A49%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T22:49:58.0320775Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -812,13 +770,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:48 GMT + - Wed, 26 Feb 2025 22:39:58 GMT mise-correlation-id: - - e4faa398-0bd1-48fc-993a-aeb5e18b8581 + - f96d55f9-1258-445a-8ec2-12d509067fdb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220548Z-r17775d4f98nkpf8hC1SG11nqg000000140g0000000059hp + - 20250226T223957Z-167c755789drsd6jhC1SG13zv40000000110000000006z0r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -836,12 +794,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A15Z&ske=2025-02-25T05%3A05%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:54.0209487Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A31Z&ske=2025-02-27T05%3A39%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T22%3A50%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T22:50:03.2930228Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -851,17 +809,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:54 GMT + - Wed, 26 Feb 2025 22:40:03 GMT mise-correlation-id: - - d148b41c-a31f-4828-90bb-c605cc23dd14 + - d4376e72-86bc-4437-81f4-696f956ba72c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220553Z-r17775d4f98nkpf8hC1SG11nqg000000140g0000000059wa + - 20250226T224003Z-167c755789drsd6jhC1SG13zv40000000110000000006zfu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -879,13 +837,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"049edeb4-7b74-43c3-ab65-9ed71f9a6232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"04962077-947b-4fc8-a68a-016752de62bb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f01fed8a-55d0-4d84-8f88-02fb461bebd5":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"2aa80df6-6e5b-4588-acb7-eec73d53ab70":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"4a23f2d9-6b94-4c84-bd27-74ced97b6c59":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d40fa25f-4573-4faf-af01-7c593b181564":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A27Z&ske=2025-02-25T05%3A05%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:54.2718653Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/3fc7d245-a7e1-4ab5-baee-0a13dd7904f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A27Z&ske=2025-02-25T05%3A05%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A54Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:54.2723043Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/9eff1ecc-2c57-49f9-82ed-14876e5a8dc4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A27Z&ske=2025-02-25T05%3A05%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:54.2724804Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"stop-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T22:05:14.656Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:52.223Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"49d3dbae-8122-4eb4-b4eb-bb670d58bf0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"882ebe32-6eb5-457e-9002-0768a175bf95":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c10599ae-d445-4eec-ab55-856b64b4e888":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a4f7c8c7-3a5a-485b-822b-bb229483ecdb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0735c6ec-5aac-4a13-a5c3-9dfd3c22c38f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"7482ee6b-a9b8-4887-bd8a-c8b6149481ca":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A52Z&ske=2025-02-27T05%3A39%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:40:03.6015964Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/fb6686ae-b9a2-4b70-86ff-0219009aa059?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A52Z&ske=2025-02-27T05%3A39%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A03Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:03.6018451Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/6e611862-a99a-4763-b958-3cd7d5eb7828?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A52Z&ske=2025-02-27T05%3A39%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:40:03.6019117Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"stop-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T22:39:25.536Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:40:02.684Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -895,17 +853,17 @@ interactions: connection: - keep-alive content-length: - - '3368' + - '3378' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:54 GMT + - Wed, 26 Feb 2025 22:40:03 GMT mise-correlation-id: - - de679c8e-e985-4f39-abd5-38699bbde98b + - e387f58e-c62c-4f9b-a88b-91eee0283b29 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220554Z-r17775d4f98nkpf8hC1SG11nqg000000140g0000000059wz + - 20250226T224003Z-167c755789drsd6jhC1SG13zv40000000110000000006zgh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -928,7 +886,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:37.9107328Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:37.9107328Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:38:49.1641842Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:38:49.1641842Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -937,9 +895,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:54 GMT + - Wed, 26 Feb 2025 22:40:04 GMT etag: - - '"4f012cf0-0000-0200-0000-67bced0d0000"' + - '"8e01e8b5-0000-0200-0000-67bf980f0000"' expires: - '-1' pragma: @@ -955,7 +913,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 349EB5CE16944CF6B993DC58550E8AAA Ref B: MAA201060515049 Ref C: 2025-02-24T22:05:54Z' + - 'Ref A: 3BF80608BD7246458448A24E82F957E6 Ref B: MAA201060515031 Ref C: 2025-02-26T22:40:03Z' status: code: 200 message: OK @@ -969,13 +927,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"049edeb4-7b74-43c3-ab65-9ed71f9a6232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"04962077-947b-4fc8-a68a-016752de62bb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f01fed8a-55d0-4d84-8f88-02fb461bebd5":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"2aa80df6-6e5b-4588-acb7-eec73d53ab70":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"4a23f2d9-6b94-4c84-bd27-74ced97b6c59":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d40fa25f-4573-4faf-af01-7c593b181564":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:55.7527401Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/3fc7d245-a7e1-4ab5-baee-0a13dd7904f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:55.7531542Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/9eff1ecc-2c57-49f9-82ed-14876e5a8dc4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:55.7533176Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"stop-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T22:05:14.656Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:52.223Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"49d3dbae-8122-4eb4-b4eb-bb670d58bf0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"882ebe32-6eb5-457e-9002-0768a175bf95":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c10599ae-d445-4eec-ab55-856b64b4e888":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a4f7c8c7-3a5a-485b-822b-bb229483ecdb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0735c6ec-5aac-4a13-a5c3-9dfd3c22c38f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"7482ee6b-a9b8-4887-bd8a-c8b6149481ca":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:40:05.5778593Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/fb6686ae-b9a2-4b70-86ff-0219009aa059?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:05.5782617Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/6e611862-a99a-4763-b958-3cd7d5eb7828?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:40:05.5784556Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"stop-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T22:39:25.536Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:40:02.684Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -989,13 +947,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:55 GMT + - Wed, 26 Feb 2025 22:40:05 GMT mise-correlation-id: - - e46482aa-742d-422a-a5d1-f4942068ddff + - 3109eb29-1174-46e6-b6bd-eaeae5c82488 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220555Z-r17775d4f98dvpdwhC1SG17y38000000141g000000001pa8 + - 20250226T224004Z-167c755789dkxplchC1SG1rzhw0000000200000000004crm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1018,7 +976,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:37.9107328Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:37.9107328Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:38:49.1641842Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:38:49.1641842Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1027,9 +985,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:56 GMT + - Wed, 26 Feb 2025 22:40:06 GMT etag: - - '"4f012cf0-0000-0200-0000-67bced0d0000"' + - '"8e01e8b5-0000-0200-0000-67bf980f0000"' expires: - '-1' pragma: @@ -1045,7 +1003,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 51856207CD4E4F1F972178212829FE83 Ref B: MAA201060516019 Ref C: 2025-02-24T22:05:56Z' + - 'Ref A: E54567CC1C95408C803EDF6043BB8ECD Ref B: MAA201060513027 Ref C: 2025-02-26T22:40:05Z' status: code: 200 message: OK @@ -1059,9 +1017,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with @@ -1075,15 +1033,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 22:05:57 GMT + - Wed, 26 Feb 2025 22:40:07 GMT mise-correlation-id: - - 75dda53f-1d82-4745-b6ed-447a5eba7315 + - 95f5ca81-305a-40d8-bf93-d155dbc48fec strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T220556Z-r17775d4f98k7mk2hC1SG1n7700000000rtg0000000059v4 + - 20250226T224006Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000bc5u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1107,12 +1065,12 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"049edeb4-7b74-43c3-ab65-9ed71f9a6232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"04962077-947b-4fc8-a68a-016752de62bb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f01fed8a-55d0-4d84-8f88-02fb461bebd5":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"2aa80df6-6e5b-4588-acb7-eec73d53ab70":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"4a23f2d9-6b94-4c84-bd27-74ced97b6c59":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d40fa25f-4573-4faf-af01-7c593b181564":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/a6d6b539-8263-4ed7-9d5b-39b848dfa872?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A01Z&ske=2025-02-26T07%3A06%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A02Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:02.0696035Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A01Z&ske=2025-02-26T07%3A06%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:02.069352Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd5754f5-9682-4c72-b52d-36ba74ea9dd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A01Z&ske=2025-02-26T07%3A06%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A02Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:02.0697151Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/3fc7d245-a7e1-4ab5-baee-0a13dd7904f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A01Z&ske=2025-02-26T07%3A06%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:02.0698092Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/9eff1ecc-2c57-49f9-82ed-14876e5a8dc4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A01Z&ske=2025-02-26T07%3A06%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:02.0699009Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/3a3b8db9-b820-4c3a-ae57-53ee479cc286?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A06%3A01Z&ske=2025-02-26T07%3A06%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A02Z&se=2025-02-24T23%3A06%3A02Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:02.0699926Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"ACCEPTED","executedDateTime":"2025-02-24T22:05:58.235Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-24T22:06:01.497Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:02.061Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"49d3dbae-8122-4eb4-b4eb-bb670d58bf0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"882ebe32-6eb5-457e-9002-0768a175bf95":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c10599ae-d445-4eec-ab55-856b64b4e888":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a4f7c8c7-3a5a-485b-822b-bb229483ecdb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0735c6ec-5aac-4a13-a5c3-9dfd3c22c38f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"7482ee6b-a9b8-4887-bd8a-c8b6149481ca":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/d09a4e4c-d15d-436a-b584-e3a17475bd5f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A10Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:10.0235844Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:40:10.0228922Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/f3e84a1b-24b7-4d3e-9fef-075a2fb839b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A10Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:10.0237897Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/fb6686ae-b9a2-4b70-86ff-0219009aa059?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:10.0239643Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/6e611862-a99a-4763-b958-3cd7d5eb7828?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:40:10.0243069Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/716a6f1f-f2bf-4059-ae0a-110c5c2bcc8a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A40%3A10Z&se=2025-02-26T23%3A40%3A10Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:40:10.0246149Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"ACCEPTED","executedDateTime":"2025-02-26T22:40:07.899Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-26T22:40:09.354Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:40:10.013Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1120,19 +1078,19 @@ interactions: connection: - keep-alive content-length: - - '5435' + - '5428' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:02 GMT + - Wed, 26 Feb 2025 22:40:10 GMT location: - - https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview + - https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview mise-correlation-id: - - 2a36d2aa-e2de-44ed-baa8-561056abbc85 + - aacccb6c-9a8a-4a17-89af-e0ae91ea69db strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220557Z-r17775d4f98k7mk2hC1SG1n7700000000rtg0000000059vx + - 20250226T224007Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000bc79 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1150,12 +1108,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"049edeb4-7b74-43c3-ab65-9ed71f9a6232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"04962077-947b-4fc8-a68a-016752de62bb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f01fed8a-55d0-4d84-8f88-02fb461bebd5":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"2aa80df6-6e5b-4588-acb7-eec73d53ab70":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"4a23f2d9-6b94-4c84-bd27-74ced97b6c59":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d40fa25f-4573-4faf-af01-7c593b181564":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/a6d6b539-8263-4ed7-9d5b-39b848dfa872?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A02Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:02.4440011Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:02.4437415Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd5754f5-9682-4c72-b52d-36ba74ea9dd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A02Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:02.4441098Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/3fc7d245-a7e1-4ab5-baee-0a13dd7904f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:02.4441924Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/9eff1ecc-2c57-49f9-82ed-14876e5a8dc4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:02.4442555Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/3a3b8db9-b820-4c3a-ae57-53ee479cc286?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A02Z&se=2025-02-24T23%3A06%3A02Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:02.4443158Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"NOTSTARTED","startDateTime":"2025-02-24T22:06:02.279Z","executedDateTime":"2025-02-24T22:05:58.235Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-24T22:06:01.497Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:02.279Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"49d3dbae-8122-4eb4-b4eb-bb670d58bf0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"882ebe32-6eb5-457e-9002-0768a175bf95":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c10599ae-d445-4eec-ab55-856b64b4e888":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a4f7c8c7-3a5a-485b-822b-bb229483ecdb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0735c6ec-5aac-4a13-a5c3-9dfd3c22c38f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"7482ee6b-a9b8-4887-bd8a-c8b6149481ca":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/d09a4e4c-d15d-436a-b584-e3a17475bd5f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A10Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:10.3940706Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:40:10.3937816Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/f3e84a1b-24b7-4d3e-9fef-075a2fb839b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A10Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:10.3941648Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/fb6686ae-b9a2-4b70-86ff-0219009aa059?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:10.3942559Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/6e611862-a99a-4763-b958-3cd7d5eb7828?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:40:10.3943464Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/716a6f1f-f2bf-4059-ae0a-110c5c2bcc8a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A40%3A10Z&se=2025-02-26T23%3A40%3A10Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:40:10.3944408Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T22:40:10.215Z","executedDateTime":"2025-02-26T22:40:07.899Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-26T22:40:09.354Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:40:10.344Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1165,17 +1123,17 @@ interactions: connection: - keep-alive content-length: - - '5477' + - '5471' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:02 GMT + - Wed, 26 Feb 2025 22:40:10 GMT mise-correlation-id: - - 8ac71846-bb2b-4b55-ad62-88d825f612b9 + - 18f48eaf-a6db-4b68-98dd-400b76cef7dc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220602Z-r17775d4f98k7mk2hC1SG1n7700000000rtg000000005a4d + - 20250226T224010Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000bcbd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1193,12 +1151,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"049edeb4-7b74-43c3-ab65-9ed71f9a6232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"04962077-947b-4fc8-a68a-016752de62bb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f01fed8a-55d0-4d84-8f88-02fb461bebd5":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"2aa80df6-6e5b-4588-acb7-eec73d53ab70":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"4a23f2d9-6b94-4c84-bd27-74ced97b6c59":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d40fa25f-4573-4faf-af01-7c593b181564":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/a6d6b539-8263-4ed7-9d5b-39b848dfa872?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A07Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:07.7322623Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:07.7319518Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd5754f5-9682-4c72-b52d-36ba74ea9dd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A07Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:07.7323596Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/3fc7d245-a7e1-4ab5-baee-0a13dd7904f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A07Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:07.7324593Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/9eff1ecc-2c57-49f9-82ed-14876e5a8dc4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:07.732553Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/3a3b8db9-b820-4c3a-ae57-53ee479cc286?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A07Z&se=2025-02-24T23%3A06%3A07Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:07.7326499Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:06:02.279Z","executedDateTime":"2025-02-24T22:05:58.235Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-24T22:06:01.497Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:02.448Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"49d3dbae-8122-4eb4-b4eb-bb670d58bf0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"882ebe32-6eb5-457e-9002-0768a175bf95":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c10599ae-d445-4eec-ab55-856b64b4e888":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a4f7c8c7-3a5a-485b-822b-bb229483ecdb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0735c6ec-5aac-4a13-a5c3-9dfd3c22c38f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"7482ee6b-a9b8-4887-bd8a-c8b6149481ca":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/d09a4e4c-d15d-436a-b584-e3a17475bd5f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A52Z&ske=2025-02-27T05%3A39%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A15Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:15.7072334Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A52Z&ske=2025-02-27T05%3A39%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:40:15.7065587Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/f3e84a1b-24b7-4d3e-9fef-075a2fb839b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A52Z&ske=2025-02-27T05%3A39%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A15Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:15.7074374Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/fb6686ae-b9a2-4b70-86ff-0219009aa059?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A52Z&ske=2025-02-27T05%3A39%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:15.7076946Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/6e611862-a99a-4763-b958-3cd7d5eb7828?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A52Z&ske=2025-02-27T05%3A39%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:40:15.7078941Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/716a6f1f-f2bf-4059-ae0a-110c5c2bcc8a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A52Z&ske=2025-02-27T05%3A39%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A40%3A15Z&se=2025-02-26T23%3A40%3A15Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:40:15.7081119Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T22:40:10.215Z","executedDateTime":"2025-02-26T22:40:07.899Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-26T22:40:09.354Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:40:10.344Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1208,17 +1166,17 @@ interactions: connection: - keep-alive content-length: - - '5484' + - '5481' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:07 GMT + - Wed, 26 Feb 2025 22:40:15 GMT mise-correlation-id: - - ce12f61e-d288-4d3c-87b5-958d94a1bc54 + - 474011e3-270c-403e-b60b-8caa71c04c3c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220607Z-r17775d4f98k7mk2hC1SG1n7700000000rtg000000005aea + - 20250226T224015Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000bcq7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1236,12 +1194,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"049edeb4-7b74-43c3-ab65-9ed71f9a6232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"04962077-947b-4fc8-a68a-016752de62bb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f01fed8a-55d0-4d84-8f88-02fb461bebd5":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"2aa80df6-6e5b-4588-acb7-eec73d53ab70":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"4a23f2d9-6b94-4c84-bd27-74ced97b6c59":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d40fa25f-4573-4faf-af01-7c593b181564":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/a6d6b539-8263-4ed7-9d5b-39b848dfa872?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A27Z&ske=2025-02-25T05%3A05%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A12Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:12.9849123Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A27Z&ske=2025-02-25T05%3A05%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:12.9846474Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd5754f5-9682-4c72-b52d-36ba74ea9dd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A27Z&ske=2025-02-25T05%3A05%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A12Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:12.9849972Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/3fc7d245-a7e1-4ab5-baee-0a13dd7904f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A27Z&ske=2025-02-25T05%3A05%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A12Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:12.9850813Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/9eff1ecc-2c57-49f9-82ed-14876e5a8dc4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A27Z&ske=2025-02-25T05%3A05%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:12.9851627Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/3a3b8db9-b820-4c3a-ae57-53ee479cc286?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A27Z&ske=2025-02-25T05%3A05%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A12Z&se=2025-02-24T23%3A06%3A12Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:12.9852442Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:06:02.279Z","executedDateTime":"2025-02-24T22:05:58.235Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-24T22:06:01.497Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:02.448Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"49d3dbae-8122-4eb4-b4eb-bb670d58bf0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"882ebe32-6eb5-457e-9002-0768a175bf95":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c10599ae-d445-4eec-ab55-856b64b4e888":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a4f7c8c7-3a5a-485b-822b-bb229483ecdb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0735c6ec-5aac-4a13-a5c3-9dfd3c22c38f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"7482ee6b-a9b8-4887-bd8a-c8b6149481ca":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/d09a4e4c-d15d-436a-b584-e3a17475bd5f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A20Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:20.9727108Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:40:20.9724685Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/f3e84a1b-24b7-4d3e-9fef-075a2fb839b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A20Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:20.9727957Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/fb6686ae-b9a2-4b70-86ff-0219009aa059?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A20Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:20.9728692Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/6e611862-a99a-4763-b958-3cd7d5eb7828?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:40:20.9729362Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/716a6f1f-f2bf-4059-ae0a-110c5c2bcc8a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A40%3A20Z&se=2025-02-26T23%3A40%3A20Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:40:20.9730082Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T22:40:10.215Z","executedDateTime":"2025-02-26T22:40:07.899Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-26T22:40:09.354Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:40:10.344Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1251,17 +1209,17 @@ interactions: connection: - keep-alive content-length: - - '5489' + - '5487' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:13 GMT + - Wed, 26 Feb 2025 22:40:21 GMT mise-correlation-id: - - 42f77deb-af1b-4916-9815-44bb3d7093f5 + - 3a8a905a-a83c-4c95-8bef-ed94a84ee373 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220612Z-r17775d4f98k7mk2hC1SG1n7700000000rtg000000005an2 + - 20250226T224020Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000bd0c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1279,12 +1237,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"049edeb4-7b74-43c3-ab65-9ed71f9a6232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"04962077-947b-4fc8-a68a-016752de62bb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f01fed8a-55d0-4d84-8f88-02fb461bebd5":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"2aa80df6-6e5b-4588-acb7-eec73d53ab70":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"4a23f2d9-6b94-4c84-bd27-74ced97b6c59":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d40fa25f-4573-4faf-af01-7c593b181564":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/a6d6b539-8263-4ed7-9d5b-39b848dfa872?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A15Z&ske=2025-02-25T05%3A05%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A18Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:18.2377075Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A15Z&ske=2025-02-25T05%3A05%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:18.2373621Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd5754f5-9682-4c72-b52d-36ba74ea9dd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A15Z&ske=2025-02-25T05%3A05%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A18Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:18.2378061Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/3fc7d245-a7e1-4ab5-baee-0a13dd7904f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A15Z&ske=2025-02-25T05%3A05%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A18Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:18.2379061Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/9eff1ecc-2c57-49f9-82ed-14876e5a8dc4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A15Z&ske=2025-02-25T05%3A05%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:18.2379955Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/3a3b8db9-b820-4c3a-ae57-53ee479cc286?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A15Z&ske=2025-02-25T05%3A05%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A18Z&se=2025-02-24T23%3A06%3A18Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:18.2380804Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:06:02.279Z","executedDateTime":"2025-02-24T22:05:58.235Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-24T22:06:01.497Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:02.448Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"49d3dbae-8122-4eb4-b4eb-bb670d58bf0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"882ebe32-6eb5-457e-9002-0768a175bf95":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c10599ae-d445-4eec-ab55-856b64b4e888":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a4f7c8c7-3a5a-485b-822b-bb229483ecdb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0735c6ec-5aac-4a13-a5c3-9dfd3c22c38f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"7482ee6b-a9b8-4887-bd8a-c8b6149481ca":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/d09a4e4c-d15d-436a-b584-e3a17475bd5f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A26Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:26.2229794Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:40:26.2226813Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/f3e84a1b-24b7-4d3e-9fef-075a2fb839b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A26Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:26.2230807Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/fb6686ae-b9a2-4b70-86ff-0219009aa059?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A26Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:26.22318Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/6e611862-a99a-4763-b958-3cd7d5eb7828?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:40:26.2232773Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/716a6f1f-f2bf-4059-ae0a-110c5c2bcc8a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A40%3A26Z&se=2025-02-26T23%3A40%3A26Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:40:26.2233667Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T22:40:10.215Z","executedDateTime":"2025-02-26T22:40:07.899Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-26T22:40:09.354Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:40:10.344Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1294,17 +1252,17 @@ interactions: connection: - keep-alive content-length: - - '5485' + - '5477' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:18 GMT + - Wed, 26 Feb 2025 22:40:26 GMT mise-correlation-id: - - 56331bee-5ab0-441a-96d9-01ac73f78eeb + - d170f58b-1daa-4efa-9da7-01ff5ded28e6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220618Z-r17775d4f98k7mk2hC1SG1n7700000000rtg000000005au7 + - 20250226T224026Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000bdc6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1322,36 +1280,39 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"049edeb4-7b74-43c3-ab65-9ed71f9a6232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"04962077-947b-4fc8-a68a-016752de62bb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f01fed8a-55d0-4d84-8f88-02fb461bebd5":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"2aa80df6-6e5b-4588-acb7-eec73d53ab70":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"4a23f2d9-6b94-4c84-bd27-74ced97b6c59":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d40fa25f-4573-4faf-af01-7c593b181564":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/a6d6b539-8263-4ed7-9d5b-39b848dfa872?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A23Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:23.5240115Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:23.5234643Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd5754f5-9682-4c72-b52d-36ba74ea9dd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A23Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:23.5242879Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/3fc7d245-a7e1-4ab5-baee-0a13dd7904f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:23.524494Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/9eff1ecc-2c57-49f9-82ed-14876e5a8dc4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:23.5247105Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/3a3b8db9-b820-4c3a-ae57-53ee479cc286?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A23Z&se=2025-02-24T23%3A06%3A23Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:23.5249312Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:06:02.279Z","executedDateTime":"2025-02-24T22:05:58.235Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-24T22:06:01.497Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:02.448Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:38:49.1641842Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:38:49.1641842Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive + cache-control: + - no-cache content-length: - - '5474' + - '653' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:23 GMT - mise-correlation-id: - - 108f125f-6acc-46c0-ba81-9ae3234d0ba3 + - Wed, 26 Feb 2025 22:40:30 GMT + etag: + - '"8e01e8b5-0000-0200-0000-67bf980f0000"' + expires: + - '-1' + pragma: + - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T220623Z-r17775d4f98k7mk2hC1SG1n7700000000rtg000000005b32 x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3AC4C6AD59324AA6B72C37BD1F85C2BB Ref B: MAA201060513021 Ref C: 2025-02-26T22:40:30Z' status: code: 200 message: OK @@ -1365,39 +1326,36 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:37.9107328Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:37.9107328Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"passFailCriteria":{"passFailMetrics":{"49d3dbae-8122-4eb4-b4eb-bb670d58bf0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"882ebe32-6eb5-457e-9002-0768a175bf95":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c10599ae-d445-4eec-ab55-856b64b4e888":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a4f7c8c7-3a5a-485b-822b-bb229483ecdb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0735c6ec-5aac-4a13-a5c3-9dfd3c22c38f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"7482ee6b-a9b8-4887-bd8a-c8b6149481ca":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/d09a4e4c-d15d-436a-b584-e3a17475bd5f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A31Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:31.5034859Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:40:31.5029739Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/f3e84a1b-24b7-4d3e-9fef-075a2fb839b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A31Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:31.5036544Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/fb6686ae-b9a2-4b70-86ff-0219009aa059?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:31.5038324Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/6e611862-a99a-4763-b958-3cd7d5eb7828?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:40:31.504001Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/716a6f1f-f2bf-4059-ae0a-110c5c2bcc8a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A40%3A09Z&ske=2025-02-28T07%3A40%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A40%3A31Z&se=2025-02-26T23%3A40%3A31Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:40:31.5041705Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T22:40:10.215Z","executedDateTime":"2025-02-26T22:40:07.899Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-26T22:40:09.354Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:40:10.344Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: - cache-control: - - no-cache + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-12-01-preview + connection: + - keep-alive content-length: - - '653' + - '5478' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:23 GMT - etag: - - '"4f012cf0-0000-0200-0000-67bced0d0000"' - expires: - - '-1' - pragma: - - no-cache + - Wed, 26 Feb 2025 22:40:31 GMT + mise-correlation-id: + - c68bf4c5-c04a-42d9-8f89-b4b86d2f35c2 strict-transport-security: - max-age=31536000; includeSubDomains + x-azure-ref: + - 20250226T224031Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000bdtn x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 05AB7D30CCC04632BE4AD601B61D5E73 Ref B: MAA201060513017 Ref C: 2025-02-24T22:06:22Z' status: code: 200 message: OK @@ -1413,12 +1371,12 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: POST - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case:stop?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case:stop?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"049edeb4-7b74-43c3-ab65-9ed71f9a6232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"04962077-947b-4fc8-a68a-016752de62bb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f01fed8a-55d0-4d84-8f88-02fb461bebd5":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"2aa80df6-6e5b-4588-acb7-eec73d53ab70":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"4a23f2d9-6b94-4c84-bd27-74ced97b6c59":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d40fa25f-4573-4faf-af01-7c593b181564":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/a6d6b539-8263-4ed7-9d5b-39b848dfa872?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A24Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:24.3302198Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:24.3299379Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd5754f5-9682-4c72-b52d-36ba74ea9dd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A24Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:24.330303Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/3fc7d245-a7e1-4ab5-baee-0a13dd7904f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A24Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:24.3303917Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/9eff1ecc-2c57-49f9-82ed-14876e5a8dc4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:24.3304791Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/3a3b8db9-b820-4c3a-ae57-53ee479cc286?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A24Z&se=2025-02-24T23%3A06%3A24Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:24.3305601Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:06:02.279Z","executedDateTime":"2025-02-24T22:05:58.235Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-24T22:06:01.497Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:02.448Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"49d3dbae-8122-4eb4-b4eb-bb670d58bf0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"882ebe32-6eb5-457e-9002-0768a175bf95":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c10599ae-d445-4eec-ab55-856b64b4e888":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a4f7c8c7-3a5a-485b-822b-bb229483ecdb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0735c6ec-5aac-4a13-a5c3-9dfd3c22c38f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"7482ee6b-a9b8-4887-bd8a-c8b6149481ca":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/d09a4e4c-d15d-436a-b584-e3a17475bd5f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A32Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:32.090641Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:40:32.0902621Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/f3e84a1b-24b7-4d3e-9fef-075a2fb839b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A32Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:32.0907814Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/fb6686ae-b9a2-4b70-86ff-0219009aa059?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A32Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:32.0909241Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/6e611862-a99a-4763-b958-3cd7d5eb7828?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:40:32.0910613Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/716a6f1f-f2bf-4059-ae0a-110c5c2bcc8a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A40%3A32Z&se=2025-02-26T23%3A40%3A32Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:40:32.0912057Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T22:40:10.215Z","executedDateTime":"2025-02-26T22:40:07.899Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-26T22:40:09.354Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:40:10.344Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1428,17 +1386,17 @@ interactions: connection: - keep-alive content-length: - - '5411' + - '5431' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:24 GMT + - Wed, 26 Feb 2025 22:40:32 GMT mise-correlation-id: - - 47110c97-b2e7-4a6c-b349-cb7879f3c5db + - 19f7f429-98b7-4b1b-ae36-0e2a805d62cc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220624Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000008ut0 + - 20250226T224031Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000b99y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1456,14 +1414,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"049edeb4-7b74-43c3-ab65-9ed71f9a6232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"04962077-947b-4fc8-a68a-016752de62bb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f01fed8a-55d0-4d84-8f88-02fb461bebd5":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"2aa80df6-6e5b-4588-acb7-eec73d53ab70":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"4a23f2d9-6b94-4c84-bd27-74ced97b6c59":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d40fa25f-4573-4faf-af01-7c593b181564":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"errorDetails":[{"message":"Failed + string: '{"passFailCriteria":{"passFailMetrics":{"49d3dbae-8122-4eb4-b4eb-bb670d58bf0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"882ebe32-6eb5-457e-9002-0768a175bf95":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c10599ae-d445-4eec-ab55-856b64b4e888":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a4f7c8c7-3a5a-485b-822b-bb229483ecdb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0735c6ec-5aac-4a13-a5c3-9dfd3c22c38f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"7482ee6b-a9b8-4887-bd8a-c8b6149481ca":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"errorDetails":[{"message":"Failed to provision test engines for test run. Try again and if the issue persists, - raise a support ticket along with the test run ID."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/a6d6b539-8263-4ed7-9d5b-39b848dfa872?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A28Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:28.7784015Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:28.7778432Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd5754f5-9682-4c72-b52d-36ba74ea9dd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A28Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:28.7785893Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/3fc7d245-a7e1-4ab5-baee-0a13dd7904f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:28.7787983Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/9eff1ecc-2c57-49f9-82ed-14876e5a8dc4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:28.778996Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/3a3b8db9-b820-4c3a-ae57-53ee479cc286?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A16Z&ske=2025-02-25T05%3A05%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A28Z&se=2025-02-24T23%3A06%3A28Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:28.7791996Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"CANCELLED","startDateTime":"2025-02-24T22:06:02.279Z","endDateTime":"2025-02-24T22:06:25.421Z","executedDateTime":"2025-02-24T22:05:58.235Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-24T22:06:01.497Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:26.454Z","lastModifiedBy":"hbisht@microsoft.com"}' + raise a support ticket along with the test run ID."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/d09a4e4c-d15d-436a-b584-e3a17475bd5f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A36Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:36.7532733Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:40:36.7527521Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/f3e84a1b-24b7-4d3e-9fef-075a2fb839b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A36Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:36.7534598Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/fb6686ae-b9a2-4b70-86ff-0219009aa059?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A36Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:36.7536589Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/6e611862-a99a-4763-b958-3cd7d5eb7828?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:40:36.7538678Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/716a6f1f-f2bf-4059-ae0a-110c5c2bcc8a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A29Z&ske=2025-02-27T05%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A40%3A36Z&se=2025-02-26T23%3A40%3A36Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:40:36.7540389Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"CANCELLED","startDateTime":"2025-02-26T22:40:10.215Z","endDateTime":"2025-02-26T22:40:32.216Z","executedDateTime":"2025-02-26T22:40:07.899Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-26T22:40:09.354Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:40:33.051Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1473,17 +1431,17 @@ interactions: connection: - keep-alive content-length: - - '5680' + - '5683' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:28 GMT + - Wed, 26 Feb 2025 22:40:36 GMT mise-correlation-id: - - 188a6575-1a11-4419-a7cd-48b1bbd6c84a + - 3a2eb9c9-7e12-4ca5-9fb4-0ab7a57559e8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220628Z-r17775d4f98k7mk2hC1SG1n7700000000rtg000000005bb5 + - 20250226T224036Z-167c755789dbhjzdhC1SG1t7h800000001mg00000000be6b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1506,7 +1464,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:37.9107328Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:37.9107328Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T22:38:49.1641842Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T22:38:49.1641842Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1515,9 +1473,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:44 GMT + - Wed, 26 Feb 2025 22:40:52 GMT etag: - - '"4f012cf0-0000-0200-0000-67bced0d0000"' + - '"8e01e8b5-0000-0200-0000-67bf980f0000"' expires: - '-1' pragma: @@ -1533,7 +1491,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6E6DEC65479B474AAD6A23DCEACCF7DC Ref B: MAA201060514031 Ref C: 2025-02-24T22:06:44Z' + - 'Ref A: 3ECEB274CD084058BA7894857C582D8A Ref B: MAA201060513047 Ref C: 2025-02-26T22:40:52Z' status: code: 200 message: OK @@ -1547,14 +1505,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://c3970155-0c3f-42e2-97d4-eb6f47799412.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview + uri: https://5cbfca37-5f4a-4da1-89da-ece3c53bf95e.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"049edeb4-7b74-43c3-ab65-9ed71f9a6232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"04962077-947b-4fc8-a68a-016752de62bb":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"f01fed8a-55d0-4d84-8f88-02fb461bebd5":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"2aa80df6-6e5b-4588-acb7-eec73d53ab70":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"4a23f2d9-6b94-4c84-bd27-74ced97b6c59":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d40fa25f-4573-4faf-af01-7c593b181564":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"errorDetails":[{"message":"Failed + string: '{"passFailCriteria":{"passFailMetrics":{"49d3dbae-8122-4eb4-b4eb-bb670d58bf0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"882ebe32-6eb5-457e-9002-0768a175bf95":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c10599ae-d445-4eec-ab55-856b64b4e888":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"a4f7c8c7-3a5a-485b-822b-bb229483ecdb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0735c6ec-5aac-4a13-a5c3-9dfd3c22c38f":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"7482ee6b-a9b8-4887-bd8a-c8b6149481ca":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"errorDetails":[{"message":"Failed to provision test engines for test run. Try again and if the issue persists, - raise a support ticket along with the test run ID."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/a6d6b539-8263-4ed7-9d5b-39b848dfa872?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A17Z&ske=2025-02-25T05%3A05%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A46Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:46.4847719Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd17c5b9-e81a-4022-8ac8-30dfe06dbe1e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A17Z&ske=2025-02-25T05%3A05%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:46.4844556Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/dd5754f5-9682-4c72-b52d-36ba74ea9dd8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A17Z&ske=2025-02-25T05%3A05%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A46Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:46.484854Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/3fc7d245-a7e1-4ab5-baee-0a13dd7904f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A17Z&ske=2025-02-25T05%3A05%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A46Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:46.4849307Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/6753e25d-d0fd-459c-9891-552f6db6b5c7/9eff1ecc-2c57-49f9-82ed-14876e5a8dc4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A17Z&ske=2025-02-25T05%3A05%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:46.4850072Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://g3ft82g4c0guy1u2a6gtkr4o.z28.blob.storage.azure.net/3a3b8db9-b820-4c3a-ae57-53ee479cc286?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A17Z&ske=2025-02-25T05%3A05%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A46Z&se=2025-02-24T23%3A06%3A46Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:46.4850831Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"CANCELLED","startDateTime":"2025-02-24T22:06:02.279Z","endDateTime":"2025-02-24T22:06:25.421Z","executedDateTime":"2025-02-24T22:05:58.235Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-24T22:06:01.497Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:26.454Z","lastModifiedBy":"hbisht@microsoft.com"}' + raise a support ticket along with the test run ID."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/d09a4e4c-d15d-436a-b584-e3a17475bd5f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A36Z&ske=2025-02-27T05%3A39%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A53Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:53.5469122Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/ddfc0815-040d-43bf-9c24-07ec31a0e71f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A36Z&ske=2025-02-27T05%3A39%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:40:53.5461401Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/f3e84a1b-24b7-4d3e-9fef-075a2fb839b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A36Z&ske=2025-02-27T05%3A39%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A53Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:53.5471174Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/fb6686ae-b9a2-4b70-86ff-0219009aa059?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A36Z&ske=2025-02-27T05%3A39%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A53Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:40:53.5473017Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/15228b00-1bc6-450e-8634-e6ad88955722/6e611862-a99a-4763-b958-3cd7d5eb7828?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A36Z&ske=2025-02-27T05%3A39%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:40:53.5474872Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://olv9fnkbeuep1zh88fdnvwse.z49.blob.storage.azure.net/716a6f1f-f2bf-4059-ae0a-110c5c2bcc8a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T22%3A39%3A36Z&ske=2025-02-27T05%3A39%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T22%3A40%3A53Z&se=2025-02-26T23%3A40%3A53Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-26T23:40:53.5476615Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"CANCELLED","startDateTime":"2025-02-26T22:40:10.215Z","endDateTime":"2025-02-26T22:40:32.216Z","executedDateTime":"2025-02-26T22:40:07.899Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/stop-test-case/testRunId/stop-test-run-case","createdDateTime":"2025-02-26T22:40:09.354Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T22:40:33.051Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1564,17 +1522,17 @@ interactions: connection: - keep-alive content-length: - - '5690' + - '5679' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:46 GMT + - Wed, 26 Feb 2025 22:40:53 GMT mise-correlation-id: - - 1e2d27a3-5f63-46ba-b524-5b31d3c132b5 + - d8aef24d-61a2-4a1b-91e0-f823fa50709d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220645Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000009f1z + - 20250226T224052Z-r17775d4f98dvpdwhC1SG17y3800000019xg00000000fbqx x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_run_update.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_run_update.yaml index 52a4684f4fe..919c897c537 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_run_update.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_run_update.yaml @@ -14,7 +14,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:14.1292164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:14.1292164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:28:51.3669947Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:28:51.3669947Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -23,9 +23,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:47 GMT + - Wed, 26 Feb 2025 23:29:25 GMT etag: - - '"4f01d6ed-0000-0200-0000-67bcecf50000"' + - '"8f01ffb5-0000-0200-0000-67bfa3cc0000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DD022B0540484F64A99BD62F68D7EB1F Ref B: MAA201060513017 Ref C: 2025-02-24T22:04:46Z' + - 'Ref A: E223924BE0C64CB88FD5B519E1FFC8F9 Ref B: MAA201060513047 Ref C: 2025-02-26T23:29:25Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -71,15 +71,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 22:04:49 GMT + - Wed, 26 Feb 2025 23:29:26 GMT mise-correlation-id: - - 8c42a9cc-ba05-4811-a003-959c4dfd41bd + - 473d70d1-0eae-4ca8-ab8f-f75cec276152 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T220448Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008arw + - 20250226T232926Z-167c755789drsd6jhC1SG13zv4000000011000000000fht3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -95,17 +95,18 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae": + true}, "passFailCriteria": {"passFailMetrics": {"dbd70ca0-3d7b-428d-8b5b-737dfe8da055": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "5e675e9e-1dce-4233-af8e-5c9566d6e1ae": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd": + "78"}, "d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "7526eab4-d711-4f25-a764-30cc4c28fc2a": {"aggregate": "p75", "clientMetric": "response_time_ms", "condition": ">", "value": - "380"}, "69ff944c-5563-4bd5-ab0d-82e50ebf55c3": {"aggregate": "p99", "clientMetric": - "response_time_ms", "condition": ">", "value": "520"}, "a91e06ef-3956-4476-8e5f-7fa78d36d352": + "380"}, "febf1f33-4e2b-4b4a-8098-8858de964629": {"aggregate": "p99", "clientMetric": + "response_time_ms", "condition": ">", "value": "520"}, "79644c45-fd16-4ea4-8c42-fdac3ce37695": {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", - "value": "540"}, "c427ca76-928d-4c65-a47f-c956d2550746": {"aggregate": "avg", + "value": "540"}, "d41664d4-efb2-446a-a115-d97f943104ef": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,17 +115,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T22:04:49.411Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:04:49.411Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:29:27.273Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:29:27.273Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -136,15 +137,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:49 GMT + - Wed, 26 Feb 2025 23:29:27 GMT location: - - https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview + - https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview mise-correlation-id: - - f76e8f84-cd38-4887-87f5-b12f72e43983 + - cb63941f-2064-4ab1-b5f3-21c9ae92a20a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220449Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008ast + - 20250226T232926Z-167c755789drsd6jhC1SG13zv4000000011000000000fhuw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -162,9 +163,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -181,13 +182,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:49 GMT + - Wed, 26 Feb 2025 23:29:27 GMT mise-correlation-id: - - 748d4824-1ef5-4fb4-8a6e-df413cccfb0d + - 6e650688-c2d0-4d0c-b9f6-189c02da8801 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220449Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008atg + - 20250226T232927Z-167c755789drsd6jhC1SG13zv4000000011000000000fhw6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -212,14 +213,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A14%3A50Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:14:50.6970591Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A39%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:39:28.0791496Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -227,19 +228,19 @@ interactions: connection: - keep-alive content-length: - - '571' + - '572' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:50 GMT + - Wed, 26 Feb 2025 23:29:28 GMT location: - - https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 1e0c2c7b-5bd7-4b8a-9e80-3ecd06c6e3b4 + - ea74a491-1334-49d1-ad03-1da73b33efa1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220449Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008atx + - 20250226T232927Z-167c755789drsd6jhC1SG13zv4000000011000000000fhxc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -257,12 +258,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A14%3A51Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:14:51.0037251Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A39%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:39:28.3664246Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -272,17 +273,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '572' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:51 GMT + - Wed, 26 Feb 2025 23:29:28 GMT mise-correlation-id: - - c334a79c-4185-4d7e-9be8-18767d8c6780 + - 8ca9c7fa-3de9-48d5-94d7-3fc82df0d7af strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220450Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008aw3 + - 20250226T232928Z-167c755789drsd6jhC1SG13zv4000000011000000000fhyc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -311,14 +312,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A14%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:14:52.216628Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A39%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:39:28.7731888Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -326,19 +327,19 @@ interactions: connection: - keep-alive content-length: - - '564' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:52 GMT + - Wed, 26 Feb 2025 23:29:28 GMT location: - - https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 0704a783-84a9-4241-bccb-1558a1007819 + - 1f28a5d3-f7e6-4dd0-9c01-bbf761e633f2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220451Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008awp + - 20250226T232928Z-167c755789drsd6jhC1SG13zv4000000011000000000fhyv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -356,12 +357,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A14%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:14:52.5095382Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A39%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:39:29.0564731Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -371,17 +372,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:52 GMT + - Wed, 26 Feb 2025 23:29:29 GMT mise-correlation-id: - - 6433d560-ad9d-4b58-bce3-94acd86864a8 + - e862cc92-5a46-4af0-88ed-bee208014d29 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220452Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008ayf + - 20250226T232928Z-167c755789drsd6jhC1SG13zv4000000011000000000fhzs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -490,14 +491,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A14%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:14:53.9544777Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A39%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:39:29.5000465Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -505,19 +506,19 @@ interactions: connection: - keep-alive content-length: - - '559' + - '564' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:54 GMT + - Wed, 26 Feb 2025 23:29:29 GMT location: - - https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 27b0f1a3-b738-4394-ab0f-3dbc494adb94 + - 44bd560f-10cf-4adc-a0ee-09af2c638f98 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220452Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008ayz + - 20250226T232929Z-167c755789drsd6jhC1SG13zv4000000011000000000fk0h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -535,12 +536,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A14%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:14:54.2038438Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A39%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:39:29.7852312Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -550,17 +551,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:54 GMT + - Wed, 26 Feb 2025 23:29:29 GMT mise-correlation-id: - - dc06638f-5034-4114-8ef1-9bd3cccd5445 + - 7fd71cec-1619-41d0-8b2f-fbbdede33a6f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220454Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008b1y + - 20250226T232929Z-167c755789drsd6jhC1SG13zv4000000011000000000fk1v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -578,12 +579,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A59Z&ske=2025-02-25T05%3A04%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A14%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:14:59.4769194Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A39%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:39:35.8905625Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -593,17 +594,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:04:59 GMT + - Wed, 26 Feb 2025 23:29:36 GMT mise-correlation-id: - - dba38bff-6179-4cb3-93dd-c84efe0f5a7c + - d0274ec7-98aa-470b-8c50-7064ba4a238c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220459Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008bav + - 20250226T232935Z-167c755789drsd6jhC1SG13zv4000000011000000000fkde x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -621,12 +622,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:04.7350082Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A39%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:39:41.1556516Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -636,17 +637,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:04 GMT + - Wed, 26 Feb 2025 23:29:41 GMT mise-correlation-id: - - 5c995a0a-cefb-44b8-84d2-d8f5f4358652 + - 018a87b5-eb1a-4b98-a043-96205ea06a21 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220504Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008bn4 + - 20250226T232941Z-167c755789drsd6jhC1SG13zv4000000011000000000fkzh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -664,12 +665,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A59Z&ske=2025-02-25T05%3A04%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:09.9884291Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A39%3A46Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:39:46.9225691Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -679,17 +680,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:10 GMT + - Wed, 26 Feb 2025 23:29:47 GMT mise-correlation-id: - - e15e73ea-4937-4108-948e-f4bec9972a94 + - d8243f65-69b5-47cc-9dfa-9ae7705cc0c6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220509Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008by9 + - 20250226T232946Z-167c755789drsd6jhC1SG13zv4000000011000000000fm8m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -707,12 +708,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:15.2404437Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A39%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:39:52.1805748Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -722,17 +723,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:15 GMT + - Wed, 26 Feb 2025 23:29:52 GMT mise-correlation-id: - - 4af94a42-8721-4c6f-a98c-d8635db690a6 + - 9a3d3322-ecf6-4eec-9508-c23de284ec9d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220515Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008c79 + - 20250226T232952Z-167c755789drsd6jhC1SG13zv4000000011000000000fmq4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -750,12 +751,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:20.4946554Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A39%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:39:57.4371391Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -765,17 +766,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:20 GMT + - Wed, 26 Feb 2025 23:29:57 GMT mise-correlation-id: - - 76c49c64-7364-4d06-8587-43b6ff6eab73 + - 3b0dfbe0-5765-434e-8cf8-a00faaeba8c5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220520Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008cr7 + - 20250226T232957Z-167c755789drsd6jhC1SG13zv4000000011000000000fn2k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -793,12 +794,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:25.7725691Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A40%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:40:02.6951202Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -808,17 +809,17 @@ interactions: connection: - keep-alive content-length: - - '567' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:25 GMT + - Wed, 26 Feb 2025 23:30:02 GMT mise-correlation-id: - - bd3fc778-f685-46fb-adab-420a1bce4e78 + - 30d88dd5-d717-43cc-a845-bf481e5bac23 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220525Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008d2b + - 20250226T233002Z-167c755789drsd6jhC1SG13zv4000000011000000000fnku x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -836,12 +837,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview response: body: - string: '{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A15%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:15:31.0250847Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:30:02.9501366Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:02.9504219Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:30:02.9505071Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:29:27.273Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:30:00.298Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -851,61 +853,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '3369' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:31 GMT + - Wed, 26 Feb 2025 23:30:03 GMT mise-correlation-id: - - 13b5633a-0d9e-4142-87f3-2b1736860e0d + - 797d318a-6286-4f7f-b3cd-0b36d7d4f254 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220530Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008dc5 - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview - response: - body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:31.2786406Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:31.2795814Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:31.2798597Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T22:04:49.411Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:28.814Z","lastModifiedBy":"hbisht@microsoft.com"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '3370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 22:05:31 GMT - mise-correlation-id: - - 982e0428-12f5-4074-95e7-3b7333e0f096 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T220531Z-r17775d4f984s8x2hC1SG1rtbn0000000840000000008dcp + - 20250226T233002Z-167c755789drsd6jhC1SG13zv4000000011000000000fnmk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -928,7 +886,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:14.1292164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:14.1292164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:28:51.3669947Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:28:51.3669947Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -937,9 +895,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:31 GMT + - Wed, 26 Feb 2025 23:30:03 GMT etag: - - '"4f01d6ed-0000-0200-0000-67bcecf50000"' + - '"8f01ffb5-0000-0200-0000-67bfa3cc0000"' expires: - '-1' pragma: @@ -955,7 +913,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 82BCC3CE48374A77934ADE7F50E39FDC Ref B: MAA201060514031 Ref C: 2025-02-24T22:05:31Z' + - 'Ref A: D3522F9E02E843BBAFCBEFC8D3054523 Ref B: MAA201060515031 Ref C: 2025-02-26T23:30:03Z' status: code: 200 message: OK @@ -969,13 +927,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:32.7776169Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A32Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:32.7780635Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:32.7782683Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T22:04:49.411Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:28.814Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:30:05.009932Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:05.0103108Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:30:05.010442Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:29:27.273Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:30:00.298Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -985,17 +943,17 @@ interactions: connection: - keep-alive content-length: - - '3382' + - '3375' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:32 GMT + - Wed, 26 Feb 2025 23:30:05 GMT mise-correlation-id: - - 3be98876-e45c-4312-bd8a-d3442e78c4e2 + - d8f298b1-1111-4aa1-a35f-cfb97805de2e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220532Z-r17775d4f98ksdkhhC1SG17z7g00000014cg000000005euk + - 20250226T233004Z-r17775d4f989qmrnhC1SG1rde40000001ar000000000fsrn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1018,7 +976,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:14.1292164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:14.1292164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:28:51.3669947Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:28:51.3669947Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1027,9 +985,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:33 GMT + - Wed, 26 Feb 2025 23:30:05 GMT etag: - - '"4f01d6ed-0000-0200-0000-67bcecf50000"' + - '"8f01ffb5-0000-0200-0000-67bfa3cc0000"' expires: - '-1' pragma: @@ -1045,7 +1003,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A4930E8801A248AE88AECBF433C43DD4 Ref B: MAA201060516051 Ref C: 2025-02-24T22:05:33Z' + - 'Ref A: B0E62F9D08224FD9933E2ECD52ACDA8A Ref B: MAA201060515033 Ref C: 2025-02-26T23:30:05Z' status: code: 200 message: OK @@ -1059,9 +1017,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with @@ -1075,15 +1033,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 22:05:34 GMT + - Wed, 26 Feb 2025 23:30:06 GMT mise-correlation-id: - - 64ed99a9-06d4-4b11-9f61-44bc6581fff8 + - 5a737122-9267-40ff-b30b-2468e16b49a1 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T220534Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003bx9 + - 20250226T233005Z-167c755789dkxplchC1SG1rzhw000000020000000000dpgt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1107,12 +1065,12 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A36Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:36.3005097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:36.3002323Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A36Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:36.3006006Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A36Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:36.3006858Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:36.3007691Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A05%3A36Z&se=2025-02-24T23%3A05%3A36Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:05:36.3008506Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"ACCEPTED","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:36.291Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A07Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:07.7142211Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:30:07.7137193Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A07Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:07.7143238Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A07Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:07.7144233Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:30:07.714522Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A30%3A07Z&se=2025-02-27T00%3A30%3A07Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:30:07.7146184Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"ACCEPTED","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:30:07.704Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1120,19 +1078,19 @@ interactions: connection: - keep-alive content-length: - - '5439' + - '5437' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:36 GMT + - Wed, 26 Feb 2025 23:30:07 GMT location: - - https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + - https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview mise-correlation-id: - - bc050237-4620-4a16-81a5-792549027dd0 + - 862fd5da-a1a3-47c1-ba66-7e3da02cd421 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220534Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003bxt + - 20250226T233006Z-167c755789dkxplchC1SG1rzhw000000020000000000dpms x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1150,55 +1108,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview - response: - body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A36Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:36.6257188Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:36.6251967Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A36Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:36.6258751Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A36Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:36.6260021Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:36.6261215Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A05%3A36Z&se=2025-02-24T23%3A05%3A36Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:05:36.6262408Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"NOTSTARTED","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:36.477Z","lastModifiedBy":"hbisht@microsoft.com"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '5492' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 22:05:36 GMT - mise-correlation-id: - - 63542348-8005-4e88-a06c-9590cfad6c68 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T220536Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003c2y - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A41Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:41.9013943Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:41.9005941Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A41Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:41.901717Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A41Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:41.9020008Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:41.9021745Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A05%3A41Z&se=2025-02-24T23%3A05%3A41Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:05:41.9023961Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:36.761Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A08Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:08.0566618Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:30:08.0562561Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A08Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:08.0568283Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A08Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:08.0570206Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:30:08.0571875Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A30%3A08Z&se=2025-02-27T00%3A30%3A08Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:30:08.0573545Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"NOTSTARTED","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:30:07.923Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1208,17 +1123,17 @@ interactions: connection: - keep-alive content-length: - - '5497' + - '5475' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:42 GMT + - Wed, 26 Feb 2025 23:30:08 GMT mise-correlation-id: - - d0c9108d-935c-4e37-88f0-287dcf898a67 + - 7c2469c6-34af-4dd4-a052-e38790a91658 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220541Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003ccn + - 20250226T233007Z-167c755789dkxplchC1SG1rzhw000000020000000000dps5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1236,12 +1151,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A47Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:47.1650122Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:47.1646003Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A47Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:47.1651538Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:47.1652913Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:47.1654259Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A05%3A47Z&se=2025-02-24T23%3A05%3A47Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:05:47.1655621Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:36.761Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A13Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:13.4937376Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:30:13.4934626Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A13Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:13.493836Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:13.4939283Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:30:13.4940189Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A30%3A13Z&se=2025-02-27T00%3A30%3A13Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:30:13.4941068Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:30:08.135Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1255,13 +1170,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:47 GMT + - Wed, 26 Feb 2025 23:30:13 GMT mise-correlation-id: - - 44651ffd-2bd3-42b6-9f75-4a60b3568039 + - 4e0cd9bb-b5e6-40c6-89cf-486b34903e41 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220547Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003cpw + - 20250226T233013Z-167c755789dkxplchC1SG1rzhw000000020000000000dqf7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1279,12 +1194,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A52Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:52.4593642Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:52.4590862Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A52Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:52.45951Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A52Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:52.4598565Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:52.4599557Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A05%3A52Z&se=2025-02-24T23%3A05%3A52Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:05:52.4600722Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:36.761Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A18Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:18.7861713Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:30:18.7858933Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A18Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:18.7862567Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A18Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:18.7863579Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:30:18.7864485Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A30%3A18Z&se=2025-02-27T00%3A30%3A18Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:30:18.7866036Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:30:08.135Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1294,17 +1209,17 @@ interactions: connection: - keep-alive content-length: - - '5484' + - '5493' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:52 GMT + - Wed, 26 Feb 2025 23:30:19 GMT mise-correlation-id: - - 98af575f-9a4b-4647-98dd-37bc8ebe3db2 + - e4435432-1c1b-4b26-a6fc-bf4a07633285 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220552Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003d09 + - 20250226T233018Z-167c755789dkxplchC1SG1rzhw000000020000000000dr37 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1322,12 +1237,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A57Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:57.7105607Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:05:57.7101909Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A57Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:57.7107025Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A57Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:05:57.7108412Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A05%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:05:57.7109798Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A05%3A57Z&se=2025-02-24T23%3A05%3A57Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:05:57.711117Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:36.761Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A24Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:24.2994378Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:30:24.2984863Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A24Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:24.2997624Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A24Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:24.3000863Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:30:24.3004076Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A30%3A24Z&se=2025-02-27T00%3A30%3A24Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:30:24.3006678Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:30:08.135Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1337,17 +1252,17 @@ interactions: connection: - keep-alive content-length: - - '5487' + - '5481' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:05:57 GMT + - Wed, 26 Feb 2025 23:30:24 GMT mise-correlation-id: - - c82c0f5a-c80d-468d-a9ce-afa045c316b6 + - a70cf686-a3e5-4f1e-b891-e7e335a3b681 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220557Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003d8q + - 20250226T233024Z-167c755789dkxplchC1SG1rzhw000000020000000000dryg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1365,12 +1280,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A02Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:02.9705992Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:02.970298Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A02Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:02.9706766Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A02Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:02.9710992Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:02.9711765Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A02Z&se=2025-02-24T23%3A06%3A02Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:02.9714615Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:36.761Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A29Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:29.5640638Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:30:29.5636281Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A29Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:29.5642542Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A29Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:29.564456Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:30:29.5646403Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A30%3A29Z&se=2025-02-27T00%3A30%3A29Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:30:29.5648105Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:30:08.135Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1380,17 +1295,17 @@ interactions: connection: - keep-alive content-length: - - '5485' + - '5482' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:03 GMT + - Wed, 26 Feb 2025 23:30:29 GMT mise-correlation-id: - - 2c473a35-8090-4c55-b01e-9e3c4dc28bde + - 0292bbd3-fcbc-47ec-8277-29a2cf7328b0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220602Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003dpr + - 20250226T233029Z-167c755789dkxplchC1SG1rzhw000000020000000000dsm8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1408,12 +1323,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A08Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:08.2377057Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:08.2372326Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A08Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:08.2379019Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A08Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:08.238056Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:08.2382148Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A08Z&se=2025-02-24T23%3A06%3A08Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:08.2383923Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:36.761Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A34Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:34.8249403Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:30:34.8233409Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A34Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:34.8250306Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A34Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:34.8255719Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:30:34.8258145Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A30%3A34Z&se=2025-02-27T00%3A30%3A34Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:30:34.8259072Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:30:08.135Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1427,13 +1342,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:08 GMT + - Wed, 26 Feb 2025 23:30:34 GMT mise-correlation-id: - - 36dbe672-a901-465c-8776-303ee8b393ba + - fc964c6e-49aa-4f59-92ca-b41279cb6d71 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220608Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003dyh + - 20250226T233034Z-167c755789dkxplchC1SG1rzhw000000020000000000dt4v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1451,12 +1366,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A13Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:13.4926786Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:13.4922684Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A13Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:13.4928467Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:13.4930289Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:13.4931984Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A13Z&se=2025-02-24T23%3A06%3A13Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:13.4933682Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:36.761Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A40Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:40.1038947Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:30:40.1033645Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A40Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:40.1040644Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A40Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:40.1042358Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:30:40.1044062Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A30%3A40Z&se=2025-02-27T00%3A30%3A40Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:30:40.1045771Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:30:08.135Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1466,17 +1381,17 @@ interactions: connection: - keep-alive content-length: - - '5492' + - '5487' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:13 GMT + - Wed, 26 Feb 2025 23:30:40 GMT mise-correlation-id: - - f96b7b12-8ce7-4546-bf70-b6b831a38087 + - 7610b17a-7927-4850-871f-0e5948385647 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220613Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003e7f + - 20250226T233039Z-167c755789dkxplchC1SG1rzhw000000020000000000dtn5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1494,12 +1409,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A18Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:18.7812202Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:18.780853Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A18Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:18.7813619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A18Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:18.7814738Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:18.781574Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A18Z&se=2025-02-24T23%3A06%3A18Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:18.7816917Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:36.761Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A45Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:45.3623319Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:30:45.3619436Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A45Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:45.3624962Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A45Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:45.3626129Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:30:45.3627534Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A30%3A45Z&se=2025-02-27T00%3A30%3A45Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:30:45.3628554Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:30:08.135Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1509,17 +1424,17 @@ interactions: connection: - keep-alive content-length: - - '5486' + - '5477' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:18 GMT + - Wed, 26 Feb 2025 23:30:45 GMT mise-correlation-id: - - 954cd40f-9d81-487b-ae18-7e5f5a219b76 + - dd2397c2-4c43-44a0-a49d-4ef45a51d0d7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220618Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003ehv + - 20250226T233045Z-167c755789dkxplchC1SG1rzhw000000020000000000du6b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1537,12 +1452,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A24Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:24.0425566Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:24.0423474Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A24Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:24.0426412Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A24Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:24.0427245Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:24.0427978Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A24Z&se=2025-02-24T23%3A06%3A24Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:24.0428796Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:36.761Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A50Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:50.6796489Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:30:50.678692Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A50Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:50.6798647Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A50Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:50.6801363Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:30:50.6803365Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A30%3A50Z&se=2025-02-27T00%3A30%3A50Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:30:50.6805495Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:30:08.135Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1552,17 +1467,17 @@ interactions: connection: - keep-alive content-length: - - '5488' + - '5492' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:24 GMT + - Wed, 26 Feb 2025 23:30:50 GMT mise-correlation-id: - - 6e68beb3-cd52-430c-aa27-4678fe635f88 + - ebd9c75e-391a-4230-b99d-a3c4b16b1c93 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220623Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003evc + - 20250226T233050Z-167c755789dkxplchC1SG1rzhw000000020000000000durn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1580,12 +1495,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A29Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:29.2974464Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:29.2971053Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A29Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:29.29758Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A29Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:29.297722Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:29.2978538Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A29Z&se=2025-02-24T23%3A06%3A29Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:29.2979868Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:05:36.761Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A55Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:55.9414952Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:30:55.941118Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A55Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:55.9416746Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:30:55.9418537Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A30%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:30:55.9420301Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A30%3A55Z&se=2025-02-27T00%3A30%3A55Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:30:55.9422052Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:30:08.135Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1595,17 +1510,17 @@ interactions: connection: - keep-alive content-length: - - '5487' + - '5480' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:29 GMT + - Wed, 26 Feb 2025 23:30:56 GMT mise-correlation-id: - - 4e3a2bd1-1f74-4580-878c-0f64059e499b + - ad360fb2-facd-41c0-aec7-97c49206379e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220629Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003f41 + - 20250226T233055Z-167c755789dkxplchC1SG1rzhw000000020000000000dvbe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1623,12 +1538,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A34Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:34.551172Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:34.550498Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A34Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:34.5514071Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A34Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:34.5516267Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:34.551835Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A34Z&se=2025-02-24T23%3A06%3A34Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:34.5520275Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"CONFIGURING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:31.419Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A01Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:01.2299062Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:31:01.229502Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A01Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:01.2301244Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:01.2302979Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:31:01.2304682Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A31%3A01Z&se=2025-02-27T00%3A31%3A01Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:31:01.2306584Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"CONFIGURING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:30:59.731Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1638,17 +1553,17 @@ interactions: connection: - keep-alive content-length: - - '5486' + - '5473' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:34 GMT + - Wed, 26 Feb 2025 23:31:01 GMT mise-correlation-id: - - c9735a0b-b852-4621-a5fd-8f0f84b0ee76 + - 3a9f3107-60db-4a68-96b1-7cdc1caaf61a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220634Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003ffq + - 20250226T233101Z-167c755789dkxplchC1SG1rzhw000000020000000000dvw0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1666,12 +1581,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A39Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:39.8075747Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:39.8072894Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A39Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:39.8076766Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A39Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:39.8077707Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:39.8078707Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A39Z&se=2025-02-24T23%3A06%3A39Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:39.8079684Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A06Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:06.4812677Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:31:06.4810012Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A06Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:06.4813664Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A06Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:06.4814604Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:31:06.4815536Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A31%3A06Z&se=2025-02-27T00%3A31%3A06Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:31:06.4816422Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"CONFIGURING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:30:59.731Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1681,17 +1596,17 @@ interactions: connection: - keep-alive content-length: - - '5479' + - '5486' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:40 GMT + - Wed, 26 Feb 2025 23:31:06 GMT mise-correlation-id: - - af7ddc3e-2936-49bc-992d-2eddaa52c8e1 + - 5ecf90eb-84d6-41d8-85ea-62a74bf03d78 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220639Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003ftd + - 20250226T233106Z-167c755789dkxplchC1SG1rzhw000000020000000000dwhe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1709,12 +1624,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A45Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:45.2214648Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:45.2208745Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A45Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:45.2216514Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A45Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:45.2218517Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:45.2220343Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A45Z&se=2025-02-24T23%3A06%3A45Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:45.2222496Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A11Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:11.7403955Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:31:11.7399896Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A11Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:11.7405446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A11Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:11.7406876Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:31:11.740826Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A31%3A11Z&se=2025-02-27T00%3A31%3A11Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:31:11.7409693Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1724,17 +1639,17 @@ interactions: connection: - keep-alive content-length: - - '5489' + - '5475' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:45 GMT + - Wed, 26 Feb 2025 23:31:11 GMT mise-correlation-id: - - 016c85a0-84dd-4d43-9c83-f237d9f20ab0 + - c5f51512-a997-4a5b-92af-a4a733acb668 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220645Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003g3g + - 20250226T233111Z-167c755789dkxplchC1SG1rzhw000000020000000000dx4h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1752,12 +1667,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A50Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:50.4740812Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:50.4736519Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A50Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:50.4742161Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A50Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:50.4743482Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:50.474506Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A50Z&se=2025-02-24T23%3A06%3A50Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:50.4746191Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A16Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:16.9990647Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:31:16.9987217Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A16Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:16.9991421Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:16.9992149Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:31:16.9992901Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A31%3A16Z&se=2025-02-27T00%3A31%3A16Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:31:16.9993617Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1767,17 +1682,17 @@ interactions: connection: - keep-alive content-length: - - '5486' + - '5482' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:50 GMT + - Wed, 26 Feb 2025 23:31:17 GMT mise-correlation-id: - - 16fab1c7-e46e-4f1a-9d2e-953637d1778c + - 23311bf9-feb4-4423-80e0-de8229af34ec strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220650Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003gef + - 20250226T233116Z-167c755789dkxplchC1SG1rzhw000000020000000000dxnr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1795,12 +1710,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A55Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:55.7377384Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:06:55.7374235Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A55Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:55.7378374Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:06:55.7379288Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A06%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:06:55.7380244Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A06%3A55Z&se=2025-02-24T23%3A06%3A55Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:06:55.7381142Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A22Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:22.2823208Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:31:22.2819464Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A22Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:22.2824616Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A22Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:22.2826046Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:31:22.2827442Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A31%3A22Z&se=2025-02-27T00%3A31%3A22Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:31:22.2828853Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1810,17 +1725,17 @@ interactions: connection: - keep-alive content-length: - - '5485' + - '5480' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:06:55 GMT + - Wed, 26 Feb 2025 23:31:22 GMT mise-correlation-id: - - 224fd105-2cbf-4af1-9668-32dc22ff5c88 + - 6189f2a4-cb2f-4294-9272-fe7a606a28b0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220655Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003gv1 + - 20250226T233122Z-167c755789dkxplchC1SG1rzhw000000020000000000dy70 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1838,12 +1753,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A00Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:00.991464Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:00.9912581Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A00Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:00.9915833Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:00.9916781Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:00.9917611Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A00Z&se=2025-02-24T23%3A07%3A00Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:00.9918492Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A27Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:27.5401754Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:31:27.5395334Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A27Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:27.5404973Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A27Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:27.5408118Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:31:27.5411623Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A31%3A27Z&se=2025-02-27T00%3A31%3A27Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:31:27.5414728Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1853,17 +1768,17 @@ interactions: connection: - keep-alive content-length: - - '5478' + - '5476' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:01 GMT + - Wed, 26 Feb 2025 23:31:27 GMT mise-correlation-id: - - 89afd54f-444e-4012-ba0f-b1e849e5ade3 + - b910a477-fc8f-4eb6-a0f9-0fd435007d9e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220700Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003h3e + - 20250226T233127Z-167c755789dkxplchC1SG1rzhw000000020000000000dz00 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1881,12 +1796,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A06Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:06.2454079Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:06.2448463Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A06Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:06.2455242Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A06Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:06.2456862Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:06.2457814Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A06Z&se=2025-02-24T23%3A07%3A06Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:06.2458988Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A32Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:32.8025193Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:31:32.8021226Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A32Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:32.8026614Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A32Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:32.8028052Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:31:32.8029499Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A31%3A32Z&se=2025-02-27T00%3A31%3A32Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:31:32.8030934Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1896,17 +1811,17 @@ interactions: connection: - keep-alive content-length: - - '5477' + - '5496' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:06 GMT + - Wed, 26 Feb 2025 23:31:32 GMT mise-correlation-id: - - 02f01f2a-b5df-4181-a31e-edab33ace574 + - 27bdc4a2-d7ad-4ce6-8b16-56b733fa485d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220706Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003hd9 + - 20250226T233132Z-167c755789dkxplchC1SG1rzhw000000020000000000dzpd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1924,12 +1839,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A11Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:11.5090145Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:11.5083707Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A11Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:11.5093046Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A11Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:11.5095805Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:11.5098657Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A11Z&se=2025-02-24T23%3A07%3A11Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:11.5101441Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A38Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:38.0541802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:31:38.0537683Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A38Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:38.0543299Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A38Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:38.0544536Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:31:38.0545943Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A31%3A38Z&se=2025-02-27T00%3A31%3A38Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:31:38.0547383Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1939,17 +1854,17 @@ interactions: connection: - keep-alive content-length: - - '5481' + - '5480' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:11 GMT + - Wed, 26 Feb 2025 23:31:38 GMT mise-correlation-id: - - 54465704-a560-49d3-a96d-609028f517ff + - 9838352a-b7ef-473b-8b71-db2c60468ea2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220711Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003hsn + - 20250226T233137Z-167c755789dkxplchC1SG1rzhw000000020000000000e04f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1967,12 +1882,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A16Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:16.7814663Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:16.7811168Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A16Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:16.7815586Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:16.7816512Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:16.7817423Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A16Z&se=2025-02-24T23%3A07%3A16Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:16.7818464Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A44Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:44.7090599Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:31:44.7085235Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A44Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:44.7092042Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A44Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:44.7093425Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:31:44.7094824Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A31%3A44Z&se=2025-02-27T00%3A31%3A44Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:31:44.7096157Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1982,17 +1897,17 @@ interactions: connection: - keep-alive content-length: - - '5489' + - '5478' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:16 GMT + - Wed, 26 Feb 2025 23:31:44 GMT mise-correlation-id: - - 5785ac24-c272-4d32-aae4-3e24a7ee25d7 + - 00a42a43-8e54-402f-b948-12eec0b81ce3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220716Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003k3h + - 20250226T233143Z-167c755789dkxplchC1SG1rzhw000000020000000000e0pz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2010,12 +1925,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A23Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:23.041877Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:23.0415007Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A23Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:23.0420281Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:23.0421733Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:23.0423369Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A23Z&se=2025-02-24T23%3A07%3A23Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:23.042462Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A49Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:49.9624479Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:31:49.9619477Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A49Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:49.9626394Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:49.9628269Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:31:49.9630205Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A31%3A49Z&se=2025-02-27T00%3A31%3A49Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:31:49.963219Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2025,17 +1940,17 @@ interactions: connection: - keep-alive content-length: - - '5471' + - '5479' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:23 GMT + - Wed, 26 Feb 2025 23:31:50 GMT mise-correlation-id: - - 3dc8e912-3624-4d79-96f9-cb3b8bb7ac1d + - aaa350dc-d32d-491a-a0f6-c4905f540cc0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220721Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003kd1 + - 20250226T233149Z-167c755789dkxplchC1SG1rzhw000000020000000000e1a4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2053,12 +1968,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A28Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:28.2980867Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:28.2977978Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A28Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:28.2981823Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:28.2983424Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:28.2984431Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A28Z&se=2025-02-24T23%3A07%3A28Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:28.2985368Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A55Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:55.2355538Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:31:55.2351707Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A55Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:55.2357079Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:31:55.2358412Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A31%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:31:55.2359956Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A31%3A55Z&se=2025-02-27T00%3A31%3A55Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:31:55.2361723Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2068,17 +1983,17 @@ interactions: connection: - keep-alive content-length: - - '5483' + - '5484' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:28 GMT + - Wed, 26 Feb 2025 23:31:55 GMT mise-correlation-id: - - d699daa2-533b-45e5-ba40-71c0a10dc2d1 + - e48a008d-b432-4aa9-af76-afa0ab9a7a7c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220728Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003ks8 + - 20250226T233155Z-167c755789dkxplchC1SG1rzhw000000020000000000e1xk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2096,12 +2011,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A33Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:33.5515081Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:33.5510889Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A33Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:33.5516077Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A33Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:33.5517044Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:33.5517994Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A33Z&se=2025-02-24T23%3A07%3A33Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:33.551895Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A00Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:00.489086Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:32:00.4886844Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A00Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:00.4891965Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:00.4893028Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:32:00.4894042Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A32%3A00Z&se=2025-02-27T00%3A32%3A00Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:32:00.4895057Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2111,17 +2026,17 @@ interactions: connection: - keep-alive content-length: - - '5488' + - '5483' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:33 GMT + - Wed, 26 Feb 2025 23:32:00 GMT mise-correlation-id: - - e34c2033-d2a1-431f-a6f2-9c2c8b708754 + - f5401fc4-c48e-4225-9a94-b4b0d9a42932 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220733Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003m6u + - 20250226T233200Z-167c755789dkxplchC1SG1rzhw000000020000000000e2dg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2139,12 +2054,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A38Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:38.8020919Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:38.8016753Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A38Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:38.8022856Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A38Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:38.8024961Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:38.8027132Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A38Z&se=2025-02-24T23%3A07%3A38Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:38.8029194Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A05Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:05.9039154Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:32:05.9036457Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A05Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:05.9039915Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:05.9040686Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:32:05.9041393Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A32%3A05Z&se=2025-02-27T00%3A32%3A05Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:32:05.9042069Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2154,17 +2069,17 @@ interactions: connection: - keep-alive content-length: - - '5487' + - '5492' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:38 GMT + - Wed, 26 Feb 2025 23:32:06 GMT mise-correlation-id: - - 2bc5569a-192d-472d-bb08-920e4b6cc366 + - d3ea2496-f7cb-4f3c-996a-275749ff0b56 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220738Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003mrn + - 20250226T233205Z-167c755789dkxplchC1SG1rzhw000000020000000000e2y5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2182,12 +2097,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A44Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:44.054658Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:44.0541849Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A44Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:44.0548579Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A44Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:44.0550298Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:44.0552073Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A44Z&se=2025-02-24T23%3A07%3A44Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:44.0553549Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A11Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:11.5016695Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:32:11.5012735Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A11Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:11.5017945Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A11Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:11.5019399Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:32:11.5020803Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A32%3A11Z&se=2025-02-27T00%3A32%3A11Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:32:11.5022223Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2197,17 +2112,17 @@ interactions: connection: - keep-alive content-length: - - '5490' + - '5478' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:44 GMT + - Wed, 26 Feb 2025 23:32:11 GMT mise-correlation-id: - - 1ce3ee53-6896-4185-997c-b59cdbc188da + - 81cca25e-8219-4849-9384-aac51396fb93 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220743Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003n3h + - 20250226T233211Z-167c755789dkxplchC1SG1rzhw000000020000000000e3ka x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2225,12 +2140,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A49Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:49.3077328Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:49.3072455Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A49Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:49.3079458Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A49Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:49.3081436Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:49.3083638Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A49Z&se=2025-02-24T23%3A07%3A49Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:49.3085549Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A16Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:16.7529967Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:32:16.7527817Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A16Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:16.7530871Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:16.7531731Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:32:16.7532582Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A32%3A16Z&se=2025-02-27T00%3A32%3A16Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:32:16.7533409Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2240,17 +2155,17 @@ interactions: connection: - keep-alive content-length: - - '5485' + - '5480' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:49 GMT + - Wed, 26 Feb 2025 23:32:16 GMT mise-correlation-id: - - f98e80bc-04fc-40e6-85a5-2686177fe2d5 + - 8958517c-fa27-4496-9d10-2289e04cd3cf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220749Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003nfb + - 20250226T233216Z-167c755789dkxplchC1SG1rzhw000000020000000000e41e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2268,12 +2183,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A54Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:54.5627892Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:54.5625185Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A54Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:54.5628621Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A54Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:54.5629278Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:54.5629903Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A54Z&se=2025-02-24T23%3A07%3A54Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:54.5630531Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A22Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:22.0083958Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:32:22.0078674Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A22Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:22.0085821Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A22Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:22.0087534Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:32:22.0089579Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A32%3A22Z&se=2025-02-27T00%3A32%3A22Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:32:22.0091733Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2283,17 +2198,17 @@ interactions: connection: - keep-alive content-length: - - '5479' + - '5482' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:54 GMT + - Wed, 26 Feb 2025 23:32:22 GMT mise-correlation-id: - - 6e5bd81c-6790-4c17-b984-f5fa4fbc4d95 + - a991c482-2a05-4cf4-aa42-487eca9e7d53 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220754Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003ntw + - 20250226T233221Z-167c755789dkxplchC1SG1rzhw000000020000000000e4kh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2311,12 +2226,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A59Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:59.8297595Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:07:59.8289266Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A59Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:59.829934Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A59Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:07:59.8300121Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A07%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:07:59.8301004Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A07%3A59Z&se=2025-02-24T23%3A07%3A59Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:07:59.8301838Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A27Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:27.2680998Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:32:27.2676858Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A27Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:27.2682438Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A27Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:27.2683918Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:32:27.2685485Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A32%3A27Z&se=2025-02-27T00%3A32%3A27Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:32:27.2686925Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2326,17 +2241,17 @@ interactions: connection: - keep-alive content-length: - - '5472' + - '5482' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:07:59 GMT + - Wed, 26 Feb 2025 23:32:27 GMT mise-correlation-id: - - 8061df21-5db7-4c88-aaa3-584259bbeaf6 + - c7f3550e-ce13-435f-8380-1fce90a9030b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220759Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003p2c + - 20250226T233227Z-167c755789dkxplchC1SG1rzhw000000020000000000e51s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2354,12 +2269,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A05Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:05.0825954Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:05.0822068Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A05Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:05.0827381Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:05.0828731Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:05.083011Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A05Z&se=2025-02-24T23%3A08%3A05Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:05.0831471Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A32Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:32.5290961Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:32:32.5288084Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A32Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:32.529194Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A32Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:32.5292906Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:32:32.5294095Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A32%3A32Z&se=2025-02-27T00%3A32%3A32Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:32:32.5295082Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2369,17 +2284,17 @@ interactions: connection: - keep-alive content-length: - - '5484' + - '5483' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:05 GMT + - Wed, 26 Feb 2025 23:32:32 GMT mise-correlation-id: - - 50152f0e-81a6-4c61-9848-ceb3d68a4351 + - f4123b96-f19d-482d-a1f2-c2fdb9d04f81 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220804Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003pbw + - 20250226T233232Z-167c755789dkxplchC1SG1rzhw000000020000000000e5g5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2397,12 +2312,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A10Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:10.3529785Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:10.3525301Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A10Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:10.3532372Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:10.3534405Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:10.353664Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A10Z&se=2025-02-24T23%3A08%3A10Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:10.3538386Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A37Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:37.7823674Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:32:37.7819245Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A37Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:37.7824982Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A37Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:37.7827507Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:32:37.7829578Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A32%3A37Z&se=2025-02-27T00%3A32%3A37Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:32:37.7831535Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2412,17 +2327,17 @@ interactions: connection: - keep-alive content-length: - - '5478' + - '5482' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:10 GMT + - Wed, 26 Feb 2025 23:32:37 GMT mise-correlation-id: - - 812de99b-052a-43e5-953b-7174d7977b37 + - aa501902-6838-437d-954c-1b2c084b4648 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220810Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003pnp + - 20250226T233237Z-167c755789dkxplchC1SG1rzhw000000020000000000e61r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2440,12 +2355,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A15Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:15.6048522Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:15.6045329Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A15Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:15.6049365Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:15.6050591Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:15.6051544Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A15Z&se=2025-02-24T23%3A08%3A15Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:15.6052479Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A43Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:43.033498Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:32:43.0332177Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A43Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:43.0336437Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A43Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:43.0337849Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:32:43.0339271Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A32%3A43Z&se=2025-02-27T00%3A32%3A43Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:32:43.0340666Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2455,17 +2370,17 @@ interactions: connection: - keep-alive content-length: - - '5481' + - '5469' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:15 GMT + - Wed, 26 Feb 2025 23:32:43 GMT mise-correlation-id: - - 527780d9-2595-4ed6-b84c-3891401fd30a + - db86d27b-1cd4-4e2c-afb8-d179f24cf67b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220815Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003py3 + - 20250226T233242Z-167c755789dkxplchC1SG1rzhw000000020000000000e6fk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2483,12 +2398,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A20Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:20.8546234Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:20.8543088Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A20Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:20.8547251Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A20Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:20.8548163Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:20.8549129Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A05%3A36Z&ske=2025-02-26T07%3A05%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A20Z&se=2025-02-24T23%3A08%3A20Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:20.8549992Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A48Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:48.2897225Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:32:48.2892324Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A48Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:48.2899144Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A48Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:48.2900742Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:32:48.2902336Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A32%3A48Z&se=2025-02-27T00%3A32%3A48Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:32:48.2903927Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2498,17 +2413,17 @@ interactions: connection: - keep-alive content-length: - - '5487' + - '5476' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:20 GMT + - Wed, 26 Feb 2025 23:32:48 GMT mise-correlation-id: - - ca05ef3d-c4d0-4b40-9e1e-dd68632dcbe9 + - 6f738dd0-6edc-4aa1-9c0f-e2acddfc3c3e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220820Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003q6y + - 20250226T233248Z-167c755789dkxplchC1SG1rzhw000000020000000000e6y3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2526,12 +2441,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A26Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:26.1060202Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:26.1056136Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A26Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:26.1061712Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A26Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:26.1063228Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:26.1064657Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A26Z&se=2025-02-24T23%3A08%3A26Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:26.1066119Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-24T22:05:36.477Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:06:36.702Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A53Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:53.5507423Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:32:53.5499675Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A53Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:53.5510886Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A53Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:53.5514289Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:32:53.5517764Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A32%3A53Z&se=2025-02-27T00%3A32%3A53Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:32:53.552032Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2025-02-26T23:30:07.923Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:31:07.341Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2541,17 +2456,17 @@ interactions: connection: - keep-alive content-length: - - '5493' + - '5479' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:26 GMT + - Wed, 26 Feb 2025 23:32:53 GMT mise-correlation-id: - - 0e3096e2-c305-4098-a2a6-760d5843e5b0 + - c8a9a90e-ae9a-43b5-b9d7-74aab13a6588 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220825Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003qex + - 20250226T233253Z-167c755789dkxplchC1SG1rzhw000000020000000000e7cn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2569,13 +2484,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Logs - and results files are being processed. Refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A31Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:31.3635037Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:31.3630809Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A31Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:31.3636069Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:31.3636989Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:31.3637876Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A31Z&se=2025-02-24T23%3A08%3A31Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:31.3638778Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2025-02-24T22:05:36.477Z","endDateTime":"2025-02-24T22:08:28.756Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:08:30.569Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Logs + and results files are being processed. Refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A58Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:58.8112819Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:32:58.8109812Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A58Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:58.8113808Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A58Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:32:58.8114766Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A32%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:32:58.8115718Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A32%3A58Z&se=2025-02-27T00%3A32%3A58Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:32:58.8116649Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2025-02-26T23:30:07.923Z","endDateTime":"2025-02-26T23:32:58.413Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:32:58.728Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2585,17 +2500,17 @@ interactions: connection: - keep-alive content-length: - - '5646' + - '5633' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:31 GMT + - Wed, 26 Feb 2025 23:32:58 GMT mise-correlation-id: - - 8481a7a5-f03f-4b01-a991-1f4d401052ad + - 7a147c9f-d0b2-4f0f-9931-331ad4ee042c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220831Z-r17775d4f98mc5fbhC1SG1vp2s000000140g000000003qs7 + - 20250226T233258Z-167c755789dkxplchC1SG1rzhw000000020000000000e7w3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2618,7 +2533,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:14.1292164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:14.1292164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:28:51.3669947Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:28:51.3669947Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2627,9 +2542,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:32 GMT + - Wed, 26 Feb 2025 23:32:59 GMT etag: - - '"4f01d6ed-0000-0200-0000-67bcecf50000"' + - '"8f01ffb5-0000-0200-0000-67bfa3cc0000"' expires: - '-1' pragma: @@ -2645,7 +2560,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8190C70847AA47818F44B26A893E88A1 Ref B: MAA201060514045 Ref C: 2025-02-24T22:08:31Z' + - 'Ref A: D0FC63F265674205B81323918AC326A7 Ref B: MAA201060515031 Ref C: 2025-02-26T23:32:59Z' status: code: 200 message: OK @@ -2659,14 +2574,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-12-01-preview&testId=update-test-case + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-12-01-preview&testId=update-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A33Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:33.299112Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:33.2986799Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A33Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:33.2992113Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A33Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:33.2995086Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:33.2995989Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A33Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:33.2998841Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A33Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:33.299984Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A33Z&se=2025-02-24T23%3A08%3A33Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:33.3001391Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2025-02-24T22:05:36.477Z","endDateTime":"2025-02-24T22:08:28.756Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:08:32.624Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A00Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:00.7883994Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:33:00.7879048Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A00Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:00.7887299Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:00.7888445Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:33:00.7892418Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A00Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:00.7893669Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A00Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:00.789694Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A33%3A00Z&se=2025-02-27T00%3A33%3A00Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:33:00.7898129Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2025-02-26T23:30:07.923Z","endDateTime":"2025-02-26T23:32:58.413Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:32:59.763Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -2676,17 +2591,17 @@ interactions: connection: - keep-alive content-length: - - '6847' + - '6829' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:33 GMT + - Wed, 26 Feb 2025 23:33:00 GMT mise-correlation-id: - - fd1f5639-3ea3-49a7-845f-ff942e0c93b0 + - 47f6ae98-fd22-435c-b2aa-360c32780ee6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220832Z-r17775d4f98jjkc6hC1SG1dcu800000008m0000000004sz1 + - 20250226T233300Z-167c755789dbhjzdhC1SG1t7h800000001vg0000000032a5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2709,7 +2624,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:14.1292164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:14.1292164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:28:51.3669947Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:28:51.3669947Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2718,9 +2633,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:54 GMT + - Wed, 26 Feb 2025 23:33:21 GMT etag: - - '"4f01d6ed-0000-0200-0000-67bcecf50000"' + - '"8f01ffb5-0000-0200-0000-67bfa3cc0000"' expires: - '-1' pragma: @@ -2736,7 +2651,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C4848A4A5BBC4A658FBBED72A5191190 Ref B: MAA201060514031 Ref C: 2025-02-24T22:08:53Z' + - 'Ref A: F9EE1778AAFB4F3A88653095970DA25E Ref B: MAA201060513027 Ref C: 2025-02-26T23:33:21Z' status: code: 200 message: OK @@ -2750,14 +2665,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A54Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:54.7560068Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:54.7556912Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A54Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:54.7561057Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A54Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:54.7562067Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:54.7563035Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A54Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:54.7563995Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A54Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:54.7564995Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A54Z&se=2025-02-24T23%3A08%3A54Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:54.7565959Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2025-02-24T22:05:36.477Z","endDateTime":"2025-02-24T22:08:28.756Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:08:32.624Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A22Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:22.9203564Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:33:22.9198026Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A22Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:22.9205804Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A22Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:22.9208175Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:33:22.921055Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A22Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:22.9212876Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A22Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:22.9215083Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A33%3A22Z&se=2025-02-27T00%3A33%3A22Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:33:22.921744Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2025-02-26T23:30:07.923Z","endDateTime":"2025-02-26T23:32:58.413Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:32:59.763Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2767,17 +2682,17 @@ interactions: connection: - keep-alive content-length: - - '6823' + - '6824' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:54 GMT + - Wed, 26 Feb 2025 23:33:23 GMT mise-correlation-id: - - d1d4d5d2-9d59-427c-883e-68ddf7bceca7 + - 70b87503-0415-4860-8c1d-4530b9178ce5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220854Z-r17775d4f98kr5knhC1SG1nvrw00000007xg000000000z5r + - 20250226T233322Z-167c755789dw9d62hC1SG1x2v800000001sg000000007h1v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2800,15 +2715,15 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A55Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:55.1910433Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:55.1902338Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A55Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:55.1912914Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:55.1915483Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:55.1917939Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A55Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:55.1920528Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A55Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:55.1923004Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A55Z&se=2025-02-24T23%3A08%3A55Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:55.1925488Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2025-02-24T22:05:36.477Z","endDateTime":"2025-02-24T22:08:28.756Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:08:55.177Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A23Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:23.3551454Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:33:23.3546939Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A23Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:23.3553206Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:23.3554915Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:33:23.3556693Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A23Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:23.3558414Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A23Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:23.3560482Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A33%3A23Z&se=2025-02-27T00%3A33%3A23Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:33:23.3562218Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2025-02-26T23:30:07.923Z","endDateTime":"2025-02-26T23:32:58.413Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:33:23.345Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2818,17 +2733,17 @@ interactions: connection: - keep-alive content-length: - - '6867' + - '6882' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:55 GMT + - Wed, 26 Feb 2025 23:33:23 GMT mise-correlation-id: - - 2f2bf198-979e-4852-81df-aa7f040efd89 + - 7477f9a8-2b08-4b54-b041-bc9821b4a324 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220854Z-r17775d4f98kr5knhC1SG1nvrw00000007xg000000000z6z + - 20250226T233323Z-167c755789dw9d62hC1SG1x2v800000001sg000000007h3v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2846,15 +2761,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A55Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:55.4581463Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:55.4576812Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A55Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:55.4583644Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:55.4586061Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:55.4588082Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A55Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:55.4590248Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A55Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:55.4592261Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A55Z&se=2025-02-24T23%3A08%3A55Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:55.45945Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2025-02-24T22:05:36.477Z","endDateTime":"2025-02-24T22:08:28.756Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:08:55.177Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A23Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:23.6203071Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:33:23.6196929Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A23Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:23.6205385Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:23.6206242Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A23Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:33:23.6208394Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A23Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:23.6209606Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A23Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:23.6211128Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A33%3A23Z&se=2025-02-27T00%3A33%3A23Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:33:23.6214323Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2025-02-26T23:30:07.923Z","endDateTime":"2025-02-26T23:32:58.413Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:33:23.345Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2864,17 +2779,17 @@ interactions: connection: - keep-alive content-length: - - '6865' + - '6876' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:55 GMT + - Wed, 26 Feb 2025 23:33:23 GMT mise-correlation-id: - - fa7d50de-56a2-4785-9888-8bffe9dc1109 + - bdb78a42-ddea-42eb-9583-cda4dc794aa2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220855Z-r17775d4f98kr5knhC1SG1nvrw00000007xg000000000z7r + - 20250226T233323Z-167c755789dw9d62hC1SG1x2v800000001sg000000007h4x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2897,7 +2812,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:14.1292164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:14.1292164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:28:51.3669947Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:28:51.3669947Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2906,9 +2821,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:55 GMT + - Wed, 26 Feb 2025 23:33:24 GMT etag: - - '"4f01d6ed-0000-0200-0000-67bcecf50000"' + - '"8f01ffb5-0000-0200-0000-67bfa3cc0000"' expires: - '-1' pragma: @@ -2924,7 +2839,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9A0C7FBF60AC426F8DFB6F7A4DE70963 Ref B: MAA201060516051 Ref C: 2025-02-24T22:08:55Z' + - 'Ref A: 148429D5D5324730AC2D9881258143D8 Ref B: MAA201060513047 Ref C: 2025-02-26T23:33:23Z' status: code: 200 message: OK @@ -2938,15 +2853,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A56Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:56.4785598Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:56.478172Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A56Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:56.4786971Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A56Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:56.4788419Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:56.4789836Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A56Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:56.4791231Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A56Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:56.4792604Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A56Z&se=2025-02-24T23%3A08%3A56Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:56.479403Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2025-02-24T22:05:36.477Z","endDateTime":"2025-02-24T22:08:28.756Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:08:55.177Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A25Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:25.2506237Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:33:25.2497308Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A25Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:25.2510367Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A25Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:25.2513791Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:33:25.2516827Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A25Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:25.2521467Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A25Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:25.2524366Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A33%3A25Z&se=2025-02-27T00%3A33%3A25Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:33:25.2527173Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2025-02-26T23:30:07.923Z","endDateTime":"2025-02-26T23:32:58.413Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:33:23.345Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2956,17 +2871,17 @@ interactions: connection: - keep-alive content-length: - - '6871' + - '6882' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:56 GMT + - Wed, 26 Feb 2025 23:33:25 GMT mise-correlation-id: - - d70163b5-8c5b-434f-94c6-c8b1d36726c2 + - a38fa9b6-6f71-4dcb-bf9c-fd8f0c1cb648 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220856Z-r17775d4f98qp6vvhC1SG1r7180000000hn000000000bkr7 + - 20250226T233324Z-r17775d4f98mc5fbhC1SG1vp2s0000001a0g00000000nda2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2989,7 +2904,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:14.1292164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:14.1292164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:28:51.3669947Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:28:51.3669947Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2998,9 +2913,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:57 GMT + - Wed, 26 Feb 2025 23:33:26 GMT etag: - - '"4f01d6ed-0000-0200-0000-67bcecf50000"' + - '"8f01ffb5-0000-0200-0000-67bfa3cc0000"' expires: - '-1' pragma: @@ -3016,7 +2931,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F2DE50A5A8834D599E542FE59F27BC70 Ref B: MAA201060516031 Ref C: 2025-02-24T22:08:56Z' + - 'Ref A: F18B969E43004162824D56D8C44AEC43 Ref B: MAA201060515033 Ref C: 2025-02-26T23:33:25Z' status: code: 200 message: OK @@ -3030,15 +2945,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A57Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:57.9593927Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:57.9591033Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A57Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:57.9594847Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A57Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:57.9595765Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:57.9596646Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A57Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:57.9597571Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A57Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:57.9598444Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A57Z&se=2025-02-24T23%3A08%3A57Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:57.9599301Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2025-02-24T22:05:36.477Z","endDateTime":"2025-02-24T22:08:28.756Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:08:55.177Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A26Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:26.8229718Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:33:26.8225324Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A26Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:26.8231377Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A26Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:26.8233432Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:33:26.8235246Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A26Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:26.823724Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A26Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:26.823908Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A28Z&ske=2025-02-27T06%3A29%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A33%3A26Z&se=2025-02-27T00%3A33%3A26Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:33:26.8241091Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2025-02-26T23:30:07.923Z","endDateTime":"2025-02-26T23:32:58.413Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:33:23.345Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3048,17 +2963,17 @@ interactions: connection: - keep-alive content-length: - - '6875' + - '6866' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:58 GMT + - Wed, 26 Feb 2025 23:33:26 GMT mise-correlation-id: - - 0ce67213-95ae-45a8-bd9f-087a802f1266 + - a04ff858-d714-4b46-a82e-776da020e759 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220857Z-r17775d4f98p9dsnhC1SG1tym00000000e50000000001f8d + - 20250226T233326Z-167c755789d9f6qshC1SG1fkqn00000002kg000000003gq0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3080,15 +2995,15 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A58Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:58.3200977Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:58.3196669Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A58Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:58.3202095Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A58Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:58.3203378Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:58.3204662Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A58Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:58.3205955Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A58Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:58.3207262Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A58Z&se=2025-02-24T23%3A08%3A58Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:58.3208581Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2025-02-24T22:05:36.477Z","endDateTime":"2025-02-24T22:08:28.756Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:08:58.31Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A27Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:27.231248Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:33:27.2304805Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A27Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:27.2314456Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A27Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:27.2316338Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:33:27.2318285Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A27Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:27.2320193Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A27Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:27.2322157Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A33%3A27Z&se=2025-02-27T00%3A33%3A27Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:33:27.2323999Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2025-02-26T23:30:07.923Z","endDateTime":"2025-02-26T23:32:58.413Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:33:27.218Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3098,17 +3013,17 @@ interactions: connection: - keep-alive content-length: - - '6880' + - '6873' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:58 GMT + - Wed, 26 Feb 2025 23:33:27 GMT mise-correlation-id: - - c9d75257-906d-43fe-9a33-5034006feb8b + - b80b6a08-eb81-48e7-85cb-45c8140a8a74 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220858Z-r17775d4f98p9dsnhC1SG1tym00000000e50000000001f97 + - 20250226T233326Z-167c755789d9f6qshC1SG1fkqn00000002kg000000003gsr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3126,15 +3041,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A58Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:58.5892219Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:08:58.5889624Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A58Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:58.5892922Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A58Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:58.5893576Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:08:58.5894214Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A58Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:58.5894842Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A08%3A58Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:08:58.5895481Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A08%3A58Z&se=2025-02-24T23%3A08%3A58Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:08:58.5896104Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2025-02-24T22:05:36.477Z","endDateTime":"2025-02-24T22:08:28.756Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:08:58.31Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A27Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:27.5131926Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:33:27.5126906Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A27Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:27.5133952Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A27Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:27.5136047Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:33:27.5138176Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A27Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:27.5140232Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A27Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:27.5142199Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A33%3A27Z&se=2025-02-27T00%3A33%3A27Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:33:27.5144557Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2025-02-26T23:30:07.923Z","endDateTime":"2025-02-26T23:32:58.413Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:33:27.218Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3144,17 +3059,17 @@ interactions: connection: - keep-alive content-length: - - '6874' + - '6880' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:58 GMT + - Wed, 26 Feb 2025 23:33:27 GMT mise-correlation-id: - - 79837416-38e1-499a-ba4e-76e59b41ae52 + - fad3f342-1c40-484c-b7e4-fa4d0e864993 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220858Z-r17775d4f98p9dsnhC1SG1tym00000000e50000000001far + - 20250226T233327Z-167c755789d9f6qshC1SG1fkqn00000002kg000000003gue x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3177,7 +3092,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:14.1292164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:14.1292164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:28:51.3669947Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:28:51.3669947Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3186,9 +3101,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:58 GMT + - Wed, 26 Feb 2025 23:33:28 GMT etag: - - '"4f01d6ed-0000-0200-0000-67bcecf50000"' + - '"8f01ffb5-0000-0200-0000-67bfa3cc0000"' expires: - '-1' pragma: @@ -3204,7 +3119,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 776FCEFA0CE3448F93035FA3E9DF41C3 Ref B: MAA201060513017 Ref C: 2025-02-24T22:08:58Z' + - 'Ref A: 56C34074C30D4A63AFBFBF62ECAB9F8E Ref B: MAA201060516047 Ref C: 2025-02-26T23:33:27Z' status: code: 200 message: OK @@ -3218,15 +3133,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A00Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:00.0780678Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:00.0777883Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A00Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:00.0781573Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A00Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:00.0782496Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:00.0783477Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A00Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:00.089564Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A00Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:00.0897115Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A00Z&se=2025-02-24T23%3A09%3A00Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:00.089804Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2025-02-24T22:05:36.477Z","endDateTime":"2025-02-24T22:08:28.756Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:08:58.31Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A29Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:29.5206345Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:33:29.5200772Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A29Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:29.5208236Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A29Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:29.5210942Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:33:29.521285Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A29Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:29.5215391Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A29Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:29.5219864Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A29Z&ske=2025-02-27T06%3A29%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A33%3A29Z&se=2025-02-27T00%3A33%3A29Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:33:29.522179Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2025-02-26T23:30:07.923Z","endDateTime":"2025-02-26T23:32:58.413Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:33:27.218Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3236,17 +3151,17 @@ interactions: connection: - keep-alive content-length: - - '6878' + - '6876' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:00 GMT + - Wed, 26 Feb 2025 23:33:29 GMT mise-correlation-id: - - 4770fc52-40d9-47c1-94d6-b121e00315df + - 097838c3-aede-4a77-9360-94e364312cd9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220859Z-r17775d4f98p9dsnhC1SG1tym00000000e3g00000000419c + - 20250226T233328Z-r17775d4f98dvpdwhC1SG17y380000001a5g000000007wy9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3269,7 +3184,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:14.1292164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:14.1292164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:28:51.3669947Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:28:51.3669947Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3278,9 +3193,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:08:59 GMT + - Wed, 26 Feb 2025 23:33:29 GMT etag: - - '"4f01d6ed-0000-0200-0000-67bcecf50000"' + - '"8f01ffb5-0000-0200-0000-67bfa3cc0000"' expires: - '-1' pragma: @@ -3294,9 +3209,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: B34789AB978C494DA5BA664C67A576C9 Ref B: MAA201060513017 Ref C: 2025-02-24T22:09:00Z' + - 'Ref A: AFFB24C1516C4A9CB86DEC5E25198AF4 Ref B: MAA201060513023 Ref C: 2025-02-26T23:33:29Z' status: code: 200 message: OK @@ -3310,15 +3225,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.0685165Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:01.0681644Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.0686515Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.0687904Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.0689265Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.0690871Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.0692538Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A01Z&se=2025-02-24T23%3A09%3A01Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:01.0694262Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2025-02-24T22:05:36.477Z","endDateTime":"2025-02-24T22:08:28.756Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:08:58.31Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.0435959Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:33:31.0431454Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.043889Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.0439807Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.0440789Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.0442045Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.0443043Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A33%3A31Z&se=2025-02-27T00%3A33%3A31Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:33:31.0444032Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2025-02-26T23:30:07.923Z","endDateTime":"2025-02-26T23:32:58.413Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:33:27.218Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3328,17 +3243,17 @@ interactions: connection: - keep-alive content-length: - - '6888' + - '6865' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:01 GMT + - Wed, 26 Feb 2025 23:33:31 GMT mise-correlation-id: - - 1f21b851-980b-425b-9196-c9d87a88dc8d + - aa4e5852-a722-411d-b035-aa39d8cab26d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220900Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng000000003z66 + - 20250226T233330Z-167c755789dkxplchC1SG1rzhw00000001yg00000000h6dc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3361,15 +3276,15 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.4072583Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:01.4067842Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.4073812Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.4075674Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.4077211Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.4078754Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.4080326Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A52Z&ske=2025-02-25T05%3A04%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A01Z&se=2025-02-24T23%3A09%3A01Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:01.4081985Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description2","status":"FAILED","startDateTime":"2025-02-24T22:05:36.477Z","endDateTime":"2025-02-24T22:08:28.756Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:09:01.398Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.3895439Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:33:31.3890928Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.3897236Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.3899089Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.3900867Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.3902632Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.3904377Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A33%3A31Z&se=2025-02-27T00%3A33%3A31Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:33:31.3906408Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description2","status":"FAILED","startDateTime":"2025-02-26T23:30:07.923Z","endDateTime":"2025-02-26T23:32:58.413Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:33:31.381Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3379,17 +3294,17 @@ interactions: connection: - keep-alive content-length: - - '6881' + - '6882' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:01 GMT + - Wed, 26 Feb 2025 23:33:31 GMT mise-correlation-id: - - b530175b-8824-4f45-884b-08036a4c0662 + - e0fd29d5-f88f-4581-9104-b6d541689879 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220901Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng000000003z6u + - 20250226T233331Z-167c755789dkxplchC1SG1rzhw00000001yg00000000h6ew x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3407,15 +3322,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.6821243Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:01.681768Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.6822217Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.6823168Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.6824115Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.6825073Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A01Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:01.6826309Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A50Z&ske=2025-02-25T05%3A04%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A01Z&se=2025-02-24T23%3A09%3A01Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:01.6827291Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description2","status":"FAILED","startDateTime":"2025-02-24T22:05:36.477Z","endDateTime":"2025-02-24T22:08:28.756Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:09:01.398Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.663192Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:33:31.6629295Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.6632795Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.6633688Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.6635095Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.663602Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A31Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:31.6636916Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A29%3A46Z&ske=2025-02-27T06%3A29%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A33%3A31Z&se=2025-02-27T00%3A33%3A31Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:33:31.6637786Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description2","status":"FAILED","startDateTime":"2025-02-26T23:30:07.923Z","endDateTime":"2025-02-26T23:32:58.413Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:33:31.381Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3425,17 +3340,17 @@ interactions: connection: - keep-alive content-length: - - '6888' + - '6880' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:01 GMT + - Wed, 26 Feb 2025 23:33:31 GMT mise-correlation-id: - - b903d625-a31d-42b4-9d79-44dcfa0e5bde + - 01ea3954-e227-4974-85c9-e793710e5ea3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220901Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng000000003z7b + - 20250226T233331Z-167c755789dkxplchC1SG1rzhw00000001yg00000000h6fz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3458,7 +3373,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T22:04:14.1292164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T22:04:14.1292164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:28:51.3669947Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:28:51.3669947Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3467,9 +3382,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:02 GMT + - Wed, 26 Feb 2025 23:33:32 GMT etag: - - '"4f01d6ed-0000-0200-0000-67bcecf50000"' + - '"8f01ffb5-0000-0200-0000-67bfa3cc0000"' expires: - '-1' pragma: @@ -3485,7 +3400,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2CFB36CA94924E0B957185ABFF7CEADA Ref B: MAA201060515051 Ref C: 2025-02-24T22:09:01Z' + - 'Ref A: 800E8214770E448DAAE7D2B444469FC9 Ref B: MAA201060513045 Ref C: 2025-02-26T23:33:31Z' status: code: 200 message: OK @@ -3499,15 +3414,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://5a7d0767-9440-412a-aebe-d11664621757.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview + uri: https://ca9bccd5-7f27-4d4d-b329-6abe45b6e49b.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1ac29bdf-e8c2-4c5a-b869-e7897cb60cae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"5e675e9e-1dce-4233-af8e-5c9566d6e1ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"db1728e2-0f16-4cc5-b666-fcf8c8f0d1bd":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"69ff944c-5563-4bd5-ab0d-82e50ebf55c3":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a91e06ef-3956-4476-8e5f-7fa78d36d352":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"c427ca76-928d-4c65-a47f-c956d2550746":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"dbd70ca0-3d7b-428d-8b5b-737dfe8da055":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d1a17836-504b-4ba8-bf4b-8f3d85f9f6fc":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7526eab4-d711-4f25-a764-30cc4c28fc2a":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"febf1f33-4e2b-4b4a-8098-8858de964629":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"79644c45-fd16-4ea4-8c42-fdac3ce37695":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d41664d4-efb2-446a-a115-d97f943104ef":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No requests were sent from one or more engines during the test. Check your script - and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/bdb73459-5c7d-40c9-9b73-370b48139c7d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A03Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:03.6658042Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/9ea2d888-b5d7-4555-b40a-00c2035b4f90?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T23:09:03.6654684Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/610f15ee-768c-4dd6-b24c-9ecdee450a6a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A03Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:03.6659416Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/2ccaad50-0795-40c1-a9d2-0e0012bba1dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A03Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:03.6660839Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/4e96025c-e949-499c-9f7c-9157c8f120c3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T23:09:03.6662186Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A03Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:03.6663528Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/52fdbacc-0fab-458b-920e-bd146cb5d084/817328b4-af5a-4dd9-8461-9fce26fc1de9_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T23%3A09%3A03Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T23:09:03.6664873Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://nc7f4ofka6s72ul3ss77cldl.z47.blob.storage.azure.net/817328b4-af5a-4dd9-8461-9fce26fc1de9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T22%3A04%3A51Z&ske=2025-02-25T05%3A04%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-24T22%3A09%3A03Z&se=2025-02-24T23%3A09%3A03Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-24T23:09:03.6666266Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description2","status":"FAILED","startDateTime":"2025-02-24T22:05:36.477Z","endDateTime":"2025-02-24T22:08:28.756Z","executedDateTime":"2025-02-24T22:05:34.926Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-24T22:05:35.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T22:09:01.398Z","lastModifiedBy":"hbisht@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e703e353-52f3-4903-b862-912f8897abcc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A33Z&sr=b&sp=r&sig=***","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:33.1196611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/8215eceb-9450-4a89-995a-fa3b3b3fc67d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:33:33.1192969Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/2d6030f9-44d5-4f3b-938c-e7c0c50a01d0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A33Z&sr=b&sp=r&sig=***","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:33.1197994Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/e372938f-d536-4d96-a1ff-032c010fcabe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A33Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:33.1199367Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/f50e91d0-3511-497d-b74c-4645b1e5b7f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:33:33.1200733Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A33Z&sr=b&sp=r&sig=***","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:33.1202097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/68d8a26d-ed60-40c8-91a4-d00d69a1036b/7821f06e-81e6-4473-b9c0-492f361e5aae_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A33%3A33Z&sr=b&sp=r&sig=***","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:33:33.1203442Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://arouxfdtfwsbrwfg7jp4jhvt.z9.blob.storage.azure.net/7821f06e-81e6-4473-b9c0-492f361e5aae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A30%3A07Z&ske=2025-02-28T08%3A30%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2025-02-26T23%3A33%3A33Z&se=2025-02-27T00%3A33%3A33Z&sr=c&sp=rl&sig=***","expireDateTime":"2025-02-27T00:33:33.1204816Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","createdByType":"User","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description2","status":"FAILED","startDateTime":"2025-02-26T23:30:07.923Z","endDateTime":"2025-02-26T23:32:58.413Z","executedDateTime":"2025-02-26T23:30:06.864Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/update-test-case/testRunId/update-test-run-case","createdDateTime":"2025-02-26T23:30:07.148Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:33:31.381Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3517,17 +3432,17 @@ interactions: connection: - keep-alive content-length: - - '6885' + - '6886' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 22:09:03 GMT + - Wed, 26 Feb 2025 23:33:33 GMT mise-correlation-id: - - 8cb13a03-ee84-476f-baa7-d0301a767153 + - 90a63579-af10-44f8-bc38-4ce3c9c3fe4c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T220903Z-r17775d4f98drzbdhC1SG103a000000008e0000000001fyk + - 20250226T233332Z-r17775d4f98k7mk2hC1SG1n7700000000xx000000000emf3 x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_server_metric.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_server_metric.yaml index c5cf27af172..671d72c0df1 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_server_metric.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_server_metric.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003?api-version=2024-01-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","name":"clitestload000003","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2025-02-24T21:53:21.3969563Z","key2":"2025-02-24T21:53:21.3969563Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-02-24T21:53:21.5844574Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-02-24T21:53:21.5844574Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2025-02-24T21:53:21.2250817Z","primaryEndpoints":{"blob":"https://clitestload000003.blob.core.windows.net/","queue":"https://clitestload000003.queue.core.windows.net/","table":"https://clitestload000003.table.core.windows.net/","file":"https://clitestload000003.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","name":"clitestload000003","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2025-02-26T23:10:42.1661470Z","key2":"2025-02-26T23:10:42.1661470Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-02-26T23:10:42.1817734Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-02-26T23:10:42.1817734Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2025-02-26T23:10:41.9942757Z","primaryEndpoints":{"blob":"https://clitestload000003.blob.core.windows.net/","queue":"https://clitestload000003.queue.core.windows.net/","table":"https://clitestload000003.table.core.windows.net/","file":"https://clitestload000003.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:53:43 GMT + - Wed, 26 Feb 2025 23:11:04 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7A68BDF9B69A48B9AB0CD024AF9FBF54 Ref B: MAA201060513029 Ref C: 2025-02-24T21:53:43Z' + - 'Ref A: 7EE58B62E6134A38907A8B97FA703D29 Ref B: MAA201060513027 Ref C: 2025-02-26T23:11:05Z' status: code: 200 message: OK @@ -60,7 +60,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4756965Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4756965Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:10:05.3142639Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:10:05.3142639Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -69,9 +69,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:44 GMT + - Wed, 26 Feb 2025 23:11:06 GMT etag: - - '"4f015eb3-0000-0200-0000-67bcea420000"' + - '"8f01a46a-0000-0200-0000-67bf9f630000"' expires: - '-1' pragma: @@ -87,7 +87,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FEA5B13AC11A47FD89F231D0E905D689 Ref B: MAA201060513019 Ref C: 2025-02-24T21:53:44Z' + - 'Ref A: FE17DBB4E3404BDEAF3D88B588359EE1 Ref B: MAA201060513047 Ref C: 2025-02-26T23:11:05Z' status: code: 200 message: OK @@ -101,9 +101,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -117,15 +117,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:53:45 GMT + - Wed, 26 Feb 2025 23:11:06 GMT mise-correlation-id: - - 7a103399-99cf-4b9d-87aa-213b215ad13e + - 7befeacd-ad06-4dac-aa1e-88c33f164323 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215344Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007xwq + - 20250226T231106Z-167c755789dkxplchC1SG1rzhw000000020000000000a7fc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -141,17 +141,18 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"419a4125-c979-4565-95a8-264745f2ba36": + true}, "passFailCriteria": {"passFailMetrics": {"aaf12848-6474-4102-b8c2-bc5be6ef3282": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "52899d6f-719a-419b-9e8f-60de63ff01b7": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "97bac06a-7aa2-4cdf-ad54-8d9844effc25": + "78"}, "58b52638-0f57-4339-a033-0823de11fd3d": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "62541301-caa3-4d28-bd77-c4458c0f6a1f": {"aggregate": "p75", "clientMetric": "response_time_ms", "condition": ">", "value": - "380"}, "59019a04-146b-4c26-8d66-9bf0687ab54a": {"aggregate": "p99", "clientMetric": - "response_time_ms", "condition": ">", "value": "520"}, "b8072169-480b-4b6c-9046-84d9ffce2229": + "380"}, "233c69f2-0fed-4ec7-a79e-2c9b79aea6d1": {"aggregate": "p99", "clientMetric": + "response_time_ms", "condition": ">", "value": "520"}, "9b88d5f9-b54f-4af7-a507-7a435a514f84": {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", - "value": "540"}, "366c3f25-6056-4ef4-bce8-e6f97751e88f": {"aggregate": "avg", + "value": "540"}, "92e5b6d4-8f8d-4216-acdf-e8e81023596d": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -160,17 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"419a4125-c979-4565-95a8-264745f2ba36":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"52899d6f-719a-419b-9e8f-60de63ff01b7":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97bac06a-7aa2-4cdf-ad54-8d9844effc25":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"59019a04-146b-4c26-8d66-9bf0687ab54a":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"b8072169-480b-4b6c-9046-84d9ffce2229":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"366c3f25-6056-4ef4-bce8-e6f97751e88f":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"server-metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:45.773Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:53:45.773Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"aaf12848-6474-4102-b8c2-bc5be6ef3282":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"58b52638-0f57-4339-a033-0823de11fd3d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"62541301-caa3-4d28-bd77-c4458c0f6a1f":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"233c69f2-0fed-4ec7-a79e-2c9b79aea6d1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9b88d5f9-b54f-4af7-a507-7a435a514f84":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"92e5b6d4-8f8d-4216-acdf-e8e81023596d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"server-metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:11:07.133Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:07.133Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -182,15 +183,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:45 GMT + - Wed, 26 Feb 2025 23:11:07 GMT location: - - https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-12-01-preview + - https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-12-01-preview mise-correlation-id: - - c5b47570-42a9-4eb8-b83e-52bac4f090fc + - 4b31c5e8-b562-413d-9217-5b29057da7b3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215345Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007xy7 + - 20250226T231106Z-167c755789dkxplchC1SG1rzhw000000020000000000a7gu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -208,9 +209,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -227,13 +228,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:46 GMT + - Wed, 26 Feb 2025 23:11:07 GMT mise-correlation-id: - - 0e1f928b-3ff7-4e68-8d05-0174fa79513e + - 50e3ae80-f542-498d-be14-df4ff6e8c2bc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215345Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007xyv + - 20250226T231107Z-167c755789dkxplchC1SG1rzhw000000020000000000a7k7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -258,14 +259,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/d3f65a29-0ee5-43e4-a586-56886553eb5e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:03:47.5999301Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/dd0deb98-e8f2-4a32-b44d-a888ea26116c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A07Z&ske=2025-02-27T06%3A11%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A07Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:21:07.9609887Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -273,19 +274,19 @@ interactions: connection: - keep-alive content-length: - - '573' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:47 GMT + - Wed, 26 Feb 2025 23:11:08 GMT location: - - https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 3898ac9b-60a3-4574-9382-400350669995 + - 0ac376d0-1419-4177-b553-3866f373939c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215346Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007xzg + - 20250226T231107Z-167c755789dkxplchC1SG1rzhw000000020000000000a7m7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -303,12 +304,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/d3f65a29-0ee5-43e4-a586-56886553eb5e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:03:47.9091103Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/dd0deb98-e8f2-4a32-b44d-a888ea26116c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A08Z&ske=2025-02-27T06%3A11%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A08Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:21:08.2492891Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -318,17 +319,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:48 GMT + - Wed, 26 Feb 2025 23:11:08 GMT mise-correlation-id: - - 085d304f-aa84-414b-aed2-fd4624d06769 + - 03679ee1-1131-470e-aa94-223e4cf52727 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215347Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007y28 + - 20250226T231108Z-167c755789dkxplchC1SG1rzhw000000020000000000a7pr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -357,14 +358,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/c37238dc-cff1-4b85-848b-9e1102d49d87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:03:48.3617164Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/445e5a03-4d98-4a8a-b154-2164aaa31617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A08Z&ske=2025-02-27T06%3A11%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:21:08.6611668Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -372,19 +373,19 @@ interactions: connection: - keep-alive content-length: - - '565' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:48 GMT + - Wed, 26 Feb 2025 23:11:08 GMT location: - - https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - cd576555-2519-4942-b8c1-c26b185cb8da + - 5364bc6b-f15e-42cd-b01d-b1d32320015b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215348Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007y2z + - 20250226T231108Z-167c755789dkxplchC1SG1rzhw000000020000000000a7qg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -402,12 +403,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/c37238dc-cff1-4b85-848b-9e1102d49d87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:03:48.6306577Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/445e5a03-4d98-4a8a-b154-2164aaa31617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A08Z&ske=2025-02-27T06%3A11%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:21:08.944529Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -417,17 +418,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:48 GMT + - Wed, 26 Feb 2025 23:11:09 GMT mise-correlation-id: - - a3807747-cb9b-473b-b900-c9ac50d649ca + - 117af8e8-fbce-47f8-b00e-b5c0fe213da0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215348Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007y3v + - 20250226T231108Z-167c755789dkxplchC1SG1rzhw000000020000000000a7rt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -536,14 +537,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/22c44696-2fb9-4808-a311-d33aee3e0672?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:49.1086843Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/fb40b7a5-4142-4063-ad04-049047c2c4b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:10.1032541Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -551,19 +552,19 @@ interactions: connection: - keep-alive content-length: - - '561' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:49 GMT + - Wed, 26 Feb 2025 23:11:10 GMT location: - - https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - e00c0f0a-095f-49ec-89b9-91e6d2e0ea7b + - e17862f1-798e-433a-b011-0a141c75f05c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215348Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007y4p + - 20250226T231109Z-167c755789dkxplchC1SG1rzhw000000020000000000a7sv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -581,12 +582,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/22c44696-2fb9-4808-a311-d33aee3e0672?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:49.360717Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/fb40b7a5-4142-4063-ad04-049047c2c4b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A10Z&ske=2025-02-27T06%3A11%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:10.3894387Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -596,17 +597,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:49 GMT + - Wed, 26 Feb 2025 23:11:10 GMT mise-correlation-id: - - f2460834-0542-449a-b88a-4a4fb0f31a36 + - d6ef4d7e-0e10-4e38-9c0b-506c20288eff strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215349Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007y5v + - 20250226T231110Z-167c755789dkxplchC1SG1rzhw000000020000000000a7wm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -624,12 +625,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/22c44696-2fb9-4808-a311-d33aee3e0672?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:54.6165989Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/fb40b7a5-4142-4063-ad04-049047c2c4b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A07Z&ske=2025-02-27T06%3A11%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:15.6390511Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -639,17 +640,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:54 GMT + - Wed, 26 Feb 2025 23:11:15 GMT mise-correlation-id: - - 268347a7-2dc5-4887-bf7d-81e8f74fc990 + - b537e226-a20d-4143-bc53-1306c8755abf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215354Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007yg0 + - 20250226T231115Z-167c755789dkxplchC1SG1rzhw000000020000000000a8e3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -667,12 +668,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/22c44696-2fb9-4808-a311-d33aee3e0672?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A03%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:03:59.8680102Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/fb40b7a5-4142-4063-ad04-049047c2c4b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A08Z&ske=2025-02-27T06%3A11%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:20.9155332Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -682,17 +683,17 @@ interactions: connection: - keep-alive content-length: - - '567' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:53:59 GMT + - Wed, 26 Feb 2025 23:11:21 GMT mise-correlation-id: - - 1b1ec762-df5c-42bc-835b-632c2c0676e4 + - 232fdb39-1f61-4056-8d4b-cceebb644aef strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215359Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007yu1 + - 20250226T231120Z-167c755789dkxplchC1SG1rzhw000000020000000000a8z7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -710,12 +711,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/22c44696-2fb9-4808-a311-d33aee3e0672?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:05.1156452Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/fb40b7a5-4142-4063-ad04-049047c2c4b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A08Z&ske=2025-02-27T06%3A11%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:26.2101075Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -725,17 +726,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:05 GMT + - Wed, 26 Feb 2025 23:11:26 GMT mise-correlation-id: - - 4c8f9f04-819d-4da4-9b39-7af9084fe436 + - 98781755-7239-414c-8406-dac871e4716e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215404Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007z0r + - 20250226T231126Z-167c755789dkxplchC1SG1rzhw000000020000000000a9kx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -753,12 +754,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/22c44696-2fb9-4808-a311-d33aee3e0672?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A10Z&ske=2025-02-25T04%3A54%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:11.392677Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/fb40b7a5-4142-4063-ad04-049047c2c4b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A10Z&ske=2025-02-27T06%3A11%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:31.4649621Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -768,17 +769,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:11 GMT + - Wed, 26 Feb 2025 23:11:31 GMT mise-correlation-id: - - 73329e1d-a0ee-470c-815d-b8e8ac2812c9 + - 062a6c5e-6311-475b-ab64-225c6f66e976 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215410Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007z99 + - 20250226T231131Z-167c755789dkxplchC1SG1rzhw000000020000000000aa56 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -796,12 +797,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/22c44696-2fb9-4808-a311-d33aee3e0672?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A10Z&ske=2025-02-25T04%3A54%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:16.6454245Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/fb40b7a5-4142-4063-ad04-049047c2c4b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A08Z&ske=2025-02-27T06%3A11%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:36.7866351Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -815,13 +816,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:16 GMT + - Wed, 26 Feb 2025 23:11:36 GMT mise-correlation-id: - - 9ba641e5-e34d-4c57-8e07-91febd223e6d + - 81dd0328-3949-46a0-8d28-3f7dbbd661a0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215416Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007zk9 + - 20250226T231136Z-167c755789dkxplchC1SG1rzhw000000020000000000aamy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -839,12 +840,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/22c44696-2fb9-4808-a311-d33aee3e0672?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A48Z&ske=2025-02-25T04%3A53%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A04%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:04:22.2831129Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/fb40b7a5-4142-4063-ad04-049047c2c4b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A07Z&ske=2025-02-27T06%3A11%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:42.0483751Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -854,17 +855,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:22 GMT + - Wed, 26 Feb 2025 23:11:42 GMT mise-correlation-id: - - 281fb10e-5a76-4ea8-93f2-e0fe1e96c572 + - a4a7e26f-d085-4eb0-873f-2f76ac8700ca strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215421Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007zx0 + - 20250226T231141Z-167c755789dkxplchC1SG1rzhw000000020000000000ab3h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -882,13 +883,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"419a4125-c979-4565-95a8-264745f2ba36":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"52899d6f-719a-419b-9e8f-60de63ff01b7":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97bac06a-7aa2-4cdf-ad54-8d9844effc25":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"59019a04-146b-4c26-8d66-9bf0687ab54a":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"b8072169-480b-4b6c-9046-84d9ffce2229":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"366c3f25-6056-4ef4-bce8-e6f97751e88f":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/22c44696-2fb9-4808-a311-d33aee3e0672?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A21Z&ske=2025-02-25T04%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:54:22.5396545Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/d3f65a29-0ee5-43e4-a586-56886553eb5e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A21Z&ske=2025-02-25T04%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A22Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:54:22.5401504Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/c37238dc-cff1-4b85-848b-9e1102d49d87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A54%3A21Z&ske=2025-02-25T04%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:54:22.5403588Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"server-metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:45.773Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:21.433Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"aaf12848-6474-4102-b8c2-bc5be6ef3282":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"58b52638-0f57-4339-a033-0823de11fd3d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"62541301-caa3-4d28-bd77-c4458c0f6a1f":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"233c69f2-0fed-4ec7-a79e-2c9b79aea6d1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9b88d5f9-b54f-4af7-a507-7a435a514f84":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"92e5b6d4-8f8d-4216-acdf-e8e81023596d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/fb40b7a5-4142-4063-ad04-049047c2c4b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A08Z&ske=2025-02-27T06%3A11%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:11:42.3007614Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/dd0deb98-e8f2-4a32-b44d-a888ea26116c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A08Z&ske=2025-02-27T06%3A11%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A42Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:11:42.3013316Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/445e5a03-4d98-4a8a-b154-2164aaa31617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A08Z&ske=2025-02-27T06%3A11%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:11:42.3014909Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"server-metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:11:07.133Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:41.992Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -898,17 +899,17 @@ interactions: connection: - keep-alive content-length: - - '3377' + - '3373' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:22 GMT + - Wed, 26 Feb 2025 23:11:42 GMT mise-correlation-id: - - 803a8518-b1e0-4896-98b4-908896cfd074 + - 6d7fcfc0-649f-4f31-b781-b8362f3fbbe4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215422Z-r17775d4f984s8x2hC1SG1rtbn000000083g000000007zxx + - 20250226T231142Z-167c755789dkxplchC1SG1rzhw000000020000000000ab4h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -931,7 +932,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4756965Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4756965Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:10:05.3142639Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:10:05.3142639Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -940,9 +941,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:23 GMT + - Wed, 26 Feb 2025 23:11:42 GMT etag: - - '"4f015eb3-0000-0200-0000-67bcea420000"' + - '"8f01a46a-0000-0200-0000-67bf9f630000"' expires: - '-1' pragma: @@ -958,7 +959,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2902335E2B6B458F936CBD750679EEF9 Ref B: MAA201060514023 Ref C: 2025-02-24T21:54:22Z' + - 'Ref A: 17D2C0407F624C998E60E64635EF6190 Ref B: MAA201060513021 Ref C: 2025-02-26T23:11:42Z' status: code: 200 message: OK @@ -972,13 +973,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"419a4125-c979-4565-95a8-264745f2ba36":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"52899d6f-719a-419b-9e8f-60de63ff01b7":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"97bac06a-7aa2-4cdf-ad54-8d9844effc25":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"59019a04-146b-4c26-8d66-9bf0687ab54a":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"b8072169-480b-4b6c-9046-84d9ffce2229":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"366c3f25-6056-4ef4-bce8-e6f97751e88f":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/22c44696-2fb9-4808-a311-d33aee3e0672?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:54:24.6333933Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/d3f65a29-0ee5-43e4-a586-56886553eb5e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A24Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:54:24.6337637Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://b5l91l01ejw13304b0w5mym0.z11.blob.storage.azure.net/ef029577-741f-4aa8-a6b3-f7711ba5e18f/c37238dc-cff1-4b85-848b-9e1102d49d87?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A53%3A47Z&ske=2025-02-25T04%3A53%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A54%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:54:24.6339061Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"server-metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:53:45.773Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:21.433Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"aaf12848-6474-4102-b8c2-bc5be6ef3282":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"58b52638-0f57-4339-a033-0823de11fd3d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"62541301-caa3-4d28-bd77-c4458c0f6a1f":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"233c69f2-0fed-4ec7-a79e-2c9b79aea6d1":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9b88d5f9-b54f-4af7-a507-7a435a514f84":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"92e5b6d4-8f8d-4216-acdf-e8e81023596d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/fb40b7a5-4142-4063-ad04-049047c2c4b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A07Z&ske=2025-02-27T06%3A11%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:11:43.823533Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/dd0deb98-e8f2-4a32-b44d-a888ea26116c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A07Z&ske=2025-02-27T06%3A11%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A43Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:11:43.8240263Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cniuc3pg7vtwv29j705ka49i.z20.blob.storage.azure.net/8245f1d9-ceb6-4fa1-810f-14e48bc28b85/445e5a03-4d98-4a8a-b154-2164aaa31617?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A07Z&ske=2025-02-27T06%3A11%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:11:43.8241631Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"server-metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:11:07.133Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:41.992Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -988,17 +989,17 @@ interactions: connection: - keep-alive content-length: - - '3387' + - '3390' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:24 GMT + - Wed, 26 Feb 2025 23:11:43 GMT mise-correlation-id: - - 1cc76cb3-5f5c-4c94-a68b-bb682207bb4b + - 06ff00fd-5e88-4139-9112-60aee2d30743 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215424Z-r17775d4f98dvpdwhC1SG17y38000000141g000000000m41 + - 20250226T231143Z-167c755789dbhjzdhC1SG1t7h800000001tg000000004dfm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1021,7 +1022,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4756965Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4756965Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:10:05.3142639Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:10:05.3142639Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1030,9 +1031,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:25 GMT + - Wed, 26 Feb 2025 23:11:44 GMT etag: - - '"4f015eb3-0000-0200-0000-67bcea420000"' + - '"8f01a46a-0000-0200-0000-67bf9f630000"' expires: - '-1' pragma: @@ -1048,14 +1049,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 52C2D7F942ED42B88ABD3D4C85E8DCC8 Ref B: MAA201060516039 Ref C: 2025-02-24T21:54:24Z' + - 'Ref A: 1C89BA484EAC432988F344CB375E30FF Ref B: MAA201060515037 Ref C: 2025-02-26T23:11:44Z' status: code: 200 message: OK - request: - body: '{"testId": "server-metric-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-bsup5vsb5poeuo6ir/providers/Microsoft.Storage/storageAccounts/clitestloadiceqhvbwh": - {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-bsup5vsb5poeuo6ir/providers/Microsoft.Storage/storageAccounts/clitestloadiceqhvbwh", - "resourceName": "clitestloadiceqhvbwh", "resourceType": "Microsoft.Storage/storageAccounts", + body: '{"testId": "server-metric-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-g2ejkbsdvns4k22u4/providers/Microsoft.Storage/storageAccounts/clitestloadg5ccsfb7y": + {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-g2ejkbsdvns4k22u4/providers/Microsoft.Storage/storageAccounts/clitestloadg5ccsfb7y", + "resourceName": "clitestloadg5ccsfb7y", "resourceType": "Microsoft.Storage/storageAccounts", "kind": "Storage"}}}' headers: Accept: @@ -1067,14 +1068,14 @@ interactions: Content-Length: - '513' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/merge-patch+json method: PATCH - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-12-01-preview response: body: - string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"server-metric-test-case","createdDateTime":"2025-02-24T21:54:26.708Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:26.708Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"server-metric-test-case","createdDateTime":"2025-02-26T23:11:45.764Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:45.764Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1086,15 +1087,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:26 GMT + - Wed, 26 Feb 2025 23:11:45 GMT location: - - https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-12-01-preview + - https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-12-01-preview mise-correlation-id: - - d4fcd2c9-8ad2-4529-9642-52cb6832966f + - 1f171cb4-53be-47c1-8cc3-075a398815b7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215426Z-r17775d4f98drzbdhC1SG103a000000008e00000000006gc + - 20250226T231145Z-167c755789d9f6qshC1SG1fkqn00000002gg000000005aam x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1117,7 +1118,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4756965Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4756965Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:10:05.3142639Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:10:05.3142639Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1126,9 +1127,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:27 GMT + - Wed, 26 Feb 2025 23:11:46 GMT etag: - - '"4f015eb3-0000-0200-0000-67bcea420000"' + - '"8f01a46a-0000-0200-0000-67bf9f630000"' expires: - '-1' pragma: @@ -1144,7 +1145,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DD58347CCD604B9D98D7AE96FC921E93 Ref B: MAA201060514045 Ref C: 2025-02-24T21:54:27Z' + - 'Ref A: 1C7699D70AD142609CB6695C8FB27E13 Ref B: MAA201060515051 Ref C: 2025-02-26T23:11:46Z' status: code: 200 message: OK @@ -1158,12 +1159,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-12-01-preview response: body: - string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"server-metric-test-case","createdDateTime":"2025-02-24T21:54:26.708Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:26.708Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"components":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","resourceName":"clitestload000003","resourceType":"Microsoft.Storage/storageAccounts","resourceGroup":"clitest-load-000001","subscriptionId":"7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a","kind":"Storage"}},"testId":"server-metric-test-case","createdDateTime":"2025-02-26T23:11:45.764Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:45.764Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1177,13 +1178,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:28 GMT + - Wed, 26 Feb 2025 23:11:48 GMT mise-correlation-id: - - 29abe1a0-fcea-40f9-87c7-a5586224e962 + - ea97d2f1-e276-4297-89f0-e1bd54d5df68 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215428Z-r17775d4f98jjkc6hC1SG1dcu800000008gg000000007pz9 + - 20250226T231147Z-167c755789djnhhnhC1SG1sch000000002cg00000000crs0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1206,7 +1207,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4756965Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4756965Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:10:05.3142639Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:10:05.3142639Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1215,9 +1216,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:29 GMT + - Wed, 26 Feb 2025 23:11:49 GMT etag: - - '"4f015eb3-0000-0200-0000-67bcea420000"' + - '"8f01a46a-0000-0200-0000-67bf9f630000"' expires: - '-1' pragma: @@ -1233,14 +1234,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 059C78EECEC445C2B4B03754F192951A Ref B: MAA201060514035 Ref C: 2025-02-24T21:54:29Z' + - 'Ref A: 8DCCF1A49E7F42F7BF0C186812E34239 Ref B: MAA201060516053 Ref C: 2025-02-26T23:11:48Z' status: code: 200 message: OK - request: - body: '{"testId": "server-metric-test-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-bsup5vsb5poeuo6ir/providers/Microsoft.Storage/storageAccounts/clitestloadiceqhvbwh/providers/microsoft.insights/metricdefinitions/Availability": + body: '{"testId": "server-metric-test-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-g2ejkbsdvns4k22u4/providers/Microsoft.Storage/storageAccounts/clitestloadg5ccsfb7y/providers/microsoft.insights/metricdefinitions/Availability": {"name": " Availability", "metricNamespace": "microsoft.storage/storageaccounts", - "aggregation": "Average", "resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-bsup5vsb5poeuo6ir/providers/Microsoft.Storage/storageAccounts/clitestloadiceqhvbwh", + "aggregation": "Average", "resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-g2ejkbsdvns4k22u4/providers/Microsoft.Storage/storageAccounts/clitestloadg5ccsfb7y", "resourceType": "Microsoft.Storage/storageAccounts"}}}' headers: Accept: @@ -1252,16 +1253,16 @@ interactions: Content-Length: - '618' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/merge-patch+json method: PATCH - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-12-01-preview response: body: string: '{"testId":"server-metric-test-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/Availability":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/ Availability","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":" - Availability","aggregation":"Average","resourceType":"Microsoft.Storage/storageAccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2025-02-24T21:54:26.729Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:30.685Z","lastModifiedBy":"hbisht@microsoft.com"}' + Availability","aggregation":"Average","resourceType":"Microsoft.Storage/storageAccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2025-02-26T23:11:45.79Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:50.476Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1271,17 +1272,17 @@ interactions: connection: - keep-alive content-length: - - '3235' + - '3234' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:30 GMT + - Wed, 26 Feb 2025 23:11:50 GMT mise-correlation-id: - - 3a879d2d-f741-42a7-8c1b-df4d1e9afd3b + - e9160c53-7684-45f5-b1fd-20a1073d252c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215430Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006148 + - 20250226T231149Z-r17775d4f98k7mk2hC1SG1n7700000000xyg000000007e16 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1304,7 +1305,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4756965Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4756965Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:10:05.3142639Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:10:05.3142639Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1313,9 +1314,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:31 GMT + - Wed, 26 Feb 2025 23:11:51 GMT etag: - - '"4f015eb3-0000-0200-0000-67bcea420000"' + - '"8f01a46a-0000-0200-0000-67bf9f630000"' expires: - '-1' pragma: @@ -1331,7 +1332,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BE034BAB9022499FAC4349D5A82A428B Ref B: MAA201060515035 Ref C: 2025-02-24T21:54:31Z' + - 'Ref A: 052DE36D66174F6BA78F53E878C6CD9C Ref B: MAA201060513051 Ref C: 2025-02-26T23:11:50Z' status: code: 200 message: OK @@ -1345,14 +1346,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-12-01-preview response: body: string: '{"testId":"server-metric-test-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/Availability":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/ Availability","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":" - Availability","aggregation":"Average","resourceType":"Microsoft.Storage/storageAccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2025-02-24T21:54:26.729Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:30.685Z","lastModifiedBy":"hbisht@microsoft.com"}' + Availability","aggregation":"Average","resourceType":"Microsoft.Storage/storageAccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2025-02-26T23:11:45.79Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:50.476Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1362,17 +1363,17 @@ interactions: connection: - keep-alive content-length: - - '3235' + - '3234' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:33 GMT + - Wed, 26 Feb 2025 23:11:52 GMT mise-correlation-id: - - e598c285-be25-4aa7-bd7d-bf86245e3b1f + - 9444913e-34ca-44af-a7b3-5873be071adc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215432Z-r17775d4f98kr5knhC1SG1nvrw00000007w0000000001mpe + - 20250226T231151Z-167c755789drsd6jhC1SG13zv400000000yg00000000gvb2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1395,7 +1396,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4756965Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4756965Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:10:05.3142639Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:10:05.3142639Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1404,9 +1405,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:33 GMT + - Wed, 26 Feb 2025 23:11:53 GMT etag: - - '"4f015eb3-0000-0200-0000-67bcea420000"' + - '"8f01a46a-0000-0200-0000-67bf9f630000"' expires: - '-1' pragma: @@ -1422,12 +1423,12 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 80A0BCE401634969A9E9F261043D3886 Ref B: MAA201060514047 Ref C: 2025-02-24T21:54:33Z' + - 'Ref A: 572105B8C920456BA8D90951260C96F5 Ref B: MAA201060513049 Ref C: 2025-02-26T23:11:52Z' status: code: 200 message: OK - request: - body: '{"testId": "server-metric-test-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-bsup5vsb5poeuo6ir/providers/Microsoft.Storage/storageAccounts/clitestloadiceqhvbwh/providers/microsoft.insights/metricdefinitions/Availability": + body: '{"testId": "server-metric-test-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-g2ejkbsdvns4k22u4/providers/Microsoft.Storage/storageAccounts/clitestloadg5ccsfb7y/providers/microsoft.insights/metricdefinitions/Availability": null}}' headers: Accept: @@ -1439,14 +1440,14 @@ interactions: Content-Length: - '282' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/merge-patch+json method: PATCH - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-12-01-preview response: body: - string: '{"testId":"server-metric-test-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2025-02-24T21:54:26.729Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:34.835Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"testId":"server-metric-test-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2025-02-26T23:11:45.79Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:54.558Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1456,17 +1457,17 @@ interactions: connection: - keep-alive content-length: - - '2489' + - '2488' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:34 GMT + - Wed, 26 Feb 2025 23:11:54 GMT mise-correlation-id: - - 671fdc1b-6e4c-479d-bc94-3d1b7c730db5 + - f153c182-b7a3-4563-8ca2-db3cd0e30b5a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215434Z-r17775d4f98v6wd6hC1SG1230n00000008pg000000007m7v + - 20250226T231153Z-167c755789dbzxjrhC1SG1x06c00000002cg00000000dknt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1489,7 +1490,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:52:44.4756965Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:52:44.4756965Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:10:05.3142639Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:10:05.3142639Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1498,9 +1499,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:36 GMT + - Wed, 26 Feb 2025 23:11:55 GMT etag: - - '"4f015eb3-0000-0200-0000-67bcea420000"' + - '"8f01a46a-0000-0200-0000-67bf9f630000"' expires: - '-1' pragma: @@ -1516,7 +1517,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 93BAC3CDC034476E9A04FB64D5779CB8 Ref B: MAA201060513019 Ref C: 2025-02-24T21:54:35Z' + - 'Ref A: 1DDD8B6BA9BD4359B1D8073DFBACE1A1 Ref B: MAA201060514037 Ref C: 2025-02-26T23:11:54Z' status: code: 200 message: OK @@ -1530,12 +1531,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://6d46bf25-1f64-49e0-a129-179687662131.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-12-01-preview + uri: https://58dcc830-0b8c-4ae7-9299-b975a1bfd33b.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-12-01-preview response: body: - string: '{"testId":"server-metric-test-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2025-02-24T21:54:26.729Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:54:34.835Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"testId":"server-metric-test-case","metrics":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessE2ELatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessE2ELatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/UsedCapacity","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"UsedCapacity","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003/providers/microsoft.insights/metricdefinitions/SuccessServerLatency","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003","metricNamespace":"microsoft.storage/storageaccounts","name":"SuccessServerLatency","aggregation":"Average","resourceType":"microsoft.storage/storageaccounts"}},"createdDateTime":"2025-02-26T23:11:45.79Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:54.558Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1545,17 +1546,17 @@ interactions: connection: - keep-alive content-length: - - '2489' + - '2488' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:54:37 GMT + - Wed, 26 Feb 2025 23:11:55 GMT mise-correlation-id: - - 152ee84b-7ceb-4aaa-98b1-61402a148e1c + - bbc5227c-cb97-42c1-8260-b264d30e3fac strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215437Z-r17775d4f98t9jlfhC1SG10apg000000082g00000000b561 + - 20250226T231155Z-167c755789dw9d62hC1SG1x2v800000001sg0000000049vx x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_show.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_show.yaml index e003101076f..e2a3a2880e3 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_show.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_show.yaml @@ -14,7 +14,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:54:55.1193447Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:54:55.1193447Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:10:33.2889124Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:10:33.2889124Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -23,9 +23,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:27 GMT + - Wed, 26 Feb 2025 23:11:06 GMT etag: - - '"4f0105be-0000-0200-0000-67bceac40000"' + - '"8f01ab6c-0000-0200-0000-67bf9f800000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 21C1EE9314DA483999ECE4A0A242331F Ref B: MAA201060515051 Ref C: 2025-02-24T21:55:28Z' + - 'Ref A: 510D1B58769C4DDCA199B428414B9524 Ref B: MAA201060513023 Ref C: 2025-02-26T23:11:06Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-12-01-preview + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -71,15 +71,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:55:29 GMT + - Wed, 26 Feb 2025 23:11:07 GMT mise-correlation-id: - - f71b5a7a-3abc-47a2-8ed1-e87534c89e43 + - 3d60782d-9a51-4430-9ca7-3a0ccb6ad16a strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215528Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005qe1 + - 20250226T231107Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cv0f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -95,17 +95,18 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"6417ecca-ea05-4052-bd62-54259686cbf5": + true}, "passFailCriteria": {"passFailMetrics": {"ef099c20-c726-4504-b230-b2065521c55d": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "eb2073ce-e5f9-4b91-9cc9-1a5c7b3637d3": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "ccb416d3-0910-4b07-b90e-2c4dc21e2a88": + "78"}, "d707516a-0ba0-42bf-855d-bfe08c428bd8": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "1e6b4340-21e4-40ce-83e5-ff9a87cf1531": {"aggregate": "p75", "clientMetric": "response_time_ms", "condition": ">", "value": - "380"}, "7ef53edd-ecad-46d4-82c7-ff336be43f6f": {"aggregate": "p99", "clientMetric": - "response_time_ms", "condition": ">", "value": "520"}, "8e61c8fd-4627-4185-878e-02c0188e8b4d": + "380"}, "75b8744d-7796-4107-9ba0-e729a599702f": {"aggregate": "p99", "clientMetric": + "response_time_ms", "condition": ">", "value": "520"}, "0c47fa07-c941-4730-9f73-67df636fb5b0": {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", - "value": "540"}, "9cfca168-08e6-442b-8910-251cb8fd9708": {"aggregate": "avg", + "value": "540"}, "86b49706-05a5-42d0-a44e-72422b205266": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,17 +115,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-12-01-preview + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6417ecca-ea05-4052-bd62-54259686cbf5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"eb2073ce-e5f9-4b91-9cc9-1a5c7b3637d3":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ccb416d3-0910-4b07-b90e-2c4dc21e2a88":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"7ef53edd-ecad-46d4-82c7-ff336be43f6f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"8e61c8fd-4627-4185-878e-02c0188e8b4d":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"9cfca168-08e6-442b-8910-251cb8fd9708":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:55:29.822Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:55:29.822Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"ef099c20-c726-4504-b230-b2065521c55d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d707516a-0ba0-42bf-855d-bfe08c428bd8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1e6b4340-21e4-40ce-83e5-ff9a87cf1531":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"75b8744d-7796-4107-9ba0-e729a599702f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0c47fa07-c941-4730-9f73-67df636fb5b0":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"86b49706-05a5-42d0-a44e-72422b205266":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:11:08.547Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:08.547Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -136,15 +137,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:29 GMT + - Wed, 26 Feb 2025 23:11:08 GMT location: - - https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-12-01-preview + - https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-12-01-preview mise-correlation-id: - - 73275692-1173-45ca-9072-7af29cb4c0ac + - afbb6350-061c-47ab-823e-0d9997dbaf87 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215529Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005qf8 + - 20250226T231107Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cv17 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -162,9 +163,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files?api-version=2024-12-01-preview + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -181,13 +182,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:30 GMT + - Wed, 26 Feb 2025 23:11:08 GMT mise-correlation-id: - - e13fb2b3-f272-469f-a8e0-91451ba290aa + - 21623123-4a04-4270-8e93-91d7dda82d3a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215529Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005qg1 + - 20250226T231108Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cv30 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -212,14 +213,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/b7ddc20e-27ec-48bd-a37e-c2a8e7ffec93?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A30Z&ske=2025-02-25T04%3A55%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:05:31.3513048Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/3a4090b2-bb1b-4e3a-bd38-d78c155115dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A09Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:21:09.3907346Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -227,19 +228,19 @@ interactions: connection: - keep-alive content-length: - - '575' + - '570' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:31 GMT + - Wed, 26 Feb 2025 23:11:09 GMT location: - - https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 8e694ee0-b156-40b8-9039-f791e4741ba8 + - f11281b3-7817-42da-8fac-69e8e61bbdd0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215530Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005qgp + - 20250226T231108Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cv45 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -257,12 +258,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/b7ddc20e-27ec-48bd-a37e-c2a8e7ffec93?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A31Z&ske=2025-02-25T04%3A55%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:05:31.6373885Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/3a4090b2-bb1b-4e3a-bd38-d78c155115dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A09Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:21:09.6990401Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -272,17 +273,17 @@ interactions: connection: - keep-alive content-length: - - '575' + - '570' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:31 GMT + - Wed, 26 Feb 2025 23:11:09 GMT mise-correlation-id: - - 7001aa8f-e33f-41b8-954f-7be8a4f1df3e + - c976ecdf-0e09-4d30-b45c-13978b662148 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215531Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005qkr + - 20250226T231109Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cv5v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -311,14 +312,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/77ac9b37-49d2-4b3b-b442-09dd8dd768e9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A31Z&ske=2025-02-25T04%3A55%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:05:32.8520113Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ddc9ff23-f152-4741-8ba7-1f4c5e7fefcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:21:10.194623Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -330,15 +331,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:32 GMT + - Wed, 26 Feb 2025 23:11:10 GMT location: - - https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 4172f2e8-07bb-4a05-8a7d-09a2d63202d5 + - 7cd5b4ce-0ed1-49d4-a709-b2c1a9f934d3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215531Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005qm4 + - 20250226T231109Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cv6q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -356,12 +357,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/77ac9b37-49d2-4b3b-b442-09dd8dd768e9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A33Z&ske=2025-02-25T04%3A55%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:05:33.1271166Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ddc9ff23-f152-4741-8ba7-1f4c5e7fefcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:21:10.4670028Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -371,17 +372,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '564' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:33 GMT + - Wed, 26 Feb 2025 23:11:10 GMT mise-correlation-id: - - 90df14f6-3186-4bdd-b22c-565e86115b32 + - 9f084ff6-2d8f-46e5-856f-25f636ad8bd6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215532Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005qp4 + - 20250226T231110Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cv85 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -490,14 +491,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/91013cb4-917f-4bcc-9aa4-39bf9774f440?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A33Z&ske=2025-02-25T04%3A55%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:33.6212827Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ab2d91ac-8e7e-45b9-bf5d-41784dc88dac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A10Z&ske=2025-02-27T06%3A11%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:10.9810225Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -505,19 +506,19 @@ interactions: connection: - keep-alive content-length: - - '561' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:33 GMT + - Wed, 26 Feb 2025 23:11:11 GMT location: - - https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - fc803243-75d7-4801-acc8-69c2e6c59505 + - 64a8db89-a265-4001-a1c6-83d8d79ccf1c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215533Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005qpn + - 20250226T231110Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cv8u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -535,12 +536,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/91013cb4-917f-4bcc-9aa4-39bf9774f440?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A33Z&ske=2025-02-25T04%3A55%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:33.9059476Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ab2d91ac-8e7e-45b9-bf5d-41784dc88dac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:11.2327861Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -550,17 +551,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:34 GMT + - Wed, 26 Feb 2025 23:11:11 GMT mise-correlation-id: - - 7d462251-71c1-412f-981f-839e7cbecfb7 + - 33c1863f-f004-4a80-87fd-8fcb35e830ba strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215533Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005qqr + - 20250226T231111Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cva7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -578,12 +579,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/91013cb4-917f-4bcc-9aa4-39bf9774f440?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A31Z&ske=2025-02-25T04%3A55%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:39.1607647Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ab2d91ac-8e7e-45b9-bf5d-41784dc88dac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:16.4876044Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -593,17 +594,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:39 GMT + - Wed, 26 Feb 2025 23:11:16 GMT mise-correlation-id: - - 65bec172-7aa0-4731-aa24-348e54898b2b + - b5176362-0a92-4418-9c50-ebfc8b57b48f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215539Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005r32 + - 20250226T231116Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cvt4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -621,12 +622,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/91013cb4-917f-4bcc-9aa4-39bf9774f440?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A33Z&ske=2025-02-25T04%3A55%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A44Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:44.4244167Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ab2d91ac-8e7e-45b9-bf5d-41784dc88dac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:21.7373582Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -636,17 +637,103 @@ interactions: connection: - keep-alive content-length: - - '563' + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Feb 2025 23:11:21 GMT + mise-correlation-id: + - a8530259-45ff-44d5-b6fc-6cabf8247f79 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20250226T231121Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cw4f + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + method: GET + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + response: + body: + string: '{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ab2d91ac-8e7e-45b9-bf5d-41784dc88dac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A10Z&ske=2025-02-27T06%3A11%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:26.9878792Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-12-01-preview + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Feb 2025 23:11:27 GMT + mise-correlation-id: + - 148c9736-9d8f-42ee-8aad-a0cd3ac45a6e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20250226T231126Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cwgy + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + method: GET + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + response: + body: + string: '{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ab2d91ac-8e7e-45b9-bf5d-41784dc88dac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:32.2439098Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-12-01-preview + connection: + - keep-alive + content-length: + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:44 GMT + - Wed, 26 Feb 2025 23:11:32 GMT mise-correlation-id: - - db5c05ce-a7f5-4aa6-bf66-e673591cac24 + - c8224977-af99-4ac7-b366-9a0afd9469fd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215544Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005rdw + - 20250226T231132Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cwvq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -664,12 +751,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/91013cb4-917f-4bcc-9aa4-39bf9774f440?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A33Z&ske=2025-02-25T04%3A55%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:49.6752764Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ab2d91ac-8e7e-45b9-bf5d-41784dc88dac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:37.4965717Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -679,17 +766,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:49 GMT + - Wed, 26 Feb 2025 23:11:37 GMT mise-correlation-id: - - d1c76db6-cf80-43c2-8944-2d7bbfa64e28 + - 0c6ecaeb-46c7-44c3-82f6-80f35ae8b9df strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215549Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005rrr + - 20250226T231137Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cx8d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -707,12 +794,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/91013cb4-917f-4bcc-9aa4-39bf9774f440?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A33Z&ske=2025-02-25T04%3A55%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A05%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:05:54.9275616Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ab2d91ac-8e7e-45b9-bf5d-41784dc88dac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:42.7461655Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -722,17 +809,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:55:55 GMT + - Wed, 26 Feb 2025 23:11:42 GMT mise-correlation-id: - - 03f85c22-868a-4afe-87e3-87a66d56c409 + - 3265dce4-0b9c-47b7-954b-039fd6d1f848 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215554Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005s0b + - 20250226T231142Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cxr3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -750,12 +837,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/91013cb4-917f-4bcc-9aa4-39bf9774f440?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A33Z&ske=2025-02-25T04%3A55%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:06:00.1876316Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ab2d91ac-8e7e-45b9-bf5d-41784dc88dac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A48Z&ske=2025-02-27T06%3A11%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:48.5965482Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -765,17 +852,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:00 GMT + - Wed, 26 Feb 2025 23:11:48 GMT mise-correlation-id: - - 5503c0cc-06a7-4ab2-9cfb-61024cc0d516 + - 09d7fcca-c2fe-4796-a6e2-5a001eccca64 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215600Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005s86 + - 20250226T231147Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cy44 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -793,12 +880,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/91013cb4-917f-4bcc-9aa4-39bf9774f440?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A30Z&ske=2025-02-25T04%3A55%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:06:05.4432508Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ab2d91ac-8e7e-45b9-bf5d-41784dc88dac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A10Z&ske=2025-02-27T06%3A11%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:53.859044Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -812,13 +899,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:05 GMT + - Wed, 26 Feb 2025 23:11:53 GMT mise-correlation-id: - - ab01a473-4222-43a6-8341-3b1e0585c9b7 + - 4e783a14-3d86-4294-a5e0-fad14cfce0d1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215605Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005sgd + - 20250226T231153Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cykx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -836,13 +923,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-12-01-preview + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6417ecca-ea05-4052-bd62-54259686cbf5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"eb2073ce-e5f9-4b91-9cc9-1a5c7b3637d3":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ccb416d3-0910-4b07-b90e-2c4dc21e2a88":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"7ef53edd-ecad-46d4-82c7-ff336be43f6f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"8e61c8fd-4627-4185-878e-02c0188e8b4d":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"9cfca168-08e6-442b-8910-251cb8fd9708":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/91013cb4-917f-4bcc-9aa4-39bf9774f440?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A31Z&ske=2025-02-25T04%3A55%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:56:05.7001519Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/b7ddc20e-27ec-48bd-a37e-c2a8e7ffec93?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A31Z&ske=2025-02-25T04%3A55%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A05Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:56:05.7005271Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/77ac9b37-49d2-4b3b-b442-09dd8dd768e9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A31Z&ske=2025-02-25T04%3A55%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:56:05.7006498Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:55:29.822Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:56:04.191Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"ef099c20-c726-4504-b230-b2065521c55d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d707516a-0ba0-42bf-855d-bfe08c428bd8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1e6b4340-21e4-40ce-83e5-ff9a87cf1531":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"75b8744d-7796-4107-9ba0-e729a599702f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0c47fa07-c941-4730-9f73-67df636fb5b0":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"86b49706-05a5-42d0-a44e-72422b205266":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ab2d91ac-8e7e-45b9-bf5d-41784dc88dac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:11:54.1149817Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/3a4090b2-bb1b-4e3a-bd38-d78c155115dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A54Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:11:54.1163632Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ddc9ff23-f152-4741-8ba7-1f4c5e7fefcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:11:54.1167365Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:11:08.547Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:49.411Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -852,17 +939,17 @@ interactions: connection: - keep-alive content-length: - - '3368' + - '3371' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:05 GMT + - Wed, 26 Feb 2025 23:11:54 GMT mise-correlation-id: - - 3d742b13-caee-40ca-afad-6097c76b292d + - bedf7a6c-415f-4de2-a5ee-89b6a14568ff strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215605Z-r17775d4f9889hkthC1SG1bx7800000014m0000000005sgu + - 20250226T231153Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cyn2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -885,7 +972,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:54:55.1193447Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:54:55.1193447Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:10:33.2889124Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:10:33.2889124Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -894,9 +981,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:06 GMT + - Wed, 26 Feb 2025 23:11:54 GMT etag: - - '"4f0105be-0000-0200-0000-67bceac40000"' + - '"8f01ab6c-0000-0200-0000-67bf9f800000"' expires: - '-1' pragma: @@ -912,7 +999,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6A045C86C36442AAA786330CCC39716B Ref B: MAA201060516017 Ref C: 2025-02-24T21:56:06Z' + - 'Ref A: 81501A2531C541538F5B4B099EAEC77D Ref B: MAA201060514051 Ref C: 2025-02-26T23:11:54Z' status: code: 200 message: OK @@ -926,13 +1013,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"6417ecca-ea05-4052-bd62-54259686cbf5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"eb2073ce-e5f9-4b91-9cc9-1a5c7b3637d3":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ccb416d3-0910-4b07-b90e-2c4dc21e2a88":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"7ef53edd-ecad-46d4-82c7-ff336be43f6f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"8e61c8fd-4627-4185-878e-02c0188e8b4d":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"9cfca168-08e6-442b-8910-251cb8fd9708":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/91013cb4-917f-4bcc-9aa4-39bf9774f440?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A33Z&ske=2025-02-25T04%3A55%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:56:07.6560581Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/b7ddc20e-27ec-48bd-a37e-c2a8e7ffec93?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A33Z&ske=2025-02-25T04%3A55%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A07Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:56:07.6564808Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/77ac9b37-49d2-4b3b-b442-09dd8dd768e9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A33Z&ske=2025-02-25T04%3A55%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:56:07.6567117Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:55:29.822Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:56:04.191Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"ef099c20-c726-4504-b230-b2065521c55d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d707516a-0ba0-42bf-855d-bfe08c428bd8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1e6b4340-21e4-40ce-83e5-ff9a87cf1531":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"75b8744d-7796-4107-9ba0-e729a599702f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0c47fa07-c941-4730-9f73-67df636fb5b0":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"86b49706-05a5-42d0-a44e-72422b205266":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ab2d91ac-8e7e-45b9-bf5d-41784dc88dac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A48Z&ske=2025-02-27T06%3A11%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:11:55.6281905Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/3a4090b2-bb1b-4e3a-bd38-d78c155115dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A48Z&ske=2025-02-27T06%3A11%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:11:55.628707Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ddc9ff23-f152-4741-8ba7-1f4c5e7fefcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A48Z&ske=2025-02-27T06%3A11%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:11:55.6288289Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:11:08.547Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:49.411Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -942,17 +1029,17 @@ interactions: connection: - keep-alive content-length: - - '3386' + - '3380' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:07 GMT + - Wed, 26 Feb 2025 23:11:55 GMT mise-correlation-id: - - bad37aa7-e6bb-4fc4-bcbc-1c3e9becce1c + - 60c31c1a-83e8-4260-9252-6d99256fae2e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215607Z-r17775d4f98dvpdwhC1SG17y3800000013v000000000a94e + - 20250226T231155Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000g278 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -975,7 +1062,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:54:55.1193447Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:54:55.1193447Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:10:33.2889124Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:10:33.2889124Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -984,9 +1071,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:08 GMT + - Wed, 26 Feb 2025 23:11:56 GMT etag: - - '"4f0105be-0000-0200-0000-67bceac40000"' + - '"8f01ab6c-0000-0200-0000-67bf9f800000"' expires: - '-1' pragma: @@ -1002,7 +1089,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FA4927705EFF470E9C1170AD1BBF341F Ref B: MAA201060513019 Ref C: 2025-02-24T21:56:07Z' + - 'Ref A: C3F59595F11B4DC98A151CE37C4B316E Ref B: MAA201060516047 Ref C: 2025-02-26T23:11:55Z' status: code: 200 message: OK @@ -1016,13 +1103,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://31f17f7f-46d6-4c31-b63b-e8d8a008b9cc.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-12-01-preview + uri: https://dbc2c9c3-15b9-4492-9185-0a47ae113c0d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6417ecca-ea05-4052-bd62-54259686cbf5":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"eb2073ce-e5f9-4b91-9cc9-1a5c7b3637d3":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ccb416d3-0910-4b07-b90e-2c4dc21e2a88":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"7ef53edd-ecad-46d4-82c7-ff336be43f6f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"8e61c8fd-4627-4185-878e-02c0188e8b4d":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"9cfca168-08e6-442b-8910-251cb8fd9708":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/91013cb4-917f-4bcc-9aa4-39bf9774f440?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A33Z&ske=2025-02-25T04%3A55%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:56:09.5446434Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/b7ddc20e-27ec-48bd-a37e-c2a8e7ffec93?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A33Z&ske=2025-02-25T04%3A55%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A09Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:56:09.5451105Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wdcz6qjmpydfoqfujwui2fyi.z24.blob.storage.azure.net/487e7f7f-5928-4891-ae69-43dfe78912a7/77ac9b37-49d2-4b3b-b442-09dd8dd768e9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A55%3A33Z&ske=2025-02-25T04%3A55%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A56%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:56:09.5454265Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:55:29.822Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:56:04.191Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"ef099c20-c726-4504-b230-b2065521c55d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d707516a-0ba0-42bf-855d-bfe08c428bd8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1e6b4340-21e4-40ce-83e5-ff9a87cf1531":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"75b8744d-7796-4107-9ba0-e729a599702f":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"0c47fa07-c941-4730-9f73-67df636fb5b0":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"86b49706-05a5-42d0-a44e-72422b205266":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ab2d91ac-8e7e-45b9-bf5d-41784dc88dac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:11:57.6127008Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/3a4090b2-bb1b-4e3a-bd38-d78c155115dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A57Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:11:57.6130683Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hu19th2zxdevr2iw86qch2xg.z4.blob.storage.azure.net/047f5607-c676-4352-b6e7-8de04e71dede/ddc9ff23-f152-4741-8ba7-1f4c5e7fefcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A11%3A09Z&ske=2025-02-27T06%3A11%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:11:57.6132031Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:11:08.547Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:49.411Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1032,17 +1119,17 @@ interactions: connection: - keep-alive content-length: - - '3372' + - '3359' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:09 GMT + - Wed, 26 Feb 2025 23:11:57 GMT mise-correlation-id: - - 7f946c3c-3ec2-4b0c-a196-3bea423f18ac + - c6eae227-3915-4c2a-8b37-4392b0866666 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215608Z-r17775d4f98k7mk2hC1SG1n7700000000rq00000000096rk + - 20250226T231157Z-r17775d4f98mc5fbhC1SG1vp2s0000001a40000000007prd x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_splitcsv.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_splitcsv.yaml index f9dc2435f3e..aa4a58be25c 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_splitcsv.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_splitcsv.yaml @@ -14,7 +14,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:44.7038791Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:44.7038791Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:08:33.8002638Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:08:33.8002638Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -23,9 +23,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:44 GMT + - Wed, 26 Feb 2025 23:09:33 GMT etag: - - '"4f01bdc2-0000-0200-0000-67bceaf80000"' + - '"8f019164-0000-0200-0000-67bf9f080000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9E94F661DFAB44C58DB926857D5E5523 Ref B: MAA201060515019 Ref C: 2025-02-24T21:56:43Z' + - 'Ref A: 581CE5412D454D0790D0512E2B95818E Ref B: MAA201060515027 Ref C: 2025-02-26T23:09:32Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -71,15 +71,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:56:45 GMT + - Wed, 26 Feb 2025 23:09:34 GMT mise-correlation-id: - - ac85d8c7-ebc3-43fe-b9ee-8322762e3ea7 + - 0c81cd2e-27ab-4c03-a07e-1accbc8646d2 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215644Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b5qv + - 20250226T230933Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bg0a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -95,17 +95,17 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": - {"6c68a27c-ab04-4192-8141-08d77e72a663": {"aggregate": "avg", "clientMetric": - "requests_per_sec", "condition": ">", "value": "78"}, "4a7ccfee-f3f9-4454-b02f-9335fc19e5b4": + {"c27433d7-fdf2-4f89-88be-55db4cd55f23": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "0f9dd4fa-cd50-40ef-a824-d7f7bba0c27f": {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "3098e76f-5c8c-477f-a2a5-d10411ca4994": {"aggregate": "p75", "clientMetric": - "response_time_ms", "condition": ">", "value": "380"}, "95af21ee-3b01-4e45-83f1-86a1f6d684b6": + "50"}, "6a87e240-0371-4018-9327-359b53dabd90": {"aggregate": "p75", "clientMetric": + "response_time_ms", "condition": ">", "value": "380"}, "07348870-220c-4712-aa5c-be1ecbd91adb": {"aggregate": "p99", "clientMetric": "response_time_ms", "condition": ">", "value": - "520"}, "9ddc71ba-69fc-4fd6-9728-e23fe5b197b5": {"aggregate": "p99.9", "clientMetric": - "response_time_ms", "condition": ">", "value": "540"}, "4a3dfa94-cbbc-4892-9337-f32aebabcc7b": + "520"}, "a783b1aa-acdb-442f-b9c9-51fcaea99568": {"aggregate": "p99.9", "clientMetric": + "response_time_ms", "condition": ">", "value": "540"}, "99490760-820b-42d5-83e4-9bd8c5d6ab72": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": - true}}' + true}, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,17 +114,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1283' + - '1352' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6c68a27c-ab04-4192-8141-08d77e72a663":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4a7ccfee-f3f9-4454-b02f-9335fc19e5b4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3098e76f-5c8c-477f-a2a5-d10411ca4994":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"95af21ee-3b01-4e45-83f1-86a1f6d684b6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9ddc71ba-69fc-4fd6-9728-e23fe5b197b5":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4a3dfa94-cbbc-4892-9337-f32aebabcc7b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:45.99Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:56:45.99Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c27433d7-fdf2-4f89-88be-55db4cd55f23":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0f9dd4fa-cd50-40ef-a824-d7f7bba0c27f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6a87e240-0371-4018-9327-359b53dabd90":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"07348870-220c-4712-aa5c-be1ecbd91adb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a783b1aa-acdb-442f-b9c9-51fcaea99568":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"99490760-820b-42d5-83e4-9bd8c5d6ab72":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:34.927Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:34.927Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -132,19 +132,19 @@ interactions: connection: - keep-alive content-length: - - '1629' + - '1631' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:46 GMT + - Wed, 26 Feb 2025 23:09:35 GMT location: - - https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + - https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview mise-correlation-id: - - d536a817-6044-453f-b3bb-497e9c0dcdc5 + - cfa7e525-a65c-477c-ae06-869d9fa0d7ec strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215645Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b5s3 + - 20250226T230934Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bg1k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -162,9 +162,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -181,13 +181,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:46 GMT + - Wed, 26 Feb 2025 23:09:35 GMT mise-correlation-id: - - 0ef6f869-ccb9-44f1-93e8-14161af60ac5 + - 09cb4d59-0d01-475b-b6c3-fe4e654325fa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215646Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b5sm + - 20250226T230935Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bg2w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -212,14 +212,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/f2b13a13-01b0-4340-80e6-1e96d868d3e5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:06:47.5440778Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/bcc71ecc-fc65-436e-809e-2d7e0cdccea6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A35Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:35.7164783Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -227,19 +227,19 @@ interactions: connection: - keep-alive content-length: - - '572' + - '577' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:47 GMT + - Wed, 26 Feb 2025 23:09:35 GMT location: - - https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 1ab52dcd-c702-4119-a4c1-2b3751ba7f36 + - 1db5ef81-286e-4de3-8e37-4b32e83087ab strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215646Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b5t0 + - 20250226T230935Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bg3r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -257,12 +257,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/f2b13a13-01b0-4340-80e6-1e96d868d3e5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A47Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:06:47.8343337Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/bcc71ecc-fc65-436e-809e-2d7e0cdccea6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A35Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:35.9922556Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -272,17 +272,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '577' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:47 GMT + - Wed, 26 Feb 2025 23:09:36 GMT mise-correlation-id: - - f7c1f274-c25c-466a-adc3-846e8c89f29e + - 6b9f035c-f325-4315-a1a7-f98c194669f8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215647Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b5vp + - 20250226T230935Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bg4m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -311,14 +311,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/7f10a700-32de-4420-a731-4739312e6d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:06:48.234556Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/d0ddb211-548e-42dd-bae5-647ce182f5a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:36.4012757Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -326,19 +326,19 @@ interactions: connection: - keep-alive content-length: - - '561' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:48 GMT + - Wed, 26 Feb 2025 23:09:36 GMT location: - - https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 659e2305-d4af-4e59-88c3-f4445be43168 + - d353d8c2-1a3d-4fd4-81f5-6bc070f34b10 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215647Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b5wg + - 20250226T230936Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bg5e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -356,12 +356,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/7f10a700-32de-4420-a731-4739312e6d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:06:48.5245869Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/d0ddb211-548e-42dd-bae5-647ce182f5a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:37.3223836Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -371,17 +371,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:48 GMT + - Wed, 26 Feb 2025 23:09:37 GMT mise-correlation-id: - - 0ae97af1-c133-4eea-8740-a6142bb1bf12 + - d9994373-1eb9-4cab-9f19-606983392f7f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215648Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b5x7 + - 20250226T230936Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bg69 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -490,14 +490,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A49Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:06:49.0061691Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:37.8137062Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -505,19 +505,19 @@ interactions: connection: - keep-alive content-length: - - '560' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:49 GMT + - Wed, 26 Feb 2025 23:09:37 GMT location: - - https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - fc171626-8624-4785-b69d-ded9676cac3a + - 08e9035b-d349-4de6-911e-e4b5c19a0880 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215648Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b5y3 + - 20250226T230937Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bg7k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -535,12 +535,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A49Z&ske=2025-02-25T04%3A56%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A50Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:06:50.0621005Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:38.06552Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -550,17 +550,17 @@ interactions: connection: - keep-alive content-length: - - '564' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:50 GMT + - Wed, 26 Feb 2025 23:09:38 GMT mise-correlation-id: - - f7c6801e-7677-4b09-bc57-df9f36710ee3 + - 882549bf-3d21-404e-abf9-d8c49dd55820 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215649Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b5ym + - 20250226T230937Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bg8u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -578,12 +578,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A06%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:06:55.3113344Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:43.3211125Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -593,17 +593,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:55 GMT + - Wed, 26 Feb 2025 23:09:43 GMT mise-correlation-id: - - 31c943b1-9b82-4e1d-8bfd-45186e7502a0 + - c9a4965e-928f-4593-a5fb-f7e7b02bab2c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215655Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b68g + - 20250226T230943Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bgn4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -621,12 +621,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:00.5610316Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:48.5771923Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -636,17 +636,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:00 GMT + - Wed, 26 Feb 2025 23:09:48 GMT mise-correlation-id: - - 15ceab49-4e62-4d28-bac4-beeda5819d7f + - f0ece12d-ad61-49b2-a840-dee6354fb24e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215700Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b6nr + - 20250226T230948Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bh0c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -664,12 +664,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:05.9145155Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:53.8911539Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -679,17 +679,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:06 GMT + - Wed, 26 Feb 2025 23:09:54 GMT mise-correlation-id: - - ce24b6a6-8ddc-4330-812f-6be4395c152e + - 67923dd8-c0e9-40ca-904c-02300b77a7a8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215705Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b6yk + - 20250226T230953Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bhe0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -707,12 +707,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:11.1688345Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:59.824407Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -722,60 +722,17 @@ interactions: connection: - keep-alive content-length: - - '562' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 21:57:11 GMT - mise-correlation-id: - - 9c09bc5a-2d1e-4444-a04c-ab9c07310a1a - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T215711Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b78h - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:16.4224554Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '560' + - '564' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:16 GMT + - Wed, 26 Feb 2025 23:09:59 GMT mise-correlation-id: - - 25cbd009-0f8e-4194-b88a-31cb7e0d3606 + - 36ef2302-75a1-46f9-b247-44716a3d355b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215716Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b7kr + - 20250226T230959Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bht8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -793,12 +750,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:21.6751667Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:05.0773674Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -808,17 +765,17 @@ interactions: connection: - keep-alive content-length: - - '564' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:21 GMT + - Wed, 26 Feb 2025 23:10:05 GMT mise-correlation-id: - - bafb8725-f0fc-4959-a435-19c721fa8633 + - 16f05b44-4b56-445f-96d4-6d8365cc09fb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215721Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b7vk + - 20250226T231004Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bk6x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -836,12 +793,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:26.9251403Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:10.8251174Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -851,17 +808,17 @@ interactions: connection: - keep-alive content-length: - - '566' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:27 GMT + - Wed, 26 Feb 2025 23:10:10 GMT mise-correlation-id: - - e98200c2-2a7c-4fa5-a135-4c5385ab6183 + - fe933102-f842-4312-91c1-ec5969a06440 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215726Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b86s + - 20250226T231010Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bkfy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -879,13 +836,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6c68a27c-ab04-4192-8141-08d77e72a663":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4a7ccfee-f3f9-4454-b02f-9335fc19e5b4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3098e76f-5c8c-477f-a2a5-d10411ca4994":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"95af21ee-3b01-4e45-83f1-86a1f6d684b6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9ddc71ba-69fc-4fd6-9728-e23fe5b197b5":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4a3dfa94-cbbc-4892-9337-f32aebabcc7b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:57:27.1874144Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/f2b13a13-01b0-4340-80e6-1e96d868d3e5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A27Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:57:27.1916548Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/7f10a700-32de-4420-a731-4739312e6d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:57:27.1917953Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:45.99Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:24.678Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c27433d7-fdf2-4f89-88be-55db4cd55f23":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0f9dd4fa-cd50-40ef-a824-d7f7bba0c27f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6a87e240-0371-4018-9327-359b53dabd90":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"07348870-220c-4712-aa5c-be1ecbd91adb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a783b1aa-acdb-442f-b9c9-51fcaea99568":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"99490760-820b-42d5-83e4-9bd8c5d6ab72":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:11.0744907Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/bcc71ecc-fc65-436e-809e-2d7e0cdccea6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A11Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:11.0748831Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/d0ddb211-548e-42dd-bae5-647ce182f5a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:11.0750207Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:34.927Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:07.062Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -895,17 +852,17 @@ interactions: connection: - keep-alive content-length: - - '3348' + - '3354' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:27 GMT + - Wed, 26 Feb 2025 23:10:11 GMT mise-correlation-id: - - e14f62f3-6acf-4a87-8228-50ad2dc1bc12 + - e276f5e6-53b6-4bf0-99bf-36796bf62bd2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215727Z-r17775d4f98mc5fbhC1SG1vp2s00000013v000000000b874 + - 20250226T231010Z-r17775d4f98k7mk2hC1SG1n7700000000xw000000000bkh1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -928,7 +885,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:44.7038791Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:44.7038791Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:08:33.8002638Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:08:33.8002638Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -937,9 +894,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:27 GMT + - Wed, 26 Feb 2025 23:10:11 GMT etag: - - '"4f01bdc2-0000-0200-0000-67bceaf80000"' + - '"8f019164-0000-0200-0000-67bf9f080000"' expires: - '-1' pragma: @@ -955,7 +912,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BFDED6FEB08240E58C72B35D15799BEA Ref B: MAA201060514031 Ref C: 2025-02-24T21:57:27Z' + - 'Ref A: BC43E107DFD24925A06E0324E63E15F9 Ref B: MAA201060513051 Ref C: 2025-02-26T23:10:11Z' status: code: 200 message: OK @@ -969,13 +926,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6c68a27c-ab04-4192-8141-08d77e72a663":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4a7ccfee-f3f9-4454-b02f-9335fc19e5b4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3098e76f-5c8c-477f-a2a5-d10411ca4994":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"95af21ee-3b01-4e45-83f1-86a1f6d684b6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9ddc71ba-69fc-4fd6-9728-e23fe5b197b5":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4a3dfa94-cbbc-4892-9337-f32aebabcc7b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:57:28.2195591Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/f2b13a13-01b0-4340-80e6-1e96d868d3e5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:57:28.2205183Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/7f10a700-32de-4420-a731-4739312e6d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:57:28.2208455Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:45.99Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:24.678Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c27433d7-fdf2-4f89-88be-55db4cd55f23":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0f9dd4fa-cd50-40ef-a824-d7f7bba0c27f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6a87e240-0371-4018-9327-359b53dabd90":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"07348870-220c-4712-aa5c-be1ecbd91adb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a783b1aa-acdb-442f-b9c9-51fcaea99568":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"99490760-820b-42d5-83e4-9bd8c5d6ab72":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:12.654031Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/bcc71ecc-fc65-436e-809e-2d7e0cdccea6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A12Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:12.6549792Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/d0ddb211-548e-42dd-bae5-647ce182f5a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:12.6552808Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:34.927Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:07.062Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -985,17 +942,17 @@ interactions: connection: - keep-alive content-length: - - '3352' + - '3353' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:28 GMT + - Wed, 26 Feb 2025 23:10:12 GMT mise-correlation-id: - - 35196479-1f9f-4423-8145-ced7104a7431 + - 48c93b4e-c960-4fdb-b600-23d86a64444b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215728Z-r17775d4f98dvpdwhC1SG17y3800000013v000000000ad15 + - 20250226T231012Z-167c755789djnhhnhC1SG1sch000000002c000000000e96p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1009,7 +966,8 @@ interactions: "environmentVariables": {"rps": "1"}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "splitAllCSVs": false, "quickStartTest": false, "regionalLoadTestConfig": null}, "autoStopCriteria": {"autoStopDisabled": true, "errorRate": 90.0, "errorRateTimeWindowInSeconds": - 60}, "baselineTestRunId": null}' + 60}, "baselineTestRunId": null, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": + null}' headers: Accept: - application/json @@ -1018,17 +976,17 @@ interactions: Connection: - keep-alive Content-Length: - - '462' + - '531' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6c68a27c-ab04-4192-8141-08d77e72a663":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4a7ccfee-f3f9-4454-b02f-9335fc19e5b4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3098e76f-5c8c-477f-a2a5-d10411ca4994":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"95af21ee-3b01-4e45-83f1-86a1f6d684b6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9ddc71ba-69fc-4fd6-9728-e23fe5b197b5":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4a3dfa94-cbbc-4892-9337-f32aebabcc7b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:57:28.6115704Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/f2b13a13-01b0-4340-80e6-1e96d868d3e5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:57:28.6117649Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/7f10a700-32de-4420-a731-4739312e6d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:57:28.6118312Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:45.99Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:28.603Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c27433d7-fdf2-4f89-88be-55db4cd55f23":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0f9dd4fa-cd50-40ef-a824-d7f7bba0c27f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6a87e240-0371-4018-9327-359b53dabd90":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"07348870-220c-4712-aa5c-be1ecbd91adb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a783b1aa-acdb-442f-b9c9-51fcaea99568":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"99490760-820b-42d5-83e4-9bd8c5d6ab72":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:13.03081Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/bcc71ecc-fc65-436e-809e-2d7e0cdccea6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:13.0310261Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/d0ddb211-548e-42dd-bae5-647ce182f5a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:13.0311178Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:34.927Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:13.021Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1038,17 +996,17 @@ interactions: connection: - keep-alive content-length: - - '3353' + - '3359' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:28 GMT + - Wed, 26 Feb 2025 23:10:13 GMT mise-correlation-id: - - 42dd391e-f931-479c-a4e7-ed3e96296c23 + - fc54863a-6197-4307-b074-2c37eda3beb8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215728Z-r17775d4f98dvpdwhC1SG17y3800000013v000000000ad1y + - 20250226T231012Z-167c755789djnhhnhC1SG1sch000000002c000000000e99f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1066,12 +1024,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:28.8662943Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/f2b13a13-01b0-4340-80e6-1e96d868d3e5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A28Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:07:28.8664277Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/7f10a700-32de-4420-a731-4739312e6d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:07:28.8665572Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:13.2882608Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/bcc71ecc-fc65-436e-809e-2d7e0cdccea6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:13.2884362Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/d0ddb211-548e-42dd-bae5-647ce182f5a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:13.2885791Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1081,17 +1039,17 @@ interactions: connection: - keep-alive content-length: - - '1707' + - '1716' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:28 GMT + - Wed, 26 Feb 2025 23:10:13 GMT mise-correlation-id: - - 7d6cfb6f-fee3-47b4-a615-7b37b44cb06c + - 493a252a-662d-4c63-92a2-cb7f971ee236 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215728Z-r17775d4f98dvpdwhC1SG17y3800000013v000000000ad2f + - 20250226T231013Z-167c755789djnhhnhC1SG1sch000000002c000000000e9av x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1109,13 +1067,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6c68a27c-ab04-4192-8141-08d77e72a663":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4a7ccfee-f3f9-4454-b02f-9335fc19e5b4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3098e76f-5c8c-477f-a2a5-d10411ca4994":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"95af21ee-3b01-4e45-83f1-86a1f6d684b6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9ddc71ba-69fc-4fd6-9728-e23fe5b197b5":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4a3dfa94-cbbc-4892-9337-f32aebabcc7b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A49Z&ske=2025-02-25T04%3A56%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:57:29.1183248Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/f2b13a13-01b0-4340-80e6-1e96d868d3e5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A49Z&ske=2025-02-25T04%3A56%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A29Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:57:29.1187173Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/7f10a700-32de-4420-a731-4739312e6d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A49Z&ske=2025-02-25T04%3A56%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A29Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:57:29.1188582Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:45.99Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:28.603Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c27433d7-fdf2-4f89-88be-55db4cd55f23":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0f9dd4fa-cd50-40ef-a824-d7f7bba0c27f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6a87e240-0371-4018-9327-359b53dabd90":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"07348870-220c-4712-aa5c-be1ecbd91adb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a783b1aa-acdb-442f-b9c9-51fcaea99568":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"99490760-820b-42d5-83e4-9bd8c5d6ab72":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:13.5422164Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/bcc71ecc-fc65-436e-809e-2d7e0cdccea6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:13.5426242Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/d0ddb211-548e-42dd-bae5-647ce182f5a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:13.5427936Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:34.927Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:13.021Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1125,17 +1083,17 @@ interactions: connection: - keep-alive content-length: - - '3355' + - '3357' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:29 GMT + - Wed, 26 Feb 2025 23:10:13 GMT mise-correlation-id: - - 630ac2a5-aff6-4203-88b7-6c1593ebc6fe + - 407af1cd-add0-45e4-9571-1700609f67c6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215728Z-r17775d4f98dvpdwhC1SG17y3800000013v000000000ad2t + - 20250226T231013Z-167c755789djnhhnhC1SG1sch000000002c000000000e9bv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1158,7 +1116,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:44.7038791Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:44.7038791Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:08:33.8002638Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:08:33.8002638Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1167,9 +1125,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:29 GMT + - Wed, 26 Feb 2025 23:10:14 GMT etag: - - '"4f01bdc2-0000-0200-0000-67bceaf80000"' + - '"8f019164-0000-0200-0000-67bf9f080000"' expires: - '-1' pragma: @@ -1185,7 +1143,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 70A63AAFC2534934AF87E4DF6FF1E3C8 Ref B: MAA201060513019 Ref C: 2025-02-24T21:57:29Z' + - 'Ref A: 91FF727704D14F05B95954EC12A68FB8 Ref B: MAA201060513021 Ref C: 2025-02-26T23:10:13Z' status: code: 200 message: OK @@ -1199,13 +1157,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6c68a27c-ab04-4192-8141-08d77e72a663":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4a7ccfee-f3f9-4454-b02f-9335fc19e5b4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3098e76f-5c8c-477f-a2a5-d10411ca4994":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"95af21ee-3b01-4e45-83f1-86a1f6d684b6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9ddc71ba-69fc-4fd6-9728-e23fe5b197b5":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4a3dfa94-cbbc-4892-9337-f32aebabcc7b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A49Z&ske=2025-02-25T04%3A56%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:57:30.6048554Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/f2b13a13-01b0-4340-80e6-1e96d868d3e5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A49Z&ske=2025-02-25T04%3A56%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A30Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:57:30.6054997Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/7f10a700-32de-4420-a731-4739312e6d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A49Z&ske=2025-02-25T04%3A56%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:57:30.6056245Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:45.99Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:28.603Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c27433d7-fdf2-4f89-88be-55db4cd55f23":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0f9dd4fa-cd50-40ef-a824-d7f7bba0c27f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6a87e240-0371-4018-9327-359b53dabd90":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"07348870-220c-4712-aa5c-be1ecbd91adb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a783b1aa-acdb-442f-b9c9-51fcaea99568":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"99490760-820b-42d5-83e4-9bd8c5d6ab72":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:15.5157272Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/bcc71ecc-fc65-436e-809e-2d7e0cdccea6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:15.5161624Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/d0ddb211-548e-42dd-bae5-647ce182f5a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:15.5163312Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:34.927Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:13.021Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1215,17 +1173,17 @@ interactions: connection: - keep-alive content-length: - - '3357' + - '3359' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:30 GMT + - Wed, 26 Feb 2025 23:10:15 GMT mise-correlation-id: - - 3274e890-7931-4075-a354-2c5a31befac4 + - b09e661f-bcde-4895-9522-8ffd4692f6cd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215730Z-r17775d4f98qp6vvhC1SG1r7180000000hn000000000a8rh + - 20250226T231015Z-r17775d4f98mc5fbhC1SG1vp2s0000001a40000000007cnr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1239,7 +1197,8 @@ interactions: "environmentVariables": {"rps": "1"}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 1, "splitAllCSVs": true, "quickStartTest": false, "regionalLoadTestConfig": null}, "autoStopCriteria": {"autoStopDisabled": true, "errorRate": 90.0, "errorRateTimeWindowInSeconds": - 60}, "baselineTestRunId": null}' + 60}, "baselineTestRunId": null, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": + null}' headers: Accept: - application/json @@ -1248,17 +1207,17 @@ interactions: Connection: - keep-alive Content-Length: - - '461' + - '530' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6c68a27c-ab04-4192-8141-08d77e72a663":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4a7ccfee-f3f9-4454-b02f-9335fc19e5b4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3098e76f-5c8c-477f-a2a5-d10411ca4994":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"95af21ee-3b01-4e45-83f1-86a1f6d684b6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9ddc71ba-69fc-4fd6-9728-e23fe5b197b5":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4a3dfa94-cbbc-4892-9337-f32aebabcc7b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A30Z&ske=2025-02-25T04%3A57%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:57:30.9366146Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/f2b13a13-01b0-4340-80e6-1e96d868d3e5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A30Z&ske=2025-02-25T04%3A57%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A30Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:57:30.9369961Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/7f10a700-32de-4420-a731-4739312e6d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A30Z&ske=2025-02-25T04%3A57%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:57:30.9371732Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:45.99Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:30.927Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c27433d7-fdf2-4f89-88be-55db4cd55f23":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0f9dd4fa-cd50-40ef-a824-d7f7bba0c27f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6a87e240-0371-4018-9327-359b53dabd90":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"07348870-220c-4712-aa5c-be1ecbd91adb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a783b1aa-acdb-442f-b9c9-51fcaea99568":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"99490760-820b-42d5-83e4-9bd8c5d6ab72":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:15.948788Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/bcc71ecc-fc65-436e-809e-2d7e0cdccea6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:15.9493673Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/d0ddb211-548e-42dd-bae5-647ce182f5a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:15.9495648Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:34.927Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:15.94Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1272,13 +1231,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:31 GMT + - Wed, 26 Feb 2025 23:10:16 GMT mise-correlation-id: - - 3e9e300f-9e75-40cb-84be-09943c78ec3d + - fdcd4cbd-5f3b-44ae-9ff0-6f176d38dd49 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215730Z-r17775d4f98qp6vvhC1SG1r7180000000hn000000000a8su + - 20250226T231015Z-r17775d4f98mc5fbhC1SG1vp2s0000001a40000000007cpy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1296,12 +1255,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:31.1907563Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/f2b13a13-01b0-4340-80e6-1e96d868d3e5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:07:31.1909609Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/7f10a700-32de-4420-a731-4739312e6d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:07:31.1911553Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:16.2060062Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/bcc71ecc-fc65-436e-809e-2d7e0cdccea6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:16.2061425Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/d0ddb211-548e-42dd-bae5-647ce182f5a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:16.2062731Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1311,17 +1270,17 @@ interactions: connection: - keep-alive content-length: - - '1713' + - '1716' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:31 GMT + - Wed, 26 Feb 2025 23:10:16 GMT mise-correlation-id: - - c88380ff-5405-48c5-a9ba-be5cbb6f39ef + - 04c590e8-1eab-441f-98ec-25cae8c75242 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215731Z-r17775d4f98qp6vvhC1SG1r7180000000hn000000000a8tf + - 20250226T231016Z-r17775d4f98mc5fbhC1SG1vp2s0000001a40000000007cqt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1339,13 +1298,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6c68a27c-ab04-4192-8141-08d77e72a663":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4a7ccfee-f3f9-4454-b02f-9335fc19e5b4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3098e76f-5c8c-477f-a2a5-d10411ca4994":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"95af21ee-3b01-4e45-83f1-86a1f6d684b6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9ddc71ba-69fc-4fd6-9728-e23fe5b197b5":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4a3dfa94-cbbc-4892-9337-f32aebabcc7b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:57:31.4474216Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/f2b13a13-01b0-4340-80e6-1e96d868d3e5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A31Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:57:31.4478899Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/7f10a700-32de-4420-a731-4739312e6d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:57:31.4480539Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:45.99Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:30.927Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c27433d7-fdf2-4f89-88be-55db4cd55f23":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0f9dd4fa-cd50-40ef-a824-d7f7bba0c27f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6a87e240-0371-4018-9327-359b53dabd90":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"07348870-220c-4712-aa5c-be1ecbd91adb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a783b1aa-acdb-442f-b9c9-51fcaea99568":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"99490760-820b-42d5-83e4-9bd8c5d6ab72":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:16.4672363Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/bcc71ecc-fc65-436e-809e-2d7e0cdccea6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:16.4675113Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/d0ddb211-548e-42dd-bae5-647ce182f5a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:16.4675744Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:34.927Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:15.94Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1355,17 +1314,17 @@ interactions: connection: - keep-alive content-length: - - '3348' + - '3361' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:31 GMT + - Wed, 26 Feb 2025 23:10:16 GMT mise-correlation-id: - - 5500a527-ec1f-429e-8ee0-a7b51ff4fa3d + - a3c1cda1-0cde-4049-87e7-36868e0d0aa2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215731Z-r17775d4f98qp6vvhC1SG1r7180000000hn000000000a8u1 + - 20250226T231016Z-r17775d4f98mc5fbhC1SG1vp2s0000001a40000000007crg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1388,7 +1347,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:44.7038791Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:44.7038791Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:08:33.8002638Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:08:33.8002638Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1397,9 +1356,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:32 GMT + - Wed, 26 Feb 2025 23:10:17 GMT etag: - - '"4f01bdc2-0000-0200-0000-67bceaf80000"' + - '"8f019164-0000-0200-0000-67bf9f080000"' expires: - '-1' pragma: @@ -1415,7 +1374,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 705FB2102A1641269F02B07D9D5E06B0 Ref B: MAA201060516035 Ref C: 2025-02-24T21:57:31Z' + - 'Ref A: C7AB20BD63474816AEFEF3B49ED9B281 Ref B: MAA201060514037 Ref C: 2025-02-26T23:10:16Z' status: code: 200 message: OK @@ -1429,13 +1388,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6c68a27c-ab04-4192-8141-08d77e72a663":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4a7ccfee-f3f9-4454-b02f-9335fc19e5b4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3098e76f-5c8c-477f-a2a5-d10411ca4994":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"95af21ee-3b01-4e45-83f1-86a1f6d684b6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"9ddc71ba-69fc-4fd6-9728-e23fe5b197b5":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"4a3dfa94-cbbc-4892-9337-f32aebabcc7b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:57:32.9348369Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/f2b13a13-01b0-4340-80e6-1e96d868d3e5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A32Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:57:32.9353599Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/7f10a700-32de-4420-a731-4739312e6d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:57:32.9355864Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:45.99Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:30.927Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c27433d7-fdf2-4f89-88be-55db4cd55f23":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0f9dd4fa-cd50-40ef-a824-d7f7bba0c27f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6a87e240-0371-4018-9327-359b53dabd90":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"07348870-220c-4712-aa5c-be1ecbd91adb":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"a783b1aa-acdb-442f-b9c9-51fcaea99568":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"99490760-820b-42d5-83e4-9bd8c5d6ab72":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:17.9780932Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/bcc71ecc-fc65-436e-809e-2d7e0cdccea6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A17Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:17.9783407Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/d0ddb211-548e-42dd-bae5-647ce182f5a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:17.9784218Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:34.927Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:15.94Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1445,17 +1404,17 @@ interactions: connection: - keep-alive content-length: - - '3352' + - '3351' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:33 GMT + - Wed, 26 Feb 2025 23:10:18 GMT mise-correlation-id: - - 7e0d10c6-e896-425d-a548-f29ca6811700 + - 1bdd06dc-f3dc-48df-a0fd-6e2c66c6bfca strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215732Z-r17775d4f98drzbdhC1SG103a000000008e0000000000f5k + - 20250226T231017Z-167c755789dbhjzdhC1SG1t7h800000001r0000000008ypm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1468,16 +1427,17 @@ interactions: "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - false}, "passFailCriteria": {"passFailMetrics": {"6c68a27c-ab04-4192-8141-08d77e72a663": - null, "4a7ccfee-f3f9-4454-b02f-9335fc19e5b4": null, "3098e76f-5c8c-477f-a2a5-d10411ca4994": - null, "95af21ee-3b01-4e45-83f1-86a1f6d684b6": null, "9ddc71ba-69fc-4fd6-9728-e23fe5b197b5": - null, "4a3dfa94-cbbc-4892-9337-f32aebabcc7b": null, "ea0d7db3-ec7c-4c24-a4b4-2463c7d29116": + false}, "passFailCriteria": {"passFailMetrics": {"c27433d7-fdf2-4f89-88be-55db4cd55f23": + null, "0f9dd4fa-cd50-40ef-a824-d7f7bba0c27f": null, "6a87e240-0371-4018-9327-359b53dabd90": + null, "07348870-220c-4712-aa5c-be1ecbd91adb": null, "a783b1aa-acdb-442f-b9c9-51fcaea99568": + null, "99490760-820b-42d5-83e4-9bd8c5d6ab72": null, "d3a27144-f8c0-4be7-ac00-0f16c4ad3251": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "77c14088-fcab-4517-9481-36b6d1d75442": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "1100eb30-9a4e-4b43-a9dd-6160ff89e57e": + "78"}, "1d43d236-4e92-4618-add5-1460ceadcdb9": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "4d7dbc42-8ebb-4ceb-bc0e-66166cbb5137": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": - false, "errorRate": 90, "errorRateTimeWindowInSeconds": 60}}' + false, "errorRate": 90, "errorRateTimeWindowInSeconds": 60}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -1486,16 +1446,16 @@ interactions: Connection: - keep-alive Content-Length: - - '1160' + - '1229' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1100eb30-9a4e-4b43-a9dd-6160ff89e57e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"77c14088-fcab-4517-9481-36b6d1d75442":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ea0d7db3-ec7c-4c24-a4b4-2463c7d29116":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A49Z&ske=2025-02-25T04%3A56%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:57:33.287514Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/f2b13a13-01b0-4340-80e6-1e96d868d3e5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A49Z&ske=2025-02-25T04%3A56%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A33Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:57:33.2877825Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/7f10a700-32de-4420-a731-4739312e6d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A49Z&ske=2025-02-25T04%3A56%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:57:33.2878953Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:45.99Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:33.278Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4d7dbc42-8ebb-4ceb-bc0e-66166cbb5137":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"1d43d236-4e92-4618-add5-1460ceadcdb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d3a27144-f8c0-4be7-ac00-0f16c4ad3251":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:18.3227131Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/bcc71ecc-fc65-436e-809e-2d7e0cdccea6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A18Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:18.3231824Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/d0ddb211-548e-42dd-bae5-647ce182f5a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:18.3233275Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:34.927Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:18.314Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1505,17 +1465,17 @@ interactions: connection: - keep-alive content-length: - - '2869' + - '2874' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:33 GMT + - Wed, 26 Feb 2025 23:10:18 GMT mise-correlation-id: - - 8e6797e8-fba0-417b-9e79-7808e570d438 + - 761ad668-b7c1-478c-abd5-4788eb13ca8d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215733Z-r17775d4f98drzbdhC1SG103a000000008e0000000000f5z + - 20250226T231018Z-167c755789dbhjzdhC1SG1t7h800000001r0000000008yqa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1533,12 +1493,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/e799ea62-7440-4c5a-9a79-a46b812a4301?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A30Z&ske=2025-02-25T04%3A57%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:33.550606Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/f2b13a13-01b0-4340-80e6-1e96d868d3e5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A30Z&ske=2025-02-25T04%3A57%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A33Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:07:33.5508377Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/7f10a700-32de-4420-a731-4739312e6d67?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A30Z&ske=2025-02-25T04%3A57%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:07:33.5510686Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/3da29bc2-ff9e-4b6b-b5bc-c024f553424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:18.5816149Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/bcc71ecc-fc65-436e-809e-2d7e0cdccea6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A18Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:18.5817152Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/d0ddb211-548e-42dd-bae5-647ce182f5a1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:18.5818138Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1548,17 +1508,17 @@ interactions: connection: - keep-alive content-length: - - '1708' + - '1716' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:33 GMT + - Wed, 26 Feb 2025 23:10:18 GMT mise-correlation-id: - - b624d91e-8878-4401-88c3-f42cd83beb1c + - d1a908d4-17b8-4b39-9c5c-be9a1e2fd11f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215733Z-r17775d4f98drzbdhC1SG103a000000008e0000000000f6n + - 20250226T231018Z-167c755789dbhjzdhC1SG1t7h800000001r0000000008yr4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1578,9 +1538,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: string: '' @@ -1591,13 +1551,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:57:34 GMT + - Wed, 26 Feb 2025 23:10:19 GMT mise-correlation-id: - - d40609b9-0fc3-4334-85f3-17c925242def + - 52f044bb-973f-4b5e-a1b2-dbc0e51c3d36 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215733Z-r17775d4f98drzbdhC1SG103a000000008e0000000000f6z + - 20250226T231018Z-167c755789dbhjzdhC1SG1t7h800000001r0000000008yrh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1622,14 +1582,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/4a490c82-5aeb-4203-a11a-8081510ad543?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A34Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:07:34.292136Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/e6264514-ca30-4b06-bd10-c84267d000dc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A19Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:19.3135735Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1637,19 +1597,19 @@ interactions: connection: - keep-alive content-length: - - '573' + - '575' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:34 GMT + - Wed, 26 Feb 2025 23:10:19 GMT location: - - https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 78f854f8-dc23-4d7e-8a8d-518a7e34e8db + - 34820a04-2d44-4086-84a6-7b72cdccf004 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215734Z-r17775d4f98drzbdhC1SG103a000000008e0000000000f7r + - 20250226T231019Z-167c755789dbhjzdhC1SG1t7h800000001r0000000008ys2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1667,12 +1627,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/4a490c82-5aeb-4203-a11a-8081510ad543?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A34Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:07:34.5434712Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/e6264514-ca30-4b06-bd10-c84267d000dc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A19Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:19.5671749Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -1682,17 +1642,17 @@ interactions: connection: - keep-alive content-length: - - '574' + - '573' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:34 GMT + - Wed, 26 Feb 2025 23:10:19 GMT mise-correlation-id: - - 9beebc57-05e0-46bf-8141-d5cb2f69fb73 + - 8cbfb401-b77f-479b-9721-7af9a56e6ffb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215734Z-r17775d4f98drzbdhC1SG103a000000008e0000000000f8d + - 20250226T231019Z-167c755789dbhjzdhC1SG1t7h800000001r0000000008yt6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1712,9 +1672,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: string: '' @@ -1725,13 +1685,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:57:34 GMT + - Wed, 26 Feb 2025 23:10:20 GMT mise-correlation-id: - - 6ccf3cdd-a320-4d32-9133-3af3af7b9c48 + - 55abe4c2-f2c8-4337-b627-10f2b56c0112 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215734Z-r17775d4f98drzbdhC1SG103a000000008e0000000000f8w + - 20250226T231019Z-167c755789dbhjzdhC1SG1t7h800000001r0000000008ytn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1760,14 +1720,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/40f96224-4039-4fee-8803-4405af6ee1c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:07:35.2335657Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/88f27882-fda5-493e-ac97-7e07d4228e8b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:20.2951191Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1775,19 +1735,19 @@ interactions: connection: - keep-alive content-length: - - '560' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:35 GMT + - Wed, 26 Feb 2025 23:10:20 GMT location: - - https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - ca0f6254-0329-4eae-8e96-dd57d4ce87ce + - ca3feefc-89db-4f03-b112-6e994c26d236 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215734Z-r17775d4f98drzbdhC1SG103a000000008e0000000000f97 + - 20250226T231020Z-167c755789dbhjzdhC1SG1t7h800000001r0000000008yu7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1805,12 +1765,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/40f96224-4039-4fee-8803-4405af6ee1c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:07:35.4898392Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/88f27882-fda5-493e-ac97-7e07d4228e8b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:20.5432119Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -1820,17 +1780,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:35 GMT + - Wed, 26 Feb 2025 23:10:20 GMT mise-correlation-id: - - 26fddd4c-93e0-4dde-8cfd-2601741c759e + - 47ef7499-0633-40f3-9f0f-36d60e0fb869 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215735Z-r17775d4f98drzbdhC1SG103a000000008e0000000000f9r + - 20250226T231020Z-167c755789dbhjzdhC1SG1t7h800000001r0000000008yuk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1850,9 +1810,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: string: '' @@ -1863,13 +1823,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:57:35 GMT + - Wed, 26 Feb 2025 23:10:21 GMT mise-correlation-id: - - 22024bef-33d5-42c9-9cbc-60747ad489ee + - c3a865ce-685b-44cb-b2b3-d006eaaedd38 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215735Z-r17775d4f98drzbdhC1SG103a000000008e0000000000fa7 + - 20250226T231020Z-167c755789dbhjzdhC1SG1t7h800000001r0000000008yve x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1978,14 +1938,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1c1a6fc2-dc47-4f99-a731-98b9156bb2f8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:36.2701601Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/78f28ca9-9689-4185-becf-93da320b80af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:21.9072846Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1993,19 +1953,19 @@ interactions: connection: - keep-alive content-length: - - '558' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:36 GMT + - Wed, 26 Feb 2025 23:10:22 GMT location: - - https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 5b25b347-c881-41c9-a63b-df65ade4d0ea + - 0b07eec7-563b-4279-853c-7ba0becb3a6f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215735Z-r17775d4f98drzbdhC1SG103a000000008e0000000000faq + - 20250226T231021Z-167c755789dbhjzdhC1SG1t7h800000001r0000000008ywp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2023,55 +1983,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1c1a6fc2-dc47-4f99-a731-98b9156bb2f8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A49Z&ske=2025-02-25T04%3A56%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:36.5213348Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 21:57:36 GMT - mise-correlation-id: - - 268d1642-61ac-4420-ac67-9c818360600a - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T215736Z-r17775d4f98drzbdhC1SG103a000000008e0000000000fbk - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1c1a6fc2-dc47-4f99-a731-98b9156bb2f8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A49Z&ske=2025-02-25T04%3A56%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A41Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:41.7751123Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/78f28ca9-9689-4185-becf-93da320b80af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:22.1616443Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2081,17 +1998,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:41 GMT + - Wed, 26 Feb 2025 23:10:22 GMT mise-correlation-id: - - a3344c1e-f03a-41a2-85ac-9c99910dc479 + - 7cab3801-b516-456b-ad55-b21891af0e1f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215741Z-r17775d4f98drzbdhC1SG103a000000008e0000000000fk1 + - 20250226T231022Z-167c755789dbhjzdhC1SG1t7h800000001r0000000008yzf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2109,12 +2026,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1c1a6fc2-dc47-4f99-a731-98b9156bb2f8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:47.0264572Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/78f28ca9-9689-4185-becf-93da320b80af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:27.4122212Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2124,17 +2041,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:47 GMT + - Wed, 26 Feb 2025 23:10:27 GMT mise-correlation-id: - - cbb9289f-3d67-4f45-83ad-cbf6ff0e88aa + - 9570d94f-371a-4527-8586-79592cfe5f11 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215746Z-r17775d4f98drzbdhC1SG103a000000008e0000000000frg + - 20250226T231027Z-167c755789dbhjzdhC1SG1t7h800000001r0000000008zb8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2152,12 +2069,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1c1a6fc2-dc47-4f99-a731-98b9156bb2f8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A52Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:52.2890593Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/78f28ca9-9689-4185-becf-93da320b80af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:32.6731163Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2167,17 +2084,17 @@ interactions: connection: - keep-alive content-length: - - '568' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:52 GMT + - Wed, 26 Feb 2025 23:10:32 GMT mise-correlation-id: - - e52c297e-1fc6-41fe-83c8-786353474560 + - 3995283d-f74d-472e-9a76-7bd5cc9e251f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215752Z-r17775d4f98drzbdhC1SG103a000000008e0000000000fx9 + - 20250226T231032Z-167c755789dbhjzdhC1SG1t7h800000001r0000000008zsw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2195,12 +2112,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1c1a6fc2-dc47-4f99-a731-98b9156bb2f8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A49Z&ske=2025-02-25T04%3A56%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A57Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:57.540695Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/78f28ca9-9689-4185-becf-93da320b80af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:37.9314249Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2210,17 +2127,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:57 GMT + - Wed, 26 Feb 2025 23:10:38 GMT mise-correlation-id: - - cb33ccb9-6c3f-4b64-90c9-f6d8bf8426c8 + - 25aa1354-da62-4228-985a-d8548594338a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215757Z-r17775d4f98drzbdhC1SG103a000000008e0000000000g41 + - 20250226T231037Z-167c755789dbhjzdhC1SG1t7h800000001r000000000906c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2238,12 +2155,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1c1a6fc2-dc47-4f99-a731-98b9156bb2f8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A02Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:02.7993671Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/78f28ca9-9689-4185-becf-93da320b80af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:43.1952654Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2253,17 +2170,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:02 GMT + - Wed, 26 Feb 2025 23:10:43 GMT mise-correlation-id: - - 0104b4ad-15a7-4011-a57a-a8315ce69814 + - cec84f35-1524-409a-9992-a0cef0d4b512 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215802Z-r17775d4f98drzbdhC1SG103a000000008e0000000000gby + - 20250226T231043Z-167c755789dbhjzdhC1SG1t7h800000001r00000000090ke x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2281,12 +2198,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1c1a6fc2-dc47-4f99-a731-98b9156bb2f8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A30Z&ske=2025-02-25T04%3A57%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:08.0646043Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/78f28ca9-9689-4185-becf-93da320b80af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:48.4472748Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2296,17 +2213,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:08 GMT + - Wed, 26 Feb 2025 23:10:48 GMT mise-correlation-id: - - d6bcfd31-9fe2-4761-9e2f-1602361fad03 + - 1978b09a-1fb9-46f9-a5be-96396f212e13 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215807Z-r17775d4f98drzbdhC1SG103a000000008e0000000000gh4 + - 20250226T231048Z-167c755789dbhjzdhC1SG1t7h800000001r0000000009115 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2324,12 +2241,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1c1a6fc2-dc47-4f99-a731-98b9156bb2f8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:13.3176784Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/78f28ca9-9689-4185-becf-93da320b80af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:53.7007469Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -2339,17 +2256,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:13 GMT + - Wed, 26 Feb 2025 23:10:53 GMT mise-correlation-id: - - 7e5c30bc-756d-49ee-a9df-56661d1d78ca + - 4bab0626-9825-4ef9-868e-cacc9334d726 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215813Z-r17775d4f98drzbdhC1SG103a000000008e0000000000gx5 + - 20250226T231053Z-167c755789dbhjzdhC1SG1t7h800000001r00000000091c8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2367,12 +2284,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1100eb30-9a4e-4b43-a9dd-6160ff89e57e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"77c14088-fcab-4517-9481-36b6d1d75442":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ea0d7db3-ec7c-4c24-a4b4-2463c7d29116":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1c1a6fc2-dc47-4f99-a731-98b9156bb2f8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:13.5757215Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/4a490c82-5aeb-4203-a11a-8081510ad543?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A13Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:58:13.5760179Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/40f96224-4039-4fee-8803-4405af6ee1c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A13Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:58:13.5761244Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:45.99Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:09.144Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4d7dbc42-8ebb-4ceb-bc0e-66166cbb5137":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"1d43d236-4e92-4618-add5-1460ceadcdb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d3a27144-f8c0-4be7-ac00-0f16c4ad3251":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/78f28ca9-9689-4185-becf-93da320b80af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:54.3511041Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/e6264514-ca30-4b06-bd10-c84267d000dc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A54Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:54.35159Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/88f27882-fda5-493e-ac97-7e07d4228e8b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A54Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:54.3517704Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:34.927Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:53.365Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2382,17 +2299,17 @@ interactions: connection: - keep-alive content-length: - - '2868' + - '2876' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:13 GMT + - Wed, 26 Feb 2025 23:10:54 GMT mise-correlation-id: - - fcff8472-47d1-4980-849c-f94fe8fcecfe + - a3bb62a0-f9ca-4d72-8ea4-119b2ece359f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215813Z-r17775d4f98drzbdhC1SG103a000000008e0000000000gxf + - 20250226T231053Z-167c755789dbhjzdhC1SG1t7h800000001r00000000091cu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2415,7 +2332,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:44.7038791Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:44.7038791Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:08:33.8002638Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:08:33.8002638Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2424,9 +2341,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:14 GMT + - Wed, 26 Feb 2025 23:10:54 GMT etag: - - '"4f01bdc2-0000-0200-0000-67bceaf80000"' + - '"8f019164-0000-0200-0000-67bf9f080000"' expires: - '-1' pragma: @@ -2442,7 +2359,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B8F0888DE4284747AE84DD7A7FFDD806 Ref B: MAA201060516031 Ref C: 2025-02-24T21:58:13Z' + - 'Ref A: 487207F62BA34D5AA779F6FECD261571 Ref B: MAA201060515021 Ref C: 2025-02-26T23:10:54Z' status: code: 200 message: OK @@ -2456,12 +2373,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"1100eb30-9a4e-4b43-a9dd-6160ff89e57e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"77c14088-fcab-4517-9481-36b6d1d75442":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ea0d7db3-ec7c-4c24-a4b4-2463c7d29116":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1c1a6fc2-dc47-4f99-a731-98b9156bb2f8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:14.576236Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/4a490c82-5aeb-4203-a11a-8081510ad543?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A14Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:58:14.5767215Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/40f96224-4039-4fee-8803-4405af6ee1c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:58:14.5771315Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:45.99Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:09.144Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"4d7dbc42-8ebb-4ceb-bc0e-66166cbb5137":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"1d43d236-4e92-4618-add5-1460ceadcdb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d3a27144-f8c0-4be7-ac00-0f16c4ad3251":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/78f28ca9-9689-4185-becf-93da320b80af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:55.8122234Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/e6264514-ca30-4b06-bd10-c84267d000dc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A55Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:55.8128442Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/88f27882-fda5-493e-ac97-7e07d4228e8b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:55.813042Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:34.927Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:53.365Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2475,13 +2392,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:14 GMT + - Wed, 26 Feb 2025 23:10:55 GMT mise-correlation-id: - - 0b51cce0-ba72-4899-8550-6f1685e1f295 + - 07590a21-eb9c-4ed6-9f4f-048af21ef796 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215814Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009cbu + - 20250226T231055Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fw9z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2494,15 +2411,15 @@ interactions: "SystemAssigned", "publicIPDisabled": false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"1100eb30-9a4e-4b43-a9dd-6160ff89e57e": - null, "77c14088-fcab-4517-9481-36b6d1d75442": null, "ea0d7db3-ec7c-4c24-a4b4-2463c7d29116": - null, "079e2e41-f146-4a79-86e4-7ba2042ebdae": {"aggregate": "avg", "clientMetric": - "requests_per_sec", "condition": ">", "value": "78"}, "65022383-d865-4572-95f5-ed9e7356ff13": + true}, "passFailCriteria": {"passFailMetrics": {"4d7dbc42-8ebb-4ceb-bc0e-66166cbb5137": + null, "1d43d236-4e92-4618-add5-1460ceadcdb9": null, "d3a27144-f8c0-4be7-ac00-0f16c4ad3251": + null, "62892c96-8084-44aa-af7c-3f19ea82094a": {"aggregate": "avg", "clientMetric": + "requests_per_sec", "condition": ">", "value": "78"}, "e0de8050-083b-4c0e-b12d-a058566c7965": {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "c95a8528-dc82-4d0a-8ae6-7424068788a1": {"aggregate": "avg", "clientMetric": + "50"}, "7fdf3e1b-82b7-4fc3-9660-4a2244117ac3": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": false, "errorRate": 90, "errorRateTimeWindowInSeconds": - 60}}' + 60}, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -2511,16 +2428,16 @@ interactions: Connection: - keep-alive Content-Length: - - '1021' + - '1090' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c95a8528-dc82-4d0a-8ae6-7424068788a1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"65022383-d865-4572-95f5-ed9e7356ff13":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"079e2e41-f146-4a79-86e4-7ba2042ebdae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1c1a6fc2-dc47-4f99-a731-98b9156bb2f8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:14.9275253Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/4a490c82-5aeb-4203-a11a-8081510ad543?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A14Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:58:14.9280301Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/40f96224-4039-4fee-8803-4405af6ee1c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:58:14.9282349Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:45.99Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:14.918Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"7fdf3e1b-82b7-4fc3-9660-4a2244117ac3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"e0de8050-083b-4c0e-b12d-a058566c7965":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"62892c96-8084-44aa-af7c-3f19ea82094a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/78f28ca9-9689-4185-becf-93da320b80af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:56.2033102Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/e6264514-ca30-4b06-bd10-c84267d000dc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A56Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:56.2035149Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/88f27882-fda5-493e-ac97-7e07d4228e8b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:56.2036227Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:34.927Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:56.195Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2530,17 +2447,17 @@ interactions: connection: - keep-alive content-length: - - '2863' + - '2869' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:15 GMT + - Wed, 26 Feb 2025 23:10:56 GMT mise-correlation-id: - - cbb4e278-1b67-449f-b303-7e62b82ffc7e + - e04a36dd-e062-496f-9568-defcfb5b0c84 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215814Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009cc9 + - 20250226T231055Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fwc8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2558,12 +2475,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1c1a6fc2-dc47-4f99-a731-98b9156bb2f8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:15.1814398Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/4a490c82-5aeb-4203-a11a-8081510ad543?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A15Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:08:15.1815572Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/40f96224-4039-4fee-8803-4405af6ee1c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A15Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:08:15.1816593Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/78f28ca9-9689-4185-becf-93da320b80af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:56.463539Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/e6264514-ca30-4b06-bd10-c84267d000dc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A56Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:56.4636228Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/88f27882-fda5-493e-ac97-7e07d4228e8b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:56.463713Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -2573,17 +2490,17 @@ interactions: connection: - keep-alive content-length: - - '1715' + - '1712' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:15 GMT + - Wed, 26 Feb 2025 23:10:56 GMT mise-correlation-id: - - fea5f249-bbb7-4520-9fef-6a5d167b6625 + - 8aa88a99-ca30-400c-8a09-8d4e3b446774 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215815Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009ccu + - 20250226T231056Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fwdh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2603,9 +2520,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: string: '' @@ -2616,13 +2533,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:58:15 GMT + - Wed, 26 Feb 2025 23:10:56 GMT mise-correlation-id: - - 1b382972-d463-4d06-9746-660fd16aab3d + - 150d4179-d5cb-4070-85fb-d61ba9779a6e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215815Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009cdm + - 20250226T231056Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fwe7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2647,14 +2564,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/3b7e7a81-b985-47e6-aa44-f2803c837050?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A30Z&ske=2025-02-25T04%3A57%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:08:16.1201035Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/fa2b2656-31ee-4959-9b1c-7680ef14d0db?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A58Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:58.1504215Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -2662,19 +2579,19 @@ interactions: connection: - keep-alive content-length: - - '570' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:16 GMT + - Wed, 26 Feb 2025 23:10:58 GMT location: - - https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 97e9c995-dac9-42f3-868f-59cbb15eb2df + - d832a30a-dd58-4e49-9975-c8477045bb69 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215815Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009cef + - 20250226T231056Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fwf7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2692,12 +2609,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/3b7e7a81-b985-47e6-aa44-f2803c837050?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A16Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:08:16.3710016Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/fa2b2656-31ee-4959-9b1c-7680ef14d0db?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A58Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:58.4019961Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -2707,17 +2624,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:16 GMT + - Wed, 26 Feb 2025 23:10:58 GMT mise-correlation-id: - - f7837fb1-ecaa-469e-a473-647ef8ba1fe3 + - a45b6589-5ba5-4f96-914a-7218548c5081 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215816Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009cfb + - 20250226T231058Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fwmg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2737,9 +2654,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: string: '' @@ -2750,13 +2667,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:58:16 GMT + - Wed, 26 Feb 2025 23:10:58 GMT mise-correlation-id: - - 444bbbb0-79ad-4607-b05c-ff78163f49cc + - b1fb3c35-18f5-45e6-bbd7-71cb5b7eca96 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215816Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009cfs + - 20250226T231058Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fwna x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2785,14 +2702,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/85fbe92f-5f38-4752-bb3a-7bca9caf283f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:08:18.3399185Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/9396260e-35b2-4c1e-a9d1-7efe32b8d5af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:59.1218797Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -2800,19 +2717,19 @@ interactions: connection: - keep-alive content-length: - - '566' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:18 GMT + - Wed, 26 Feb 2025 23:10:59 GMT location: - - https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - 92119f60-3008-4a1c-b86e-55fa1d15446f + - d5988796-12e6-4ba6-b885-17cebc3964e4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215816Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009cgb + - 20250226T231058Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fwp9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2830,12 +2747,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/85fbe92f-5f38-4752-bb3a-7bca9caf283f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A18Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:08:18.5899682Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/9396260e-35b2-4c1e-a9d1-7efe32b8d5af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:59.370438Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -2845,17 +2762,17 @@ interactions: connection: - keep-alive content-length: - - '566' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:18 GMT + - Wed, 26 Feb 2025 23:10:59 GMT mise-correlation-id: - - 6557ffd3-37f2-4175-b32e-a8353c3290e2 + - 19fe47a6-41a1-46cc-b070-975203fd77f9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215818Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009cmh + - 20250226T231059Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fwqm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2875,9 +2792,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: string: '' @@ -2888,13 +2805,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:58:19 GMT + - Wed, 26 Feb 2025 23:10:59 GMT mise-correlation-id: - - a27c2a4c-c7d3-4d6b-ad36-fa82d1342f90 + - 9c84ec5f-559c-4121-8b39-c076cbf46878 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215818Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009cn4 + - 20250226T231059Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fwrd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3003,14 +2920,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1f533bd7-4242-4e30-b197-4b1243177890?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:19.3838738Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/1e04f73a-e782-40eb-93a8-4d8ff344cac4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:00.1990806Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -3018,19 +2935,19 @@ interactions: connection: - keep-alive content-length: - - '562' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:19 GMT + - Wed, 26 Feb 2025 23:11:00 GMT location: - - https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 6148997e-2104-44ee-b5f3-bfcbc667c28b + - 31e4c693-7b23-4117-be6d-fd287dd64fb6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215819Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009cnr + - 20250226T231059Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fwsg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3048,12 +2965,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1f533bd7-4242-4e30-b197-4b1243177890?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A30Z&ske=2025-02-25T04%3A57%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A19Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:19.6316005Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/1e04f73a-e782-40eb-93a8-4d8ff344cac4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:00.4583768Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3063,17 +2980,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:19 GMT + - Wed, 26 Feb 2025 23:11:00 GMT mise-correlation-id: - - 2c7f8687-64fe-47e5-9d3e-de5a78800962 + - 4505e416-db3a-4412-9c2c-5afdcb222430 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215819Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009cpe + - 20250226T231100Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fwu5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3091,12 +3008,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1f533bd7-4242-4e30-b197-4b1243177890?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A24Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:24.8809004Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/1e04f73a-e782-40eb-93a8-4d8ff344cac4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:05.7037215Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3106,17 +3023,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:24 GMT + - Wed, 26 Feb 2025 23:11:05 GMT mise-correlation-id: - - 150b4fb4-841a-48ea-bb3b-f2133150691f + - 1f767df0-72e1-4f91-a3fd-825e083b632e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215824Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009cza + - 20250226T231105Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fxbx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3134,12 +3051,55 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1f533bd7-4242-4e30-b197-4b1243177890?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A30Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:30.1421424Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/1e04f73a-e782-40eb-93a8-4d8ff344cac4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:10.9533524Z","validationStatus":"VALIDATION_INITIATED"}' + headers: + accept-ranges: + - bytes + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, + 2024-12-01-preview + connection: + - keep-alive + content-length: + - '561' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Feb 2025 23:11:11 GMT + mise-correlation-id: + - e6e85c5f-3b01-4fc9-a6e5-867f2e5738ef + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20250226T231110Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fxxd + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + method: GET + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + response: + body: + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/1e04f73a-e782-40eb-93a8-4d8ff344cac4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A16Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:16.200876Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3153,13 +3113,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:30 GMT + - Wed, 26 Feb 2025 23:11:16 GMT mise-correlation-id: - - e987ed5e-2f66-4559-97d9-58f8ce9b7fab + - bc376172-0671-47ca-8797-815f6672b671 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215830Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009d9x + - 20250226T231116Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fydg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3177,12 +3137,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1f533bd7-4242-4e30-b197-4b1243177890?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:35.3918914Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/1e04f73a-e782-40eb-93a8-4d8ff344cac4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A35Z&ske=2025-02-27T06%3A09%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:21.4558785Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3192,17 +3152,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:35 GMT + - Wed, 26 Feb 2025 23:11:21 GMT mise-correlation-id: - - 1aff840b-7750-4730-9485-579e93aa8ad0 + - 32bf05af-4065-49c7-becc-89ff30fb4f98 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215835Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009dp1 + - 20250226T231121Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fyx9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3220,12 +3180,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1f533bd7-4242-4e30-b197-4b1243177890?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A40Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:40.6387038Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/1e04f73a-e782-40eb-93a8-4d8ff344cac4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:26.7041569Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3235,17 +3195,17 @@ interactions: connection: - keep-alive content-length: - - '564' + - '567' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:40 GMT + - Wed, 26 Feb 2025 23:11:26 GMT mise-correlation-id: - - 7d1af6f8-9fd4-4c0e-b0ab-672387a9fa12 + - 260b0e18-cbbe-4d50-b01e-9f01b368271f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215840Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009e0a + - 20250226T231126Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fzdg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3263,12 +3223,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1f533bd7-4242-4e30-b197-4b1243177890?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A47Z&ske=2025-02-25T04%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:45.9266597Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/1e04f73a-e782-40eb-93a8-4d8ff344cac4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A36Z&ske=2025-02-27T06%3A09%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:31.952167Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3278,17 +3238,17 @@ interactions: connection: - keep-alive content-length: - - '564' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:46 GMT + - Wed, 26 Feb 2025 23:11:32 GMT mise-correlation-id: - - 3df67c2a-77fd-41dd-af3f-2cbd8e1b8710 + - c631c77d-b8c0-4b2b-abad-0f4729bd3ba0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215845Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009e9m + - 20250226T231131Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000fzxz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3306,12 +3266,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1f533bd7-4242-4e30-b197-4b1243177890?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:51.1820848Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/1e04f73a-e782-40eb-93a8-4d8ff344cac4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A21%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:21:37.2013205Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -3321,17 +3281,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:51 GMT + - Wed, 26 Feb 2025 23:11:37 GMT mise-correlation-id: - - 2d5444f0-521f-46dd-b165-fddd9b567596 + - 1e6102c7-866e-41e0-9667-c745a0d39d6f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215851Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009ekn + - 20250226T231137Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000g0cm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3349,12 +3309,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c95a8528-dc82-4d0a-8ae6-7424068788a1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"65022383-d865-4572-95f5-ed9e7356ff13":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"079e2e41-f146-4a79-86e4-7ba2042ebdae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1f533bd7-4242-4e30-b197-4b1243177890?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:51.4510491Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/3b7e7a81-b985-47e6-aa44-f2803c837050?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A51Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:58:51.4513478Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/85fbe92f-5f38-4752-bb3a-7bca9caf283f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A51Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:58:51.4514475Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:45.99Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:50.212Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"7fdf3e1b-82b7-4fc3-9660-4a2244117ac3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"e0de8050-083b-4c0e-b12d-a058566c7965":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"62892c96-8084-44aa-af7c-3f19ea82094a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/1e04f73a-e782-40eb-93a8-4d8ff344cac4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:11:37.4492667Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/fa2b2656-31ee-4959-9b1c-7680ef14d0db?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A37Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:11:37.4497139Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/9396260e-35b2-4c1e-a9d1-7efe32b8d5af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:11:37.4498908Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:34.927Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:34.081Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3364,17 +3324,17 @@ interactions: connection: - keep-alive content-length: - - '2863' + - '2867' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:51 GMT + - Wed, 26 Feb 2025 23:11:37 GMT mise-correlation-id: - - 176b4ba6-e65b-4928-a6ae-bc425dd1cd81 + - c535c4b9-4c41-4316-901a-15c1677d0227 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215851Z-r17775d4f98k7mk2hC1SG1n7700000000rq0000000009em7 + - 20250226T231137Z-167c755789d9f6qshC1SG1fkqn00000002ag00000000g0dm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3397,7 +3357,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:55:44.7038791Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:55:44.7038791Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:08:33.8002638Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:08:33.8002638Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3406,9 +3366,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:52 GMT + - Wed, 26 Feb 2025 23:11:38 GMT etag: - - '"4f01bdc2-0000-0200-0000-67bceaf80000"' + - '"8f019164-0000-0200-0000-67bf9f080000"' expires: - '-1' pragma: @@ -3424,7 +3384,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 96C6B07C5DB541AE829655EC4666362C Ref B: MAA201060516019 Ref C: 2025-02-24T21:58:51Z' + - 'Ref A: 969A9C8F2F624FB88488643CABD53CFE Ref B: MAA201060513045 Ref C: 2025-02-26T23:11:37Z' status: code: 200 message: OK @@ -3438,12 +3398,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://dec6e2f6-d7de-4c64-b98c-f9bbc6085fcb.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview + uri: https://9434a323-084b-4b9a-acfb-b0b57495a475.eastus.cnt-prod.loadtesting.azure.com/tests/loadtest-splitcsv-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c95a8528-dc82-4d0a-8ae6-7424068788a1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"65022383-d865-4572-95f5-ed9e7356ff13":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"079e2e41-f146-4a79-86e4-7ba2042ebdae":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/1f533bd7-4242-4e30-b197-4b1243177890?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:53.4584029Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/3b7e7a81-b985-47e6-aa44-f2803c837050?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A53Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:58:53.4587826Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://p7lg8lb9b122eagc4gzkoj0e.z5.blob.storage.azure.net/430d7074-fe2b-4d8f-8a59-5d6b6636a191/85fbe92f-5f38-4752-bb3a-7bca9caf283f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A56%3A48Z&ske=2025-02-25T04%3A56%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:58:53.4589078Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:45.99Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:50.212Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"7fdf3e1b-82b7-4fc3-9660-4a2244117ac3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"e0de8050-083b-4c0e-b12d-a058566c7965":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"62892c96-8084-44aa-af7c-3f19ea82094a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/1e04f73a-e782-40eb-93a8-4d8ff344cac4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:11:38.9460805Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/fa2b2656-31ee-4959-9b1c-7680ef14d0db?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A38Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:11:38.9466767Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rjj5ncr1e4k2nqr8hhq0gro3.z13.blob.storage.azure.net/f6798511-078b-4cdf-aaee-54c2f6bac10a/9396260e-35b2-4c1e-a9d1-7efe32b8d5af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A59Z&ske=2025-02-27T06%3A09%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A11%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:11:38.9467761Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"loadtest-splitcsv-case","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:34.927Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:11:34.081Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3453,17 +3413,17 @@ interactions: connection: - keep-alive content-length: - - '2865' + - '2867' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:53 GMT + - Wed, 26 Feb 2025 23:11:39 GMT mise-correlation-id: - - 153c297b-ca2c-448e-a989-06da3d209605 + - bc6dc452-ef31-4a6d-9430-f386316ffbaf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215852Z-r17775d4f98nkpf8hC1SG11nqg000000140g000000004g1b + - 20250226T231138Z-167c755789dw9d62hC1SG1x2v800000001sg0000000048ev x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_update.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_update.yaml index c92210c9dd4..2036bf45b1b 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_update.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_update.yaml @@ -14,7 +14,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:57:19.3606403Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:57:19.3606403Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:08:47.5976146Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:08:47.5976146Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -23,9 +23,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:52 GMT + - Wed, 26 Feb 2025 23:09:21 GMT etag: - - '"4f01c1ca-0000-0200-0000-67bceb560000"' + - '"8f018f65-0000-0200-0000-67bf9f180000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6F9C2962B2C246DD8B4903CBDD76EC7F Ref B: MAA201060516049 Ref C: 2025-02-24T21:57:52Z' + - 'Ref A: 66889768751446DA97D78273E7AC220D Ref B: MAA201060516053 Ref C: 2025-02-26T23:09:21Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -71,15 +71,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:57:53 GMT + - Wed, 26 Feb 2025 23:09:22 GMT mise-correlation-id: - - 5bffd2ad-5696-480e-abb4-c19938b050a3 + - 1ebaccdf-c7dc-466d-a2f2-ea6634a0cd10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215753Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002wt1 + - 20250226T230922Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004utm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -95,17 +95,18 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"9b07a05a-b7d6-483c-a8c7-d708d18dc037": + true}, "passFailCriteria": {"passFailMetrics": {"eae68ba3-fad8-48d7-a19c-ddc8ac5b59ab": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "b82edbea-20dd-4d7e-bdf2-e42e337020aa": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "71394a02-7670-4757-b5d4-533c29f8e3e8": + "78"}, "048663b4-1ff2-4eda-ac52-bdbfc4a71f8d": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "e125b1c0-0491-4430-9f09-0f8c4ecf96ee": {"aggregate": "p75", "clientMetric": "response_time_ms", "condition": ">", "value": - "380"}, "04c99834-d4e9-4003-8a2a-b20e08c9fb53": {"aggregate": "p99", "clientMetric": - "response_time_ms", "condition": ">", "value": "520"}, "2f786ce0-1ebe-44ac-9d8b-d9f5fb0f4797": + "380"}, "f88a4e06-0611-41ca-8ef0-2529ab8d72a6": {"aggregate": "p99", "clientMetric": + "response_time_ms", "condition": ">", "value": "520"}, "98609ab2-03db-476b-8e79-1fe78bc9acf6": {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", - "value": "540"}, "9c0b2fa5-14ac-4d29-a347-276306239e50": {"aggregate": "avg", + "value": "540"}, "d81f8c06-362a-448b-92ce-d0e7bd77f64d": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": - "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}}' + "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true}, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -114,17 +115,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1307' + - '1376' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"9b07a05a-b7d6-483c-a8c7-d708d18dc037":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b82edbea-20dd-4d7e-bdf2-e42e337020aa":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"71394a02-7670-4757-b5d4-533c29f8e3e8":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"04c99834-d4e9-4003-8a2a-b20e08c9fb53":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"2f786ce0-1ebe-44ac-9d8b-d9f5fb0f4797":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"9c0b2fa5-14ac-4d29-a347-276306239e50":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:57:53.884Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:53.884Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"eae68ba3-fad8-48d7-a19c-ddc8ac5b59ab":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"048663b4-1ff2-4eda-ac52-bdbfc4a71f8d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e125b1c0-0491-4430-9f09-0f8c4ecf96ee":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f88a4e06-0611-41ca-8ef0-2529ab8d72a6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"98609ab2-03db-476b-8e79-1fe78bc9acf6":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d81f8c06-362a-448b-92ce-d0e7bd77f64d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:22.788Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:22.788Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -136,15 +137,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:54 GMT + - Wed, 26 Feb 2025 23:09:22 GMT location: - - https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview + - https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview mise-correlation-id: - - 4cedf071-d688-4960-98e5-321bc36f8816 + - ba5e71af-0c08-4c09-ae95-33677230cc4b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215753Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002wtg + - 20250226T230922Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004uu9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -162,9 +163,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -181,13 +182,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:54 GMT + - Wed, 26 Feb 2025 23:09:23 GMT mise-correlation-id: - - 30cec528-6150-4a67-8ac0-0c0693c96237 + - 89c105a5-522d-4046-b93c-0fa86fc4a490 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215754Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002wu0 + - 20250226T230922Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004uw1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -212,14 +213,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/b5b83892-9b08-4c77-87b7-a3060e6db0c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A54Z&ske=2025-02-25T04%3A57%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A54Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:07:54.6798369Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/ffe486f4-a899-4ef6-ba4e-919c464a57f0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A23Z&ske=2025-02-27T06%3A09%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A23Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:23.8337151Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -231,15 +232,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:54 GMT + - Wed, 26 Feb 2025 23:09:23 GMT location: - - https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - a3e4284b-7750-4879-aae2-9970e5ed9719 + - 30000ec8-6995-4e3c-a522-b41c86aecbe7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215754Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002wud + - 20250226T230923Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004uxf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -257,12 +258,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/b5b83892-9b08-4c77-87b7-a3060e6db0c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A54Z&ske=2025-02-25T04%3A57%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A54Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:07:54.9702207Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/ffe486f4-a899-4ef6-ba4e-919c464a57f0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A24Z&ske=2025-02-27T06%3A09%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A24Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:19:24.1167333Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -276,13 +277,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:55 GMT + - Wed, 26 Feb 2025 23:09:24 GMT mise-correlation-id: - - 8b41bd4a-694a-4b5c-97d9-1e8b3953ccf7 + - 6911f4e4-f259-49b1-a358-e71c137f3c64 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215754Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002wv2 + - 20250226T230923Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004uzn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -311,14 +312,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/8f0092d7-ae2f-414a-b2b2-8056db296f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A55Z&ske=2025-02-25T04%3A57%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:07:55.3828954Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/02c35f06-23c8-4d30-9278-529132d73e2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A24Z&ske=2025-02-27T06%3A09%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:25.4667867Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -326,19 +327,19 @@ interactions: connection: - keep-alive content-length: - - '567' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:55 GMT + - Wed, 26 Feb 2025 23:09:25 GMT location: - - https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - a7a30ed4-e6e1-438b-8522-0a4e907e8f52 + - df4988c0-15d0-4328-a50a-aac23aa7fd47 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215755Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002wvm + - 20250226T230924Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004v0v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -356,12 +357,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/8f0092d7-ae2f-414a-b2b2-8056db296f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A55Z&ske=2025-02-25T04%3A57%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A55Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:07:55.6671281Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/02c35f06-23c8-4d30-9278-529132d73e2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A25Z&ske=2025-02-27T06%3A09%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A25Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:19:25.7494593Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -371,17 +372,17 @@ interactions: connection: - keep-alive content-length: - - '567' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:55 GMT + - Wed, 26 Feb 2025 23:09:25 GMT mise-correlation-id: - - d16b67a9-ccc5-4a74-a8f7-44d46ef0f531 + - 97ac9030-702b-4672-9dee-9e4634257265 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215755Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002ww7 + - 20250226T230925Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004v51 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -490,14 +491,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A54Z&ske=2025-02-25T04%3A57%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:56.201849Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A24Z&ske=2025-02-27T06%3A09%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:26.2272043Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -505,19 +506,19 @@ interactions: connection: - keep-alive content-length: - - '560' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:56 GMT + - Wed, 26 Feb 2025 23:09:26 GMT location: - - https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - dce65363-43e0-46a3-b7ae-e970801e9cb2 + - c171f37a-508b-4f6f-a312-8e9bafa76c3a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215755Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002wwp + - 20250226T230925Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004v5z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -535,12 +536,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A54Z&ske=2025-02-25T04%3A57%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A56Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:56.4522433Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A23Z&ske=2025-02-27T06%3A09%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A26Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:26.4942727Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -550,17 +551,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '563' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:56 GMT + - Wed, 26 Feb 2025 23:09:26 GMT mise-correlation-id: - - d06004af-927d-410a-8268-987900d71f3d + - eb9f1bcb-159e-4c53-b851-3bf9217cafe8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215756Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002wxd + - 20250226T230926Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004v7b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -578,12 +579,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A54Z&ske=2025-02-25T04%3A57%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A01Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:01.7069947Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A23Z&ske=2025-02-27T06%3A09%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A31Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:31.7469753Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -593,17 +594,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:01 GMT + - Wed, 26 Feb 2025 23:09:31 GMT mise-correlation-id: - - 2f628060-b290-4074-893e-58c11e297a7b + - c23ea740-0ba6-49ba-b473-5b78b82bc7ba strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215801Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002x5b + - 20250226T230931Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004vs0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -621,12 +622,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A58%3A06Z&ske=2025-02-25T04%3A58%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A07Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:07.0021255Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:37.3478011Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -636,17 +637,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:07 GMT + - Wed, 26 Feb 2025 23:09:37 GMT mise-correlation-id: - - dd210f48-78c5-4747-bcf2-f776029b76b1 + - 16ca3d5d-0658-4d54-be12-bdaf40460681 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215806Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002xdn + - 20250226T230936Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004wbw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -664,12 +665,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A58%3A06Z&ske=2025-02-25T04%3A58%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A12Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:12.2606161Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A24Z&ske=2025-02-27T06%3A09%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:42.6075578Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -683,13 +684,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:12 GMT + - Wed, 26 Feb 2025 23:09:42 GMT mise-correlation-id: - - 20104b33-5424-4eee-88ce-d43bd385c7ea + - 976b98d5-d1ee-4d1d-882a-8682fc655908 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215812Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002xva + - 20250226T230942Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004x2g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -707,12 +708,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A58%3A17Z&ske=2025-02-25T04%3A58%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:17.534397Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A24Z&ske=2025-02-27T06%3A09%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A47Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:47.8627983Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -722,17 +723,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:17 GMT + - Wed, 26 Feb 2025 23:09:47 GMT mise-correlation-id: - - a053686d-d045-49f5-9522-d85b5bfadf27 + - f784db45-a802-4aaf-aee0-be80675ea68f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215817Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002y3f + - 20250226T230947Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004xr5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -750,12 +751,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A58%3A17Z&ske=2025-02-25T04%3A58%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:22.7823679Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A24Z&ske=2025-02-27T06%3A09%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:53.1203071Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -769,13 +770,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:22 GMT + - Wed, 26 Feb 2025 23:09:53 GMT mise-correlation-id: - - a79dc84a-c59e-4f58-9689-16e96de1e61a + - f13d79fe-7bbd-46c5-9a3c-9a53e720fc43 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215822Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002yd0 + - 20250226T230952Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004y9a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -793,12 +794,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A54Z&ske=2025-02-25T04%3A57%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A28Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:28.0322463Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:19:58.3704443Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -808,17 +809,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:28 GMT + - Wed, 26 Feb 2025 23:09:58 GMT mise-correlation-id: - - a9fee1b2-d1ba-45f5-a1d0-8706d336caab + - d5e5f798-62f4-44f2-936b-40b4a216c837 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215827Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002yp9 + - 20250226T230958Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004yye x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -836,12 +837,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A54Z&ske=2025-02-25T04%3A57%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:33.2820683Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A24Z&ske=2025-02-27T06%3A09%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:03.8535875Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -851,17 +852,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:33 GMT + - Wed, 26 Feb 2025 23:10:03 GMT mise-correlation-id: - - 2f6e01a1-76ac-4e6a-8bc6-3325f9f2c6c0 + - 0d1dcf6e-16c8-43c2-830c-86b36fd15b55 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215833Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002yzh + - 20250226T231003Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004zm1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -879,13 +880,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"9b07a05a-b7d6-483c-a8c7-d708d18dc037":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b82edbea-20dd-4d7e-bdf2-e42e337020aa":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"71394a02-7670-4757-b5d4-533c29f8e3e8":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"04c99834-d4e9-4003-8a2a-b20e08c9fb53":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"2f786ce0-1ebe-44ac-9d8b-d9f5fb0f4797":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"9c0b2fa5-14ac-4d29-a347-276306239e50":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A55Z&ske=2025-02-25T04%3A57%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:33.5571116Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/b5b83892-9b08-4c77-87b7-a3060e6db0c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A55Z&ske=2025-02-25T04%3A57%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A33Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:58:33.5574987Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/8f0092d7-ae2f-414a-b2b2-8056db296f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A55Z&ske=2025-02-25T04%3A57%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:58:33.5576367Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:57:53.884Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:28.823Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"eae68ba3-fad8-48d7-a19c-ddc8ac5b59ab":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"048663b4-1ff2-4eda-ac52-bdbfc4a71f8d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e125b1c0-0491-4430-9f09-0f8c4ecf96ee":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f88a4e06-0611-41ca-8ef0-2529ab8d72a6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"98609ab2-03db-476b-8e79-1fe78bc9acf6":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d81f8c06-362a-448b-92ce-d0e7bd77f64d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A25Z&ske=2025-02-27T06%3A09%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:04.1151222Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/ffe486f4-a899-4ef6-ba4e-919c464a57f0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A25Z&ske=2025-02-27T06%3A09%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A04Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:04.1153942Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/02c35f06-23c8-4d30-9278-529132d73e2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A25Z&ske=2025-02-27T06%3A09%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:04.1154945Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:22.788Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:58.749Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -895,17 +896,17 @@ interactions: connection: - keep-alive content-length: - - '3370' + - '3368' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:33 GMT + - Wed, 26 Feb 2025 23:10:04 GMT mise-correlation-id: - - 1390fbe7-8f8d-4792-bb29-1cb5dfd5a9d5 + - 3d6ec71b-7f6a-4496-899a-afa2855d420d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215833Z-r17775d4f98p9dsnhC1SG1tym00000000e3g000000002yzv + - 20250226T231003Z-167c755789d9f6qshC1SG1fkqn00000002gg000000004znb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -928,7 +929,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:57:19.3606403Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:57:19.3606403Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:08:47.5976146Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:08:47.5976146Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -937,9 +938,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:34 GMT + - Wed, 26 Feb 2025 23:10:04 GMT etag: - - '"4f01c1ca-0000-0200-0000-67bceb560000"' + - '"8f018f65-0000-0200-0000-67bf9f180000"' expires: - '-1' pragma: @@ -955,7 +956,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D4671F9EFF8F44F1981EBE1BCB036528 Ref B: MAA201060513037 Ref C: 2025-02-24T21:58:33Z' + - 'Ref A: A3C9978470E14189B5AFEDF22A89ED88 Ref B: MAA201060513031 Ref C: 2025-02-26T23:10:04Z' status: code: 200 message: OK @@ -969,13 +970,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-12-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"9b07a05a-b7d6-483c-a8c7-d708d18dc037":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b82edbea-20dd-4d7e-bdf2-e42e337020aa":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"71394a02-7670-4757-b5d4-533c29f8e3e8":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"04c99834-d4e9-4003-8a2a-b20e08c9fb53":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"2f786ce0-1ebe-44ac-9d8b-d9f5fb0f4797":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"9c0b2fa5-14ac-4d29-a347-276306239e50":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A55Z&ske=2025-02-25T04%3A57%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:35.4966771Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/b5b83892-9b08-4c77-87b7-a3060e6db0c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A55Z&ske=2025-02-25T04%3A57%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A35Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:58:35.4971824Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/8f0092d7-ae2f-414a-b2b2-8056db296f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A55Z&ske=2025-02-25T04%3A57%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:58:35.4973273Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:57:53.884Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:28.823Z","lastModifiedBy":"hbisht@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"eae68ba3-fad8-48d7-a19c-ddc8ac5b59ab":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"048663b4-1ff2-4eda-ac52-bdbfc4a71f8d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e125b1c0-0491-4430-9f09-0f8c4ecf96ee":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f88a4e06-0611-41ca-8ef0-2529ab8d72a6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"98609ab2-03db-476b-8e79-1fe78bc9acf6":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d81f8c06-362a-448b-92ce-d0e7bd77f64d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:06.1153186Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/ffe486f4-a899-4ef6-ba4e-919c464a57f0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A06Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:06.1157054Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/02c35f06-23c8-4d30-9278-529132d73e2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:06.1158874Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:22.788Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:58.749Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -985,17 +986,17 @@ interactions: connection: - keep-alive content-length: - - '3384' + - '3382' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:35 GMT + - Wed, 26 Feb 2025 23:10:06 GMT mise-correlation-id: - - 846653cb-519e-4742-af04-193abefc240d + - 627d117e-c5b9-4b8f-b8a4-24950c2f6662 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215834Z-r17775d4f98p9dsnhC1SG1tym00000000e50000000000f0z + - 20250226T231005Z-167c755789dbhjzdhC1SG1t7h800000001tg0000000044dc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1018,7 +1019,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:57:19.3606403Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:57:19.3606403Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:08:47.5976146Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:08:47.5976146Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1027,9 +1028,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:35 GMT + - Wed, 26 Feb 2025 23:10:06 GMT etag: - - '"4f01c1ca-0000-0200-0000-67bceb560000"' + - '"8f018f65-0000-0200-0000-67bf9f180000"' expires: - '-1' pragma: @@ -1045,7 +1046,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3E950525691E459F880D93F2FD30FD2E Ref B: MAA201060513027 Ref C: 2025-02-24T21:58:35Z' + - 'Ref A: 1FD254985DB1433F81722655F4ECF0B0 Ref B: MAA201060515031 Ref C: 2025-02-26T23:10:06Z' status: code: 200 message: OK @@ -1059,13 +1060,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"9b07a05a-b7d6-483c-a8c7-d708d18dc037":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b82edbea-20dd-4d7e-bdf2-e42e337020aa":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"71394a02-7670-4757-b5d4-533c29f8e3e8":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"04c99834-d4e9-4003-8a2a-b20e08c9fb53":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"2f786ce0-1ebe-44ac-9d8b-d9f5fb0f4797":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"9c0b2fa5-14ac-4d29-a347-276306239e50":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A54Z&ske=2025-02-25T04%3A57%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:36.9403636Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/b5b83892-9b08-4c77-87b7-a3060e6db0c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A54Z&ske=2025-02-25T04%3A57%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A36Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:58:36.9407926Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/8f0092d7-ae2f-414a-b2b2-8056db296f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A54Z&ske=2025-02-25T04%3A57%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:58:36.9409641Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:57:53.884Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:28.823Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"eae68ba3-fad8-48d7-a19c-ddc8ac5b59ab":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"048663b4-1ff2-4eda-ac52-bdbfc4a71f8d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e125b1c0-0491-4430-9f09-0f8c4ecf96ee":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f88a4e06-0611-41ca-8ef0-2529ab8d72a6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"98609ab2-03db-476b-8e79-1fe78bc9acf6":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d81f8c06-362a-448b-92ce-d0e7bd77f64d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A24Z&ske=2025-02-27T06%3A09%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:08.3376198Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/ffe486f4-a899-4ef6-ba4e-919c464a57f0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A24Z&ske=2025-02-27T06%3A09%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A08Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:08.3379357Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/02c35f06-23c8-4d30-9278-529132d73e2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A24Z&ske=2025-02-27T06%3A09%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:08.338065Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:22.788Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:58.749Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1075,17 +1076,17 @@ interactions: connection: - keep-alive content-length: - - '3372' + - '3367' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:37 GMT + - Wed, 26 Feb 2025 23:10:08 GMT mise-correlation-id: - - 04bde893-8067-40fc-a80d-8e45eef5f5a7 + - f0c14104-a53d-4897-9942-dfae1e571187 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215836Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng000000002yud + - 20250226T231007Z-167c755789dx4ktjhC1SG17mp000000000rg000000007dsp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1100,7 +1101,7 @@ interactions: "loadTestConfiguration": {"engineInstances": 11, "splitAllCSVs": false, "quickStartTest": false, "regionalLoadTestConfig": null}, "autoStopCriteria": {"autoStopDisabled": true, "errorRate": 90.0, "errorRateTimeWindowInSeconds": 60}, "baselineTestRunId": - null}' + null, "engineBuiltinIdentityType": null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -1109,17 +1110,17 @@ interactions: Connection: - keep-alive Content-Length: - - '487' + - '556' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"9b07a05a-b7d6-483c-a8c7-d708d18dc037":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b82edbea-20dd-4d7e-bdf2-e42e337020aa":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"71394a02-7670-4757-b5d4-533c29f8e3e8":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"04c99834-d4e9-4003-8a2a-b20e08c9fb53":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"2f786ce0-1ebe-44ac-9d8b-d9f5fb0f4797":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"9c0b2fa5-14ac-4d29-a347-276306239e50":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A58%3A17Z&ske=2025-02-25T04%3A58%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:37.3315757Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/b5b83892-9b08-4c77-87b7-a3060e6db0c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A58%3A17Z&ske=2025-02-25T04%3A58%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A37Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:58:37.3319739Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/8f0092d7-ae2f-414a-b2b2-8056db296f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A58%3A17Z&ske=2025-02-25T04%3A58%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:58:37.3320803Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:57:53.884Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:37.322Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"eae68ba3-fad8-48d7-a19c-ddc8ac5b59ab":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"048663b4-1ff2-4eda-ac52-bdbfc4a71f8d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e125b1c0-0491-4430-9f09-0f8c4ecf96ee":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f88a4e06-0611-41ca-8ef0-2529ab8d72a6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"98609ab2-03db-476b-8e79-1fe78bc9acf6":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d81f8c06-362a-448b-92ce-d0e7bd77f64d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:08.6534296Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/ffe486f4-a899-4ef6-ba4e-919c464a57f0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A08Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:08.6536569Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/02c35f06-23c8-4d30-9278-529132d73e2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:08.6537553Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:22.788Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:08.644Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1129,17 +1130,17 @@ interactions: connection: - keep-alive content-length: - - '3370' + - '3372' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:37 GMT + - Wed, 26 Feb 2025 23:10:08 GMT mise-correlation-id: - - 7646ecd2-f2fb-4b2a-a185-75544ffecf6d + - 8314f786-dd5b-4549-a8ed-e0dc6c23e2e6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215837Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng000000002yvw + - 20250226T231008Z-167c755789dx4ktjhC1SG17mp000000000rg000000007dws x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1157,12 +1158,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A55Z&ske=2025-02-25T04%3A57%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:37.5867849Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/b5b83892-9b08-4c77-87b7-a3060e6db0c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A55Z&ske=2025-02-25T04%3A57%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A37Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:08:37.5868851Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/8f0092d7-ae2f-414a-b2b2-8056db296f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A55Z&ske=2025-02-25T04%3A57%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:08:37.586978Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A25Z&ske=2025-02-27T06%3A09%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:08.9645002Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/ffe486f4-a899-4ef6-ba4e-919c464a57f0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A25Z&ske=2025-02-27T06%3A09%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A08Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:08.9647234Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/02c35f06-23c8-4d30-9278-529132d73e2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A25Z&ske=2025-02-27T06%3A09%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A08Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:08.9648431Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1172,17 +1173,17 @@ interactions: connection: - keep-alive content-length: - - '1709' + - '1714' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:37 GMT + - Wed, 26 Feb 2025 23:10:09 GMT mise-correlation-id: - - 182cd64d-df8e-42a5-b37f-b3ed1fe4ede8 + - d1f66656-d6f0-45f5-aa38-ef70f0929002 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215837Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng000000002yw8 + - 20250226T231008Z-167c755789dx4ktjhC1SG17mp000000000rg000000007dxw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1200,13 +1201,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"9b07a05a-b7d6-483c-a8c7-d708d18dc037":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b82edbea-20dd-4d7e-bdf2-e42e337020aa":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"71394a02-7670-4757-b5d4-533c29f8e3e8":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"04c99834-d4e9-4003-8a2a-b20e08c9fb53":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"2f786ce0-1ebe-44ac-9d8b-d9f5fb0f4797":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"9c0b2fa5-14ac-4d29-a347-276306239e50":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A58%3A06Z&ske=2025-02-25T04%3A58%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:37.8417837Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/b5b83892-9b08-4c77-87b7-a3060e6db0c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A58%3A06Z&ske=2025-02-25T04%3A58%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A37Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:58:37.8421092Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/8f0092d7-ae2f-414a-b2b2-8056db296f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A58%3A06Z&ske=2025-02-25T04%3A58%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:58:37.8421981Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:57:53.884Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:37.322Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"eae68ba3-fad8-48d7-a19c-ddc8ac5b59ab":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"048663b4-1ff2-4eda-ac52-bdbfc4a71f8d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e125b1c0-0491-4430-9f09-0f8c4ecf96ee":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f88a4e06-0611-41ca-8ef0-2529ab8d72a6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"98609ab2-03db-476b-8e79-1fe78bc9acf6":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d81f8c06-362a-448b-92ce-d0e7bd77f64d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A23Z&ske=2025-02-27T06%3A09%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:09.2232253Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/ffe486f4-a899-4ef6-ba4e-919c464a57f0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A23Z&ske=2025-02-27T06%3A09%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A09Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:09.2240938Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/02c35f06-23c8-4d30-9278-529132d73e2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A23Z&ske=2025-02-27T06%3A09%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:09.2243799Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:22.788Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:08.644Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1220,13 +1221,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:38 GMT + - Wed, 26 Feb 2025 23:10:09 GMT mise-correlation-id: - - 0ccd4f11-0f05-4334-9033-d873e684d82b + - 0b2f4ee8-f268-4628-8cc9-ce7732872211 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215837Z-r17775d4f98ccgs6hC1SG1tvpn00000008ng000000002ywt + - 20250226T231009Z-167c755789dx4ktjhC1SG17mp000000000rg000000007dz2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1249,7 +1250,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:57:19.3606403Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:57:19.3606403Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:08:47.5976146Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:08:47.5976146Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1258,9 +1259,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:38 GMT + - Wed, 26 Feb 2025 23:10:09 GMT etag: - - '"4f01c1ca-0000-0200-0000-67bceb560000"' + - '"8f018f65-0000-0200-0000-67bf9f180000"' expires: - '-1' pragma: @@ -1276,7 +1277,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0FCFC27DE358481AAD5DF6312F473D0B Ref B: MAA201060515037 Ref C: 2025-02-24T21:58:38Z' + - 'Ref A: A79406F560F6456AA1167C7B945E361C Ref B: MAA201060515037 Ref C: 2025-02-26T23:10:09Z' status: code: 200 message: OK @@ -1290,13 +1291,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"9b07a05a-b7d6-483c-a8c7-d708d18dc037":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b82edbea-20dd-4d7e-bdf2-e42e337020aa":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"71394a02-7670-4757-b5d4-533c29f8e3e8":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"04c99834-d4e9-4003-8a2a-b20e08c9fb53":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"2f786ce0-1ebe-44ac-9d8b-d9f5fb0f4797":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"9c0b2fa5-14ac-4d29-a347-276306239e50":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/268dc4bf-2e25-4643-a494-74396b00c985?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A54Z&ske=2025-02-25T04%3A57%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:39.3688287Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/b5b83892-9b08-4c77-87b7-a3060e6db0c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A54Z&ske=2025-02-25T04%3A57%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A39Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:58:39.3692222Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wq34d174ks52ioyhmw8vowk3.z28.blob.storage.azure.net/93ba3e7a-c7ea-4fce-99a6-8bde7194390c/8f0092d7-ae2f-414a-b2b2-8056db296f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A54Z&ske=2025-02-25T04%3A57%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A39Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:58:39.3693752Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:57:53.884Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:37.322Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"eae68ba3-fad8-48d7-a19c-ddc8ac5b59ab":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"048663b4-1ff2-4eda-ac52-bdbfc4a71f8d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e125b1c0-0491-4430-9f09-0f8c4ecf96ee":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"f88a4e06-0611-41ca-8ef0-2529ab8d72a6":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"98609ab2-03db-476b-8e79-1fe78bc9acf6":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"d81f8c06-362a-448b-92ce-d0e7bd77f64d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/20f0ecd3-d1e3-4663-a67b-e0fa66a28c9f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A23Z&ske=2025-02-27T06%3A09%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:10.9430889Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/ffe486f4-a899-4ef6-ba4e-919c464a57f0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A23Z&ske=2025-02-27T06%3A09%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A10Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:10.9433558Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://bxt9f81r8tvqymfdvuixvnzt.z20.blob.storage.azure.net/a4cda887-2f6b-41d9-a859-0efa077162ee/02c35f06-23c8-4d30-9278-529132d73e2a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A23Z&ske=2025-02-27T06%3A09%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A10Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:10.9434347Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:22.788Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:08.644Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1306,17 +1307,17 @@ interactions: connection: - keep-alive content-length: - - '3376' + - '3372' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:39 GMT + - Wed, 26 Feb 2025 23:10:11 GMT mise-correlation-id: - - bda0c2ba-e7ed-4965-b0b4-804f124df361 + - 7c16f5c2-40d2-4a8d-af14-b72761070519 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215839Z-r17775d4f98mc5fbhC1SG1vp2s00000013wg000000008y0q + - 20250226T231010Z-167c755789djhmzhhC1SG1xd2g0000000210000000001hks x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1339,7 +1340,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:57:19.3606403Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:57:19.3606403Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:08:47.5976146Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:08:47.5976146Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1348,9 +1349,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:40 GMT + - Wed, 26 Feb 2025 23:10:11 GMT etag: - - '"4f01c1ca-0000-0200-0000-67bceb560000"' + - '"8f018f65-0000-0200-0000-67bf9f180000"' expires: - '-1' pragma: @@ -1366,7 +1367,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AE0033F49FE544918F1A552092BBD622 Ref B: MAA201060516019 Ref C: 2025-02-24T21:58:39Z' + - 'Ref A: 010E6F524D134EAB98B438BB4FF488E0 Ref B: MAA201060514037 Ref C: 2025-02-26T23:10:11Z' status: code: 200 message: OK @@ -1380,9 +1381,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://d4c07b4e-dd57-4927-8b12-50d666d1f64b.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-update-test-case?api-version=2024-12-01-preview + uri: https://d06ffd0c-5884-4c48-a11a-d1b0b9829137.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-update-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -1396,15 +1397,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:58:41 GMT + - Wed, 26 Feb 2025 23:10:12 GMT mise-correlation-id: - - a759f486-d8cd-4ac7-8bec-9bcb247f6ae2 + - d801e063-3e14-4be8-9c4c-f045edbfff68 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215840Z-r17775d4f98k7mk2hC1SG1n7700000000rtg000000004k07 + - 20250226T231011Z-167c755789dh5d2xhC1SG1c6dc00000001900000000083du x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/recordings/test_load_test_update_with_config.yaml b/src/load/azext_load/tests/latest/recordings/test_load_test_update_with_config.yaml index abbbd4f5db3..263ca6db381 100644 --- a/src/load/azext_load/tests/latest/recordings/test_load_test_update_with_config.yaml +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_update_with_config.yaml @@ -14,7 +14,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:56:25.3979746Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:56:25.3979746Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:08:54.1612769Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:08:54.1612769Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -23,9 +23,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:58 GMT + - Wed, 26 Feb 2025 23:09:29 GMT etag: - - '"4f011cc6-0000-0200-0000-67bceb200000"' + - '"8f01f265-0000-0200-0000-67bf9f1c0000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DC2FE9C941CE466BA6F6495511EB8FC4 Ref B: MAA201060513027 Ref C: 2025-02-24T21:56:57Z' + - 'Ref A: 0DF7E35E0CCF4A8FB7E1E3DC8570F8FB Ref B: MAA201060516009 Ref C: 2025-02-26T23:09:28Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -71,15 +71,15 @@ interactions: content-type: - application/json date: - - Mon, 24 Feb 2025 21:56:59 GMT + - Wed, 26 Feb 2025 23:09:30 GMT mise-correlation-id: - - 93b3a9e8-5c4c-4eae-add8-3eb445bb685f + - bb5c870b-ebf9-4c2f-89fa-4f8b4a84079e strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20250224T215658Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000002w0w + - 20250226T230930Z-167c755789dw9d62hC1SG1x2v800000001ng00000000bxzm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -94,7 +94,8 @@ interactions: is a load test created with arguments", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": {"a": "2", "b": "3"}, "secrets": {}, "loadTestConfiguration": {"engineInstances": 5, "regionalLoadTestConfig": null, "quickStartTest": false}, - "autoStopCriteria": {}, "baselineTestRunId": null}' + "autoStopCriteria": {}, "baselineTestRunId": null, "engineBuiltinIdentityType": + null, "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -103,17 +104,17 @@ interactions: Connection: - keep-alive Content-Length: - - '384' + - '453' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview response: body: string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-with-config-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:59.579Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:56:59.579Z","lastModifiedBy":"hbisht@microsoft.com"}' + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:31.218Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:09:31.218Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -125,15 +126,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:59 GMT + - Wed, 26 Feb 2025 23:09:31 GMT location: - - https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview + - https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview mise-correlation-id: - - 957f5d06-8d81-4a59-b7e3-360cf6f9a447 + - 2d03b328-df02-4996-9000-3f054e10bfdc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215659Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000002w22 + - 20250226T230930Z-167c755789dw9d62hC1SG1x2v800000001ng00000000by13 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -151,9 +152,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files?api-version=2024-12-01-preview response: body: string: '{"value":[]}' @@ -170,13 +171,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:56:59 GMT + - Wed, 26 Feb 2025 23:09:31 GMT mise-correlation-id: - - 8dca0379-95cc-41fc-b6dd-0e5db183a2b6 + - 14fcb89f-a71e-4ba2-90d2-84ba4c24ccda strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215659Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000002w2q + - 20250226T230931Z-167c755789dw9d62hC1SG1x2v800000001ng00000000by1z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -285,14 +286,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=JMX_FILE + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/5170f410-c5b8-4006-acc5-b2ecc9e57dd3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A00Z&ske=2025-02-25T04%3A57%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:00.4019844Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/4e61489f-e660-43ae-b6bf-2928526e6582?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A31Z&ske=2025-02-27T06%3A09%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:19:32.0716005Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -304,15 +305,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:00 GMT + - Wed, 26 Feb 2025 23:09:32 GMT location: - - https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - f935f8c8-eb52-4617-b5c8-0d3baf59c8e8 + - 15fa138e-054f-4e1b-84a3-af4f35e0379c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215659Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000002w37 + - 20250226T230931Z-167c755789dw9d62hC1SG1x2v800000001ng00000000by2h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -330,12 +331,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/5170f410-c5b8-4006-acc5-b2ecc9e57dd3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A00Z&ske=2025-02-25T04%3A57%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A00Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:00.6931227Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/4e61489f-e660-43ae-b6bf-2928526e6582?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A32Z&ske=2025-02-27T06%3A09%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:19:32.3584194Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -345,17 +346,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:00 GMT + - Wed, 26 Feb 2025 23:09:32 GMT mise-correlation-id: - - 8d595fca-0a38-448a-ae9b-5e5156ff2027 + - b026823a-3f59-42ed-a084-148ca4e43f5b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215700Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000002w40 + - 20250226T230932Z-167c755789dw9d62hC1SG1x2v800000001ng00000000by3p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -373,12 +374,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/5170f410-c5b8-4006-acc5-b2ecc9e57dd3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A05Z&ske=2025-02-25T04%3A57%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A05Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:05.9744576Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/4e61489f-e660-43ae-b6bf-2928526e6582?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:19:37.6355328Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -388,17 +389,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:06 GMT + - Wed, 26 Feb 2025 23:09:37 GMT mise-correlation-id: - - 57232e52-d274-4a07-a13a-628e317d5907 + - 74b2a23a-3de9-4f72-9b3a-c573290d7379 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215705Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000002wba + - 20250226T230937Z-167c755789dw9d62hC1SG1x2v800000001ng00000000byg0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -416,12 +417,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/5170f410-c5b8-4006-acc5-b2ecc9e57dd3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A00Z&ske=2025-02-25T04%3A57%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:11.2537448Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/4e61489f-e660-43ae-b6bf-2928526e6582?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A42Z&ske=2025-02-27T06%3A09%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A42Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:19:42.9341173Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -431,17 +432,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:11 GMT + - Wed, 26 Feb 2025 23:09:43 GMT mise-correlation-id: - - 36e35680-7790-4e58-825b-8b0b01927e9d + - 1f67b699-edf3-4f74-bc68-50c32c802a92 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215711Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000002wmk + - 20250226T230942Z-167c755789dw9d62hC1SG1x2v800000001ng00000000byyc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -459,12 +460,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/5170f410-c5b8-4006-acc5-b2ecc9e57dd3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A16Z&ske=2025-02-25T04%3A57%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:17.2271514Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/4e61489f-e660-43ae-b6bf-2928526e6582?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A48Z&ske=2025-02-27T06%3A09%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:19:48.2031278Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -478,13 +479,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:17 GMT + - Wed, 26 Feb 2025 23:09:48 GMT mise-correlation-id: - - ddffedcc-5957-47db-8565-f111220cadb6 + - 6802dc52-9b61-448b-88ae-86f6b810eb21 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215716Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000002wvq + - 20250226T230948Z-167c755789dw9d62hC1SG1x2v800000001ng00000000bzbx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -502,12 +503,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/5170f410-c5b8-4006-acc5-b2ecc9e57dd3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A22Z&ske=2025-02-25T04%3A57%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:22.5163986Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/4e61489f-e660-43ae-b6bf-2928526e6582?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A53Z&ske=2025-02-27T06%3A09%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:19:53.4842114Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -517,17 +518,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:22 GMT + - Wed, 26 Feb 2025 23:09:53 GMT mise-correlation-id: - - 46e14f96-fbe1-4436-bd78-1eb063ba3045 + - 9b503b37-9a1a-47d9-aa0e-58b7db396dd2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215722Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000002x67 + - 20250226T230953Z-167c755789dw9d62hC1SG1x2v800000001ng00000000bzwv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -545,12 +546,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/5170f410-c5b8-4006-acc5-b2ecc9e57dd3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A00Z&ske=2025-02-25T04%3A57%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:27.7661719Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/4e61489f-e660-43ae-b6bf-2928526e6582?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A19%3A58Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:19:58.738319Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -560,17 +561,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:27 GMT + - Wed, 26 Feb 2025 23:09:58 GMT mise-correlation-id: - - face53b2-d086-4068-b111-a7c1667b1bd0 + - 0961e1c4-44ac-41ea-a154-3aeeafcc797c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215727Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000002xe7 + - 20250226T230958Z-167c755789dw9d62hC1SG1x2v800000001ng00000000c0cb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -588,12 +589,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/5170f410-c5b8-4006-acc5-b2ecc9e57dd3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A00Z&ske=2025-02-25T04%3A57%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:33.0346672Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/4e61489f-e660-43ae-b6bf-2928526e6582?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A42Z&ske=2025-02-27T06%3A09%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A03Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:20:03.9872909Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -603,17 +604,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '554' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:33 GMT + - Wed, 26 Feb 2025 23:10:04 GMT mise-correlation-id: - - ffba4668-8e16-4ef2-a7de-894cf0f54050 + - aaf08eba-a93f-460a-9770-61b290e4c175 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215732Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000002xnd + - 20250226T231003Z-167c755789dw9d62hC1SG1x2v800000001ng00000000c0xf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -631,13 +632,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview response: body: - string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/5170f410-c5b8-4006-acc5-b2ecc9e57dd3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A00Z&ske=2025-02-25T04%3A57%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A33Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:57:33.2882655Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-with-config-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:59.579Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:31.926Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/4e61489f-e660-43ae-b6bf-2928526e6582?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:10:04.2636472Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-with-config-test-case","description":"This + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:31.218Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:03.398Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -647,17 +648,17 @@ interactions: connection: - keep-alive content-length: - - '1294' + - '1290' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:33 GMT + - Wed, 26 Feb 2025 23:10:04 GMT mise-correlation-id: - - 585eff9d-17e5-4609-b1aa-b265df042cfc + - 10646891-a277-481c-b1c8-dc1b9f2b7b87 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215733Z-r17775d4f98nkpf8hC1SG11nqg0000001420000000002xns + - 20250226T231004Z-167c755789dw9d62hC1SG1x2v800000001ng00000000c0yb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -680,7 +681,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:56:25.3979746Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:56:25.3979746Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:08:54.1612769Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:08:54.1612769Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -689,9 +690,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:33 GMT + - Wed, 26 Feb 2025 23:10:04 GMT etag: - - '"4f011cc6-0000-0200-0000-67bceb200000"' + - '"8f01f265-0000-0200-0000-67bf9f1c0000"' expires: - '-1' pragma: @@ -707,7 +708,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 35F67AD48C4F4A7387BC7B72B2590299 Ref B: MAA201060516019 Ref C: 2025-02-24T21:57:33Z' + - 'Ref A: DD4B98FE6B924BC4B7EDA877DCFD3AB2 Ref B: MAA201060513035 Ref C: 2025-02-26T23:10:04Z' status: code: 200 message: OK @@ -721,13 +722,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview response: body: - string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/5170f410-c5b8-4006-acc5-b2ecc9e57dd3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A16Z&ske=2025-02-25T04%3A57%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:57:34.3109029Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-with-config-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:59.579Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:31.926Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"autoStopCriteria":{"autoStopDisabled":false,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/4e61489f-e660-43ae-b6bf-2928526e6582?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A48Z&ske=2025-02-27T06%3A09%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:10:06.2291615Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-with-config-test-case","description":"This + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:31.218Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:03.398Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -741,13 +742,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:34 GMT + - Wed, 26 Feb 2025 23:10:06 GMT mise-correlation-id: - - 4619f7d5-5b51-4d81-a20b-3b01e0c0abe9 + - 4edd1716-eae9-4fb3-9098-878a67553268 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215734Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006a8q + - 20250226T231005Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cnvy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -761,18 +762,19 @@ interactions: "publicIPDisabled": false, "environmentVariables": {"a": null, "b": null, "rps": 1, "c": "5"}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "regionalLoadTestConfig": null, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"0454e3f8-e758-45da-856d-2f21cc47b5a4": + true}, "passFailCriteria": {"passFailMetrics": {"e677503f-55a5-43cf-98d9-8c602aa7b1bd": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "53567735-0b52-4d19-a604-8609594f85d3": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "c5b85376-17c0-4ff6-b18b-e1c2ea52fca1": + "78"}, "f2ddf9e2-9f90-4488-80ae-6fd11fa611de": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "fe1c88f3-45b4-4cb1-95ad-87a4aa34e607": {"aggregate": "p75", "clientMetric": "response_time_ms", "condition": ">", "value": - "380"}, "64fb3d1a-4018-42a6-a5e5-f199ad9bb13e": {"aggregate": "p99", "clientMetric": - "response_time_ms", "condition": ">", "value": "520"}, "03f99733-1bb8-4818-9d3c-819590b34456": + "380"}, "4ef8dca8-5cac-43c8-ae48-057ce82a8066": {"aggregate": "p99", "clientMetric": + "response_time_ms", "condition": ">", "value": "520"}, "61581085-9674-4b44-a985-14fc4e539e07": {"aggregate": "p99.9", "clientMetric": "response_time_ms", "condition": ">", - "value": "540"}, "90e932c3-917d-4361-97c1-de0311558b05": {"aggregate": "avg", + "value": "540"}, "f913d39b-a6bc-44d1-a117-2d0d817466d1": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}, "autoStopCriteria": {"autoStopDisabled": true, "errorRate": - 90.0, "errorRateTimeWindowInSeconds": 60}}' + 90.0, "errorRateTimeWindowInSeconds": 60}, "engineBuiltinIdentityType": null, + "engineBuiltinIdentityIds": null}' headers: Accept: - application/json @@ -781,17 +783,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1371' + - '1440' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: PATCH - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0454e3f8-e758-45da-856d-2f21cc47b5a4":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"53567735-0b52-4d19-a604-8609594f85d3":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5b85376-17c0-4ff6-b18b-e1c2ea52fca1":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"64fb3d1a-4018-42a6-a5e5-f199ad9bb13e":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"03f99733-1bb8-4818-9d3c-819590b34456":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"90e932c3-917d-4361-97c1-de0311558b05":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"c":"5","rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/5170f410-c5b8-4006-acc5-b2ecc9e57dd3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A22Z&ske=2025-02-25T04%3A57%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A57%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:57:34.6613697Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-with-config-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:59.579Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:57:34.652Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"e677503f-55a5-43cf-98d9-8c602aa7b1bd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f2ddf9e2-9f90-4488-80ae-6fd11fa611de":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"fe1c88f3-45b4-4cb1-95ad-87a4aa34e607":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"4ef8dca8-5cac-43c8-ae48-057ce82a8066":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"61581085-9674-4b44-a985-14fc4e539e07":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"f913d39b-a6bc-44d1-a117-2d0d817466d1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"c":"5","rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/4e61489f-e660-43ae-b6bf-2928526e6582?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A42Z&ske=2025-02-27T06%3A09%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-27T00:10:06.6133734Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-with-config-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:31.218Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:06.604Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -801,17 +803,17 @@ interactions: connection: - keep-alive content-length: - - '2227' + - '2231' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:34 GMT + - Wed, 26 Feb 2025 23:10:06 GMT mise-correlation-id: - - 570b73df-7b60-4110-9bf7-442492df3588 + - c6c4aedf-b242-4594-8c94-e8afad860d0f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215734Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006a96 + - 20250226T231006Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cnyn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -829,12 +831,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files?api-version=2024-12-01-preview response: body: - string: '{"value":[{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/5170f410-c5b8-4006-acc5-b2ecc9e57dd3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A00Z&ske=2025-02-25T04%3A57%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A34Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-24T22:07:34.9243844Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/4e61489f-e660-43ae-b6bf-2928526e6582?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A53Z&ske=2025-02-27T06%3A09%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A06Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2025-02-26T23:20:06.8689276Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -844,17 +846,17 @@ interactions: connection: - keep-alive content-length: - - '566' + - '568' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:35 GMT + - Wed, 26 Feb 2025 23:10:06 GMT mise-correlation-id: - - a734ab9c-ef96-448a-95a2-aaf4a780a929 + - c194a9c4-27aa-4968-ac2b-5a937bdd61e6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215734Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006a9q + - 20250226T231006Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cnzp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -879,14 +881,14 @@ interactions: Content-Length: - '16' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-12-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/1eb81e89-1af5-40f8-bee2-a2450f6339f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A16Z&ske=2025-02-25T04%3A57%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A35Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:07:35.3126406Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/5896724c-2cb9-44f9-92ce-0483af3431af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A32Z&ske=2025-02-27T06%3A09%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A09Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:09.0365527Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -898,15 +900,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:35 GMT + - Wed, 26 Feb 2025 23:10:09 GMT location: - - https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-12-01-preview + - https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-12-01-preview mise-correlation-id: - - 5c030077-9081-4065-b586-0413bb65fa89 + - 58142c88-bfa1-47ce-9a54-6b4e4bcb1a17 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215735Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006aa4 + - 20250226T231006Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cp0d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -924,12 +926,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/1eb81e89-1af5-40f8-bee2-a2450f6339f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A22Z&ske=2025-02-25T04%3A57%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A35Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:07:35.5711457Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/5896724c-2cb9-44f9-92ce-0483af3431af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A32Z&ske=2025-02-27T06%3A09%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A09Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-26T23:20:09.2853582Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -943,13 +945,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:35 GMT + - Wed, 26 Feb 2025 23:10:09 GMT mise-correlation-id: - - d1aa2aef-ae36-437c-9e19-7323e3dc0195 + - d905cb00-cf93-4213-aa81-ea348f2c26e8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215735Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006aap + - 20250226T231009Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cp7x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -978,14 +980,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/fda55dc8-f4c8-44b4-80e8-06e47ce38595?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A05Z&ske=2025-02-25T04%3A57%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A35Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:07:35.9878933Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/de294ae5-f000-486d-aa2a-4b4736ea9418?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:09.669995Z","validationStatus":"NOT_VALIDATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -993,19 +995,19 @@ interactions: connection: - keep-alive content-length: - - '561' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:36 GMT + - Wed, 26 Feb 2025 23:10:09 GMT location: - - https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + - https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview mise-correlation-id: - - bad589c9-443e-4638-a246-74e37a29f45e + - 80a03398-0cf8-4e68-a59a-d02f2d71cb48 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215735Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006aaw + - 20250226T231009Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cp8e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1023,12 +1025,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/fda55dc8-f4c8-44b4-80e8-06e47ce38595?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A36Z&ske=2025-02-25T04%3A57%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A36Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:07:36.9758229Z","validationStatus":"NOT_VALIDATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/de294ae5-f000-486d-aa2a-4b4736ea9418?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A48Z&ske=2025-02-27T06%3A09%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-26T23:20:09.9286345Z","validationStatus":"NOT_VALIDATED"}' headers: accept-ranges: - bytes @@ -1038,17 +1040,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '565' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:37 GMT + - Wed, 26 Feb 2025 23:10:10 GMT mise-correlation-id: - - cc172e56-42e6-471c-b396-7ca10aab3948 + - b058b25d-cee2-4dd8-8f41-b82a7aef0496 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215736Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006ab9 + - 20250226T231009Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cp9f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1068,9 +1070,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: string: '' @@ -1081,13 +1083,13 @@ interactions: connection: - keep-alive date: - - Mon, 24 Feb 2025 21:57:37 GMT + - Wed, 26 Feb 2025 23:10:10 GMT mise-correlation-id: - - c041bf91-e835-449f-96d5-a1c5fa1fa600 + - a17c6292-b9e0-4138-b5b8-3752daf814cd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215737Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006acf + - 20250226T231010Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cpab x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1196,14 +1198,14 @@ interactions: Content-Length: - '4796' User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) content-type: - application/octet-stream method: PUT - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview&fileType=TEST_SCRIPT response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/454d0f48-c43d-4a46-844b-14af179a4df3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A00Z&ske=2025-02-25T04%3A57%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A37Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:37.7804851Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/5e728fc9-fcfd-4388-aa56-890690947451?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A32Z&ske=2025-02-27T06%3A09%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:11.6298438Z","validationStatus":"VALIDATION_INITIATED"}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, @@ -1215,15 +1217,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:37 GMT + - Wed, 26 Feb 2025 23:10:11 GMT location: - - https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + - https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview mise-correlation-id: - - 060715fa-9d5b-49c7-b6b7-eb6eccd76c9a + - aee48dcd-964e-452a-bb69-cef68d687533 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215737Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006acy + - 20250226T231010Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cpb9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1241,12 +1243,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/454d0f48-c43d-4a46-844b-14af179a4df3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A05Z&ske=2025-02-25T04%3A57%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:38.0331184Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/5e728fc9-fcfd-4388-aa56-890690947451?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A42Z&ske=2025-02-27T06%3A09%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A11Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:11.88444Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1256,17 +1258,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:38 GMT + - Wed, 26 Feb 2025 23:10:11 GMT mise-correlation-id: - - 166c1305-fa92-4f64-9732-12478f7aaa57 + - 746f4bb3-74ac-4ca8-83c2-c64ca7917be9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215737Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006adn + - 20250226T231011Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cpfs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1284,12 +1286,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/454d0f48-c43d-4a46-844b-14af179a4df3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A00Z&ske=2025-02-25T04%3A57%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:43.2829999Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/5e728fc9-fcfd-4388-aa56-890690947451?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A53Z&ske=2025-02-27T06%3A09%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A17Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:17.1391421Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1303,13 +1305,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:43 GMT + - Wed, 26 Feb 2025 23:10:17 GMT mise-correlation-id: - - 8e044cb5-1bf3-4a1f-b781-d9891fc1d8a1 + - 8e870881-67e3-46c6-afe9-b847ab47c637 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215743Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006arf + - 20250226T231017Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cpyq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1327,12 +1329,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/454d0f48-c43d-4a46-844b-14af179a4df3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A16Z&ske=2025-02-25T04%3A57%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A48Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:48.5394964Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/5e728fc9-fcfd-4388-aa56-890690947451?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A42Z&ske=2025-02-27T06%3A09%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A22Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:22.3967077Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1346,13 +1348,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:48 GMT + - Wed, 26 Feb 2025 23:10:22 GMT mise-correlation-id: - - 6b4b221c-18f2-4460-a5a4-5eb4ead68141 + - e42e7e63-2e58-4e3c-94bc-87951612865d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215748Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006b13 + - 20250226T231022Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cqe2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1370,12 +1372,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/454d0f48-c43d-4a46-844b-14af179a4df3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A05Z&ske=2025-02-25T04%3A57%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A53Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:53.7958433Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/5e728fc9-fcfd-4388-aa56-890690947451?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A53Z&ske=2025-02-27T06%3A09%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A27Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:27.650981Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1385,60 +1387,17 @@ interactions: connection: - keep-alive content-length: - - '563' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 21:57:53 GMT - mise-correlation-id: - - 8cf72005-35c4-4f5a-98f2-b19185117afc - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T215753Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006bac - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview - response: - body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/454d0f48-c43d-4a46-844b-14af179a4df3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A00Z&ske=2025-02-25T04%3A57%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A07%3A59Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:07:59.0459923Z","validationStatus":"VALIDATION_INITIATED"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '561' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:57:59 GMT + - Wed, 26 Feb 2025 23:10:27 GMT mise-correlation-id: - - 57f0fae8-4a9b-4355-b4ef-13a3daacecc8 + - 234ef4c3-917b-4cb7-bce9-20f5c79436f2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215758Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006bke + - 20250226T231027Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cqy9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1456,12 +1415,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/454d0f48-c43d-4a46-844b-14af179a4df3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A36Z&ske=2025-02-25T04%3A57%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A04Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:04.2979692Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/5e728fc9-fcfd-4388-aa56-890690947451?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A37Z&ske=2025-02-27T06%3A09%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A32Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:32.9083549Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1471,17 +1430,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:04 GMT + - Wed, 26 Feb 2025 23:10:33 GMT mise-correlation-id: - - 80a161fe-6252-45ae-8145-df97bfebbf2a + - eddc10a6-9dfd-42f3-a3d1-d9fab60b773b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215804Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006bvc + - 20250226T231032Z-167c755789dkxplchC1SG1rzhw00000001yg00000000crf4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1499,12 +1458,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/454d0f48-c43d-4a46-844b-14af179a4df3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A22Z&ske=2025-02-25T04%3A57%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A09Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:09.5481227Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/5e728fc9-fcfd-4388-aa56-890690947451?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A48Z&ske=2025-02-27T06%3A09%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A38Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:38.1583279Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1518,13 +1477,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:09 GMT + - Wed, 26 Feb 2025 23:10:38 GMT mise-correlation-id: - - f7f04404-106d-4253-bbf3-cbc23ba49260 + - 002a1072-7690-4b3b-abc0-2335456b4569 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215809Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006c67 + - 20250226T231038Z-167c755789dkxplchC1SG1rzhw00000001yg00000000crzx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1542,12 +1501,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/454d0f48-c43d-4a46-844b-14af179a4df3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A16Z&ske=2025-02-25T04%3A57%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A14Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:14.7981515Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/5e728fc9-fcfd-4388-aa56-890690947451?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A32Z&ske=2025-02-27T06%3A09%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-26T23%3A20%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-26T23:20:43.4070287Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1557,17 +1516,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:14 GMT + - Wed, 26 Feb 2025 23:10:43 GMT mise-correlation-id: - - 924a8c0a-ea60-468b-93cb-413ec29be0c8 + - df03b64e-067c-4126-aebd-1dba6c8faaa4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215814Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006cg9 + - 20250226T231043Z-167c755789dkxplchC1SG1rzhw00000001yg00000000csgt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1585,12 +1544,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview response: body: - string: '{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/454d0f48-c43d-4a46-844b-14af179a4df3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A22Z&ske=2025-02-25T04%3A57%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A08%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:08:20.0484732Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"passFailCriteria":{"passFailMetrics":{"e677503f-55a5-43cf-98d9-8c602aa7b1bd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f2ddf9e2-9f90-4488-80ae-6fd11fa611de":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"fe1c88f3-45b4-4cb1-95ad-87a4aa34e607":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"4ef8dca8-5cac-43c8-ae48-057ce82a8066":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"61581085-9674-4b44-a985-14fc4e539e07":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"f913d39b-a6bc-44d1-a117-2d0d817466d1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"c":"5","rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/5e728fc9-fcfd-4388-aa56-890690947451?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A31Z&ske=2025-02-27T06%3A09%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:43.9017042Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/5896724c-2cb9-44f9-92ce-0483af3431af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A31Z&ske=2025-02-27T06%3A09%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A43Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:43.9022636Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/de294ae5-f000-486d-aa2a-4b4736ea9418?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A31Z&ske=2025-02-27T06%3A09%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A43Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:43.9027012Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-with-config-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:31.218Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:41.614Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1600,61 +1560,17 @@ interactions: connection: - keep-alive content-length: - - '561' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 24 Feb 2025 21:58:20 GMT - mise-correlation-id: - - 4b7d11e8-9e8a-42f6-a1f3-58eb786b215b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20250224T215819Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006csw - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) - method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview - response: - body: - string: '{"passFailCriteria":{"passFailMetrics":{"0454e3f8-e758-45da-856d-2f21cc47b5a4":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"53567735-0b52-4d19-a604-8609594f85d3":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5b85376-17c0-4ff6-b18b-e1c2ea52fca1":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"64fb3d1a-4018-42a6-a5e5-f199ad9bb13e":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"03f99733-1bb8-4818-9d3c-819590b34456":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"90e932c3-917d-4361-97c1-de0311558b05":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"c":"5","rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/454d0f48-c43d-4a46-844b-14af179a4df3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A00Z&ske=2025-02-25T04%3A57%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:20.3010062Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/1eb81e89-1af5-40f8-bee2-a2450f6339f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A00Z&ske=2025-02-25T04%3A57%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A20Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:58:20.3014788Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/fda55dc8-f4c8-44b4-80e8-06e47ce38595?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A00Z&ske=2025-02-25T04%3A57%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A20Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:58:20.301675Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-with-config-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:59.579Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:16.526Z","lastModifiedBy":"hbisht@microsoft.com"}' - headers: - accept-ranges: - - bytes - api-supported-versions: - - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview, - 2024-12-01-preview - connection: - - keep-alive - content-length: - - '3367' + - '3366' content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:20 GMT + - Wed, 26 Feb 2025 23:10:44 GMT mise-correlation-id: - - 2a9e6f0f-aa0f-4d90-bbc5-1c80e74d4a17 + - c2cf70a3-1f35-4769-99b7-9c218079fcf6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215820Z-r17775d4f98ksdkhhC1SG17z7g00000014bg000000006ct7 + - 20250226T231043Z-167c755789dkxplchC1SG1rzhw00000001yg00000000cshq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1677,7 +1593,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002?api-version=2022-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-24T21:56:25.3979746Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-24T21:56:25.3979746Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.LoadTestService/loadTests/clitest-load-000002","name":"clitest-load-000002","type":"microsoft.loadtestservice/loadtests","location":"eastus","systemData":{"createdBy":"hbisht@microsoft.com","createdByType":"User","createdAt":"2025-02-26T23:08:54.1612769Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-26T23:08:54.1612769Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1686,9 +1602,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:20 GMT + - Wed, 26 Feb 2025 23:10:44 GMT etag: - - '"4f011cc6-0000-0200-0000-67bceb200000"' + - '"8f01f265-0000-0200-0000-67bf9f1c0000"' expires: - '-1' pragma: @@ -1704,7 +1620,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 762E3A9BB94F474B957A5E6CB830407D Ref B: MAA201060515037 Ref C: 2025-02-24T21:58:20Z' + - 'Ref A: 9CD3BF3EEBAF4207A3C1F61F5C645E68 Ref B: MAA201060515031 Ref C: 2025-02-26T23:10:44Z' status: code: 200 message: OK @@ -1718,13 +1634,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) + - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.8 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.36) method: GET - uri: https://7b8a0322-14b7-40aa-9fea-984e3e1c46cd.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview + uri: https://4769e8b3-ad06-4ec7-a0b1-a3a2ef31015b.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-12-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0454e3f8-e758-45da-856d-2f21cc47b5a4":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"53567735-0b52-4d19-a604-8609594f85d3":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"c5b85376-17c0-4ff6-b18b-e1c2ea52fca1":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"64fb3d1a-4018-42a6-a5e5-f199ad9bb13e":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"03f99733-1bb8-4818-9d3c-819590b34456":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"90e932c3-917d-4361-97c1-de0311558b05":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"c":"5","rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/454d0f48-c43d-4a46-844b-14af179a4df3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A36Z&ske=2025-02-25T04%3A57%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-24T22:58:21.8005244Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/1eb81e89-1af5-40f8-bee2-a2450f6339f2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A36Z&ske=2025-02-25T04%3A57%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A21Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-24T22:58:21.8009851Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://t08eb1bxst9c59z36p4bz6mo.z19.blob.storage.azure.net/9eacdf8c-c67d-47c9-b8b2-6b4b3b4d4c6b/fda55dc8-f4c8-44b4-80e8-06e47ce38595?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-24T21%3A57%3A36Z&ske=2025-02-25T04%3A57%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-24T22%3A58%3A21Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-24T22:58:21.8011214Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-with-config-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-24T21:56:59.579Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-24T21:58:16.526Z","lastModifiedBy":"hbisht@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"e677503f-55a5-43cf-98d9-8c602aa7b1bd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f2ddf9e2-9f90-4488-80ae-6fd11fa611de":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"fe1c88f3-45b4-4cb1-95ad-87a4aa34e607":{"clientMetric":"response_time_ms","aggregate":"p75","condition":">","value":380.0,"action":"continue"},"4ef8dca8-5cac-43c8-ae48-057ce82a8066":{"clientMetric":"response_time_ms","aggregate":"p99","condition":">","value":520.0,"action":"continue"},"61581085-9674-4b44-a985-14fc4e539e07":{"clientMetric":"response_time_ms","aggregate":"p99.9","condition":">","value":540.0,"action":"continue"},"f913d39b-a6bc-44d1-a117-2d0d817466d1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}},"passFailServerMetrics":{}},"autoStopCriteria":{"autoStopDisabled":true,"errorRate":90.0,"errorRateTimeWindowInSeconds":60},"environmentVariables":{"c":"5","rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/5e728fc9-fcfd-4388-aa56-890690947451?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A31Z&ske=2025-02-27T06%3A09%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-JMX-file.jmx","fileType":"TEST_SCRIPT","expireDateTime":"2025-02-27T00:10:45.5928544Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/5896724c-2cb9-44f9-92ce-0483af3431af?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A31Z&ske=2025-02-27T06%3A09%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A45Z&sr=b&sp=r&sig=***","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2025-02-27T00:10:45.5934756Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://bnluzzv0xgrq1cbojrjnup93.z26.blob.storage.azure.net/f417c794-afda-450f-8258-f9ab1c284374/de294ae5-f000-486d-aa2a-4b4736ea9418?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2025-02-26T23%3A09%3A31Z&ske=2025-02-27T06%3A09%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2025-02-27T00%3A10%3A45Z&sr=b&sp=r&sig=***","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2025-02-27T00:10:45.5936419Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"metricsReferenceIdentityType":"SystemAssigned","testId":"update-with-config-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2025-02-26T23:09:31.218Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2025-02-26T23:10:41.614Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1738,13 +1654,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 24 Feb 2025 21:58:21 GMT + - Wed, 26 Feb 2025 23:10:45 GMT mise-correlation-id: - - 7c2ad8aa-c4c1-49d3-b615-fa34d970a7c1 + - 2ec17ccc-c91a-4ec9-9a4d-692b29a3c603 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20250224T215821Z-r17775d4f98jjkc6hC1SG1dcu800000008m0000000003tv5 + - 20250226T231045Z-167c755789dkxplchC1SG1rzhw000000020000000000a5af x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/resources/config-engine-invalid-mi1.yaml b/src/load/azext_load/tests/latest/resources/config-engine-invalid-mi1.yaml new file mode 100644 index 00000000000..1551bf8e5c8 --- /dev/null +++ b/src/load/azext_load/tests/latest/resources/config-engine-invalid-mi1.yaml @@ -0,0 +1,8 @@ +description: 'CLI UT Load Test - Engine reference with User Assigned Managed Identity' +engineInstances: 4 +referenceIdentities: + - kind: "Engine" + type: "UserAssigned" + value: /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi + - kind: "Engine" + type: "SystemAssigned" \ No newline at end of file diff --git a/src/load/azext_load/tests/latest/resources/config-engine-invalid-mi2.yaml b/src/load/azext_load/tests/latest/resources/config-engine-invalid-mi2.yaml new file mode 100644 index 00000000000..11ff3305559 --- /dev/null +++ b/src/load/azext_load/tests/latest/resources/config-engine-invalid-mi2.yaml @@ -0,0 +1,6 @@ +description: 'CLI UT Load Test - Engine reference with User Assigned Managed Identity' +engineInstances: 4 +referenceIdentities: + - kind: "Engine" + type: "UserAssigned" + value: invalid-identity \ No newline at end of file diff --git a/src/load/azext_load/tests/latest/resources/config-engine-sami.yaml b/src/load/azext_load/tests/latest/resources/config-engine-sami.yaml new file mode 100644 index 00000000000..a662af3a0a2 --- /dev/null +++ b/src/load/azext_load/tests/latest/resources/config-engine-sami.yaml @@ -0,0 +1,5 @@ +description: 'CLI UT Load Test - Engine reference with System Assigned Managed Identity' +engineInstances: 4 +referenceIdentities: + - kind: "Engine" + type: "SystemAssigned" \ No newline at end of file diff --git a/src/load/azext_load/tests/latest/resources/config-engine-uami.yaml b/src/load/azext_load/tests/latest/resources/config-engine-uami.yaml new file mode 100644 index 00000000000..41c1fe4ede3 --- /dev/null +++ b/src/load/azext_load/tests/latest/resources/config-engine-uami.yaml @@ -0,0 +1,9 @@ +description: 'CLI UT Load Test - Engine reference with User Assigned Managed Identity' +engineInstances: 4 +referenceIdentities: + - kind: "Engine" + type: "UserAssigned" + value: /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi + - kind: "Engine" + type: "UserAssigned" + value: /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi-2 \ No newline at end of file diff --git a/src/load/azext_load/tests/latest/test_load_engine_mi.py b/src/load/azext_load/tests/latest/test_load_engine_mi.py new file mode 100644 index 00000000000..f183c3f63bb --- /dev/null +++ b/src/load/azext_load/tests/latest/test_load_engine_mi.py @@ -0,0 +1,219 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from azext_load.tests.latest.constants import LoadTestConstants +from azext_load.tests.latest.preparers import LoadTestResourcePreparer +from azure.cli.testsdk import ( + JMESPathCheck, + ResourceGroupPreparer, + ScenarioTest, +) +from knack.log import get_logger +import pytest + +logger = get_logger(__name__) + +rg_params = { + "name_prefix": "clitest-enginemi-", + "location": "eastus", + "key": "resource_group", + "parameter_name": "rg", + "random_name_length": 30, +} +load_params = { + "name_prefix": "clitest-enginemi-", + "location": "eastus", + "key": "load_test_resource", + "parameter_name": "load", + "resource_group_key": "resource_group", + "random_name_length": 30, +} + +class LoadTestScenarioEngineMI(ScenarioTest): + def __init__(self, *args, **kwargs): + super(LoadTestScenarioEngineMI, self).__init__(*args, **kwargs) + self.kwargs.update({"subscription_id": self.get_subscription_id()}) + + @ResourceGroupPreparer(**rg_params) + @LoadTestResourcePreparer(**load_params) + def test_load_test_engine_mi(self): + self.kwargs.update( + { + "test_id": LoadTestConstants.CREATE_TEST_ID, + "description": LoadTestConstants.DESCRIPTION, + "display_name": LoadTestConstants.DISPLAY_NAME, + "engine_instance": LoadTestConstants.ENGINE_INSTANCE, + "engine_ref_id_type": LoadTestConstants.ENGINE_REFERENCE_TYPE_SYSTEMASSIGNED + } + ) + checks = [ + JMESPathCheck("testId", self.kwargs["test_id"]), + JMESPathCheck( + "loadTestConfiguration.engineInstances", self.kwargs["engine_instance"] + ), + JMESPathCheck("description", self.kwargs["description"]), + JMESPathCheck("displayName", self.kwargs["display_name"]), + JMESPathCheck("engineBuiltinIdentityType", self.kwargs["engine_ref_id_type"]), + ] + + # Create load test with system assigned engine mi type + self.cmd( + "az load test create " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + "--resource-group {resource_group} " + "--description {description} " + "--display-name {display_name} " + "--engine-instance {engine_instance} " + "--engine-ref-id-type {engine_ref_id_type}", + checks=checks, + ) + + # Update load test with user assigned engine mi type using parameters + checks = [ + JMESPathCheck("testId", self.kwargs["test_id"]), + JMESPathCheck( + "loadTestConfiguration.engineInstances", self.kwargs["engine_instance"] + ), + JMESPathCheck("description", self.kwargs["description"]), + JMESPathCheck("displayName", self.kwargs["display_name"]), + JMESPathCheck("engineBuiltinIdentityType", LoadTestConstants.ENGINE_REFERENCE_TYPE_USERASSIGNED), + ] + response = _configure_command_jmes_checks( + self, + checks, + engine_ref_id_type=LoadTestConstants.ENGINE_REFERENCE_TYPE_USERASSIGNED, + engine_ref_ids=LoadTestConstants.ENGINE_REFERENCE_ID1 + ) + + assert response["engineBuiltinIdentityIds"] == [LoadTestConstants.ENGINE_REFERENCE_ID1] + + # Update engine reference identities + response = _configure_command_jmes_checks( + self, + checks, + engine_ref_id_type=LoadTestConstants.ENGINE_REFERENCE_TYPE_USERASSIGNED, + engine_ref_ids=LoadTestConstants.ENGINE_REFERENCE_ID1 + " " + LoadTestConstants.ENGINE_REFERENCE_ID2 + ) + + # respose will be a list of engine reference identities + assert response["engineBuiltinIdentityIds"] == [LoadTestConstants.ENGINE_REFERENCE_ID1, LoadTestConstants.ENGINE_REFERENCE_ID2] + + # Update engine reference identity type to None + checks = [ + JMESPathCheck("testId", self.kwargs["test_id"]), + JMESPathCheck("engineBuiltinIdentityType", LoadTestConstants.ENGINE_REFERENCE_TYPE_NONE), + ] + + response = _configure_command_jmes_checks( + self, + checks, + engine_ref_id_type=LoadTestConstants.ENGINE_REFERENCE_TYPE_NONE + ) + + # engineBuiltinIdentityIds should not be present in response + assert "engineBuiltinIdentityIds" not in response + + # Update engine reference identity type to SystemAssigned using config file + + checks = [ + JMESPathCheck("testId", self.kwargs["test_id"]), + JMESPathCheck("engineBuiltinIdentityType", LoadTestConstants.ENGINE_REFERENCE_TYPE_SYSTEMASSIGNED), + ] + + _configure_command_jmes_checks( + self, + checks, + load_test_config_file=LoadTestConstants.LOAD_TEST_CONFIG_FILE_WITH_SAMI_ENGINE + ) + + # Update engine reference identity type to UserAssigned using config file + checks = [ + JMESPathCheck("testId", self.kwargs["test_id"]), + JMESPathCheck("engineBuiltinIdentityType", LoadTestConstants.ENGINE_REFERENCE_TYPE_USERASSIGNED), + ] + + response = _configure_command_jmes_checks( + self, + checks, + load_test_config_file=LoadTestConstants.LOAD_TEST_CONFIG_FILE_WITH_UAMI_ENGINE + ) + + # respose will be a list of engine reference identities + assert response["engineBuiltinIdentityIds"] == [LoadTestConstants.ENGINE_REFERENCE_ID1, LoadTestConstants.ENGINE_REFERENCE_ID2] + + # Invalide engine reference identity type in command taken care due to ENUM input type + # Invalid engine reference identities + _configure_command_assert_exception( + self, + message="Invalid engine-ref-ids value:", + engine_ref_id_type=LoadTestConstants.ENGINE_REFERENCE_TYPE_USERASSIGNED, + engine_ref_ids="invalid" + ) + + # Invalid multiple engine reference identity type in config file + _configure_command_assert_exception( + self, + message="Engine identity type should be either None, SystemAssigned, or UserAssigned. A combination of identity types are not supported.", + load_test_config_file=LoadTestConstants.LOAD_TEST_CONFIG_FILE_WITH_INVALID_ENGINE_MI1 + ) + + # Invalid engine reference identities in config file + _configure_command_assert_exception( + self, + message="is not a valid resource id", + load_test_config_file=LoadTestConstants.LOAD_TEST_CONFIG_FILE_WITH_INVALID_ENGINE_MI2 + ) + +def _configure_command_jmes_checks(self, checks, engine_ref_id_type=None, engine_ref_ids=None, load_test_config_file=None): + command = "az load test update " \ + "--test-id {test_id} " \ + "--load-test-resource {load_test_resource} " \ + "--resource-group {resource_group} " + if engine_ref_ids is not None: + self.kwargs.update({ + "engine_ref_ids": engine_ref_ids, + }) + command += '--engine-ref-ids {engine_ref_ids} ' + if engine_ref_id_type is not None: + self.kwargs.update({ + "engine_ref_id_type": engine_ref_id_type, + }) + command += '--engine-ref-id-type {engine_ref_id_type} ' + if load_test_config_file is not None: + self.kwargs.update({ + "load_test_config_file": load_test_config_file, + }) + command += '--load-test-config-file "{load_test_config_file}" ' + response = self.cmd( + command, + checks=checks, + ).get_output_in_json() + return response + +def _configure_command_assert_exception(self, message, engine_ref_id_type=None, engine_ref_ids=None, load_test_config_file=None): + command = "az load test update " \ + "--test-id {test_id} " \ + "--load-test-resource {load_test_resource} " \ + "--resource-group {resource_group} " + if engine_ref_id_type is not None: + self.kwargs.update({ + "engine_ref_id_type": engine_ref_id_type, + }) + command += '--engine-ref-id-type {engine_ref_id_type} ' + if engine_ref_ids is not None: + self.kwargs.update({ + "engine_ref_ids": engine_ref_ids, + }) + command += '--engine-ref-ids {engine_ref_ids} ' + if load_test_config_file is not None: + self.kwargs.update({ + "load_test_config_file": load_test_config_file, + }) + command += '--load-test-config-file "{load_test_config_file}" ' + + with pytest.raises(Exception) as excinfo: + self.cmd(command) + assert message in str(excinfo.value), f"Expected message '{message}' not found in '{str(excinfo.value)}'" \ No newline at end of file diff --git a/src/load/setup.py b/src/load/setup.py index 9e9b932d8cb..2af62229917 100644 --- a/src/load/setup.py +++ b/src/load/setup.py @@ -10,7 +10,7 @@ # HISTORY.rst entry. -VERSION = '1.5.0' +VERSION = '1.6.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers